Avatar of tballah
tballah

asked on 

Using Perl regex to search the exact match phrase in a text file

I have a text-based log file and I want to look for a line containing something like this:
[2008-07-10 08:58:58]  MT current speed is 272 and it has reached the upper limit of license.

So what I tried to build my Perl-based regular expression is:

^\[2008.07.1[0-6]\s([01]?[0-9]|2[0-3]):[0-5][1-9]:[0-5][1-9]\]\s   //this is working but it will list all the lines containing
[2008-07-10 ... to [2008-07-16 ... and I want to limit the line containing, for example, MO current speed

My question is how and what sould I append the regex after ^\[2008.07.1[0-6]\s([01]?[0-9]|2[0-3]):[0-5][1-9]:[0-5][1-9]\]\s

What I expect from the working regex looks like below:

[2008-07-10 00:42:25]  MO current speed is 133 and it has reached the upper limit of license.
[2008-07-10 08:58:58]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-10 09:05:05]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-10 09:35:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 10:27:26]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 18:28:16]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 19:28:21]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 20:23:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 20:28:23]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-10 20:33:21]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 20:34:58]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 20:36:09]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 20:44:58]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 20:46:47]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 20:56:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 21:23:02]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 21:31:17]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 21:34:55]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 21:37:43]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 21:39:29]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 21:41:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 21:45:37]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 21:47:24]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 21:51:54]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 22:03:01]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 22:14:52]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 22:17:23]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-10 22:19:25]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-11 08:58:58]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-11 09:05:03]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-11 19:57:35]  MO current speed is 134 and it has reached the upper limit of license.
[2008-07-11 20:14:47]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-11 20:23:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-11 20:24:59]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-11 20:26:07]  MO current speed is 134 and it has reached the upper limit of license.
[2008-07-11 20:28:52]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 20:34:05]  MO current speed is 133 and it has reached the upper limit of license.
[2008-07-11 20:35:13]  MO current speed is 134 and it has reached the upper limit of license.
[2008-07-11 20:36:21]  MO current speed is 134 and it has reached the upper limit of license.
[2008-07-11 20:37:58]  MO current speed is 138 and it has reached the upper limit of license.
[2008-07-11 20:41:47]  MO current speed is 138 and it has reached the upper limit of license.
[2008-07-11 20:42:52]  MO current speed is 136 and it has reached the upper limit of license.
[2008-07-11 20:44:47]  MO current speed is 138 and it has reached the upper limit of license.
[2008-07-11 20:48:54]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 20:51:59]  MO current speed is 134 and it has reached the upper limit of license.
[2008-07-11 20:53:01]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 20:54:02]  MO current speed is 139 and it has reached the upper limit of license.
[2008-07-11 20:55:19]  MO current speed is 137 and it has reached the upper limit of license.
[2008-07-11 20:56:22]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 20:57:26]  MO current speed is 138 and it has reached the upper limit of license.
[2008-07-11 20:58:49]  MO current speed is 136 and it has reached the upper limit of license.
[2008-07-11 20:59:54]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-11 21:03:05]  MO current speed is 135 and it has reached the upper limit of license.
[2008-07-11 21:05:09]  MO current speed is 145 and it has reached the upper limit of license.
[2008-07-11 21:06:32]  MO current speed is 138 and it has reached the upper limit of license.
[2008-07-11 21:07:37]  MO current speed is 133 and it has reached the upper limit of license.
[2008-07-11 21:08:55]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 21:11:28]  MO current speed is 132 and it has reached the upper limit of license.
[2008-07-11 21:12:48]  MO current speed is 138 and it has reached the upper limit of license.
[2008-07-11 21:14:43]  MO current speed is 139 and it has reached the upper limit of license.
[2008-07-11 21:15:47]  MO current speed is 141 and it has reached the upper limit of license.
[2008-07-11 21:16:48]  MO current speed is 141 and it has reached the upper limit of license.
[2008-07-11 21:17:49]  MO current speed is 133 and it has reached the upper limit of license.
[2008-07-11 21:18:59]  MO current speed is 139 and it has reached the upper limit of license.
[2008-07-11 21:21:21]  MO current speed is 138 and it has reached the upper limit of license.
[2008-07-11 21:22:29]  MO current speed is 137 and it has reached the upper limit of license.
[2008-07-11 21:23:39]  MO current speed is 143 and it has reached the upper limit of license.
[2008-07-11 21:26:21]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 21:27:33]  MO current speed is 136 and it has reached the upper limit of license.
[2008-07-11 21:28:37]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 21:29:46]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 21:31:06]  MO current speed is 139 and it has reached the upper limit of license.
[2008-07-11 21:32:25]  MO current speed is 137 and it has reached the upper limit of license.
[2008-07-11 21:33:28]  MO current speed is 141 and it has reached the upper limit of license.
[2008-07-11 21:34:31]  MO current speed is 134 and it has reached the upper limit of license.
[2008-07-11 21:35:36]  MO current speed is 139 and it has reached the upper limit of license.
[2008-07-11 21:36:48]  MO current speed is 144 and it has reached the upper limit of license.
[2008-07-11 21:37:56]  MO current speed is 138 and it has reached the upper limit of license.
[2008-07-11 21:42:35]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 21:43:36]  MO current speed is 138 and it has reached the upper limit of license.
[2008-07-11 21:44:45]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 21:45:49]  MO current speed is 142 and it has reached the upper limit of license.
[2008-07-11 21:47:04]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 21:48:11]  MO current speed is 142 and it has reached the upper limit of license.
[2008-07-11 21:49:12]  MO current speed is 136 and it has reached the upper limit of license.
[2008-07-11 21:51:28]  MO current speed is 135 and it has reached the upper limit of license.
[2008-07-11 21:54:05]  MO current speed is 137 and it has reached the upper limit of license.
[2008-07-11 21:55:25]  MO current speed is 132 and it has reached the upper limit of license.
[2008-07-11 21:57:49]  MO current speed is 147 and it has reached the upper limit of license.
[2008-07-11 21:59:03]  MO current speed is 139 and it has reached the upper limit of license.
[2008-07-11 22:01:05]  MO current speed is 135 and it has reached the upper limit of license.
[2008-07-11 22:03:15]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 22:04:29]  MO current speed is 142 and it has reached the upper limit of license.
[2008-07-11 22:05:31]  MO current speed is 136 and it has reached the upper limit of license.
[2008-07-11 22:06:59]  MO current speed is 137 and it has reached the upper limit of license.
[2008-07-11 22:09:15]  MO current speed is 139 and it has reached the upper limit of license.
[2008-07-11 22:11:28]  MO current speed is 145 and it has reached the upper limit of license.
[2008-07-11 22:12:39]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-11 22:13:42]  MO current speed is 135 and it has reached the upper limit of license.
[2008-07-11 22:14:55]  MO current speed is 132 and it has reached the upper limit of license.
[2008-07-11 22:17:13]  MO current speed is 133 and it has reached the upper limit of license.
[2008-07-11 22:18:59]  MO current speed is 135 and it has reached the upper limit of license.
[2008-07-11 22:22:07]  MO current speed is 145 and it has reached the upper limit of license.
[2008-07-11 22:23:11]  MO current speed is 143 and it has reached the upper limit of license.
[2008-07-11 22:24:47]  MO current speed is 133 and it has reached the upper limit of license.
[2008-07-11 22:26:19]  MO current speed is 140 and it has reached the upper limit of license.
[2008-07-11 22:27:22]  MO current speed is 133 and it has reached the upper limit of license.
[2008-07-11 22:29:11]  MO current speed is 132 and it has reached the upper limit of license.
[2008-07-11 22:32:09]  MO current speed is 134 and it has reached the upper limit of license.
[2008-07-11 22:35:51]  MO current speed is 132 and it has reached the upper limit of license.
[2008-07-11 22:36:57]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-11 22:43:39]  MO current speed is 134 and it has reached the upper limit of license.
[2008-07-11 22:45:36]  MO current speed is 139 and it has reached the upper limit of license.
[2008-07-11 22:57:52]  MO current speed is 143 and it has reached the upper limit of license.
[2008-07-11 22:59:07]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-11 23:21:29]  MO current speed is 132 and it has reached the upper limit of license.
[2008-07-12 08:58:58]  MO current speed is 137 and it has reached the upper limit of license.
[2008-07-12 09:05:17]  MO current speed is 235 and it has reached the upper limit of license.
[2008-07-12 10:56:13]  MO current speed is 134 and it has reached the upper limit of license.
[2008-07-12 12:42:51]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 16:24:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 16:32:07]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 17:56:59]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 18:56:59]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 19:57:06]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 20:16:59]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 20:24:37]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 20:25:44]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 20:29:27]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 20:34:12]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 20:42:06]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 20:49:18]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 20:54:34]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 20:56:02]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 20:57:12]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 20:58:58]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 21:02:48]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:04:48]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 21:11:38]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:13:53]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:15:31]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:16:51]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 21:24:11]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:25:23]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:28:21]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:31:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:32:12]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:33:26]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:34:32]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:36:12]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:37:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:41:24]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 21:42:44]  MO current speed is 132 and it has reached the upper limit of license.
[2008-07-12 21:43:47]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:44:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:45:51]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:46:59]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:48:08]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:49:56]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:52:57]  MO current speed is 132 and it has reached the upper limit of license.
[2008-07-12 21:55:21]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 21:56:23]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 21:57:25]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 21:58:41]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-12 22:02:13]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 22:04:22]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 22:06:37]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 22:08:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 22:17:26]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 22:19:57]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 22:21:18]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 22:23:08]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 22:24:48]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-12 22:29:28]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 01:13:46]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 08:58:57]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 09:05:03]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 12:01:01]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 18:57:31]  MO current speed is 132 and it has reached the upper limit of license.
[2008-07-13 19:57:31]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:03:55]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:08:43]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:17:44]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:18:57]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:23:15]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:24:22]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:26:35]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:28:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:36:06]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:37:43]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:39:17]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:43:03]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:45:58]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:47:21]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:48:24]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:51:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:52:07]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:53:32]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:54:58]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 20:56:44]  MO current speed is 135 and it has reached the upper limit of license.
[2008-07-13 20:58:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:02:16]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:06:36]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:07:51]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:08:57]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:13:17]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:14:59]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:16:47]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:17:58]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:19:31]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:21:27]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:23:11]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:25:01]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:26:09]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-13 21:27:13]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:28:16]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:29:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:31:37]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-13 21:32:44]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:36:06]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:37:57]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:44:16]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-13 21:45:26]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:46:32]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:47:41]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:49:39]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:53:17]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:54:46]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:56:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 21:57:43]  MO current speed is 148 and it has reached the upper limit of license.
[2008-07-13 22:03:01]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 22:13:21]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 22:31:41]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-13 22:34:41]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 08:58:54]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-14 09:05:03]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 11:32:44]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 11:56:15]  MO current speed is 133 and it has reached the upper limit of license.
[2008-07-14 17:56:57]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 19:57:07]  MO current speed is 136 and it has reached the upper limit of license.
[2008-07-14 20:11:41]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 20:25:38]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 20:32:39]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 20:34:12]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-14 20:35:42]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 20:38:46]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 20:41:14]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 20:43:59]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 20:47:09]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 20:54:44]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 20:57:13]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:02:58]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:04:13]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:05:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:12:48]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:15:55]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:18:31]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:22:01]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:23:07]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:24:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:25:46]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:28:01]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:32:17]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:34:24]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:35:53]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:37:01]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:41:17]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:42:27]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:43:51]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-14 21:44:56]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-14 21:46:04]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:47:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:49:03]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:51:14]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:52:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:55:02]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:56:29]  MO current speed is 143 and it has reached the upper limit of license.
[2008-07-14 21:57:35]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 21:58:45]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:03:33]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:04:37]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:09:06]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:13:08]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:16:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:17:11]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:18:18]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:22:51]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:23:58]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:34:41]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:36:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-14 22:57:28]  MO current speed is 134 and it has reached the upper limit of license.
[2008-07-15 08:58:55]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-15 10:56:23]  MO current speed is 143 and it has reached the upper limit of license.
[2008-07-15 18:57:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 19:57:21]  MO current speed is 142 and it has reached the upper limit of license.
[2008-07-15 20:06:38]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:09:53]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:14:11]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:16:52]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:19:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:23:56]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:24:57]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:31:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:32:21]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:34:37]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:35:57]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:38:38]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:42:47]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:43:56]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:45:31]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:46:44]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:48:29]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:49:59]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:52:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:53:52]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-15 20:55:12]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 20:57:27]  MO current speed is 132 and it has reached the upper limit of license.
[2008-07-15 20:58:53]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:06:18]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:07:33]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:09:18]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:13:08]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:14:21]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-15 21:15:43]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:17:29]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:18:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:21:17]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:25:29]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:27:46]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:29:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:32:45]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:33:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:35:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:39:22]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:41:44]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:44:44]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:46:58]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:49:14]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:51:44]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:53:04]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:55:29]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:56:38]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 21:57:39]  MO current speed is 147 and it has reached the upper limit of license.
[2008-07-15 22:02:21]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 22:04:11]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 22:05:12]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 22:17:22]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-15 22:21:16]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 22:35:28]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 22:36:34]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-15 22:46:04]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 08:58:57]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 09:05:13]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 10:56:16]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 11:22:26]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 11:59:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 17:57:04]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 18:57:04]  MO current speed is 133 and it has reached the upper limit of license.
[2008-07-16 19:58:15]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:12:38]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:21:13]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:26:29]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:29:24]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:32:39]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:36:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:39:11]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:41:56]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:43:21]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:45:15]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:49:06]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:53:18]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:56:03]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 20:57:17]  MO current speed is 135 and it has reached the upper limit of license.
[2008-07-16 20:58:35]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:01:02]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:03:06]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:05:12]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:07:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:08:28]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:09:33]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:12:18]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:13:21]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-16 21:14:32]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:16:25]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:17:28]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:18:42]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:19:59]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:22:17]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:24:02]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:25:57]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:27:06]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:28:12]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-16 21:29:18]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:31:54]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:33:49]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:35:21]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-16 21:36:53]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:37:59]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:39:01]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:42:15]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:43:32]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:45:59]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:47:14]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:48:19]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:49:43]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:52:56]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:54:51]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 21:57:23]  MO current speed is 147 and it has reached the upper limit of license.
[2008-07-16 22:02:05]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 22:03:11]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-16 22:04:43]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 22:07:28]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 22:17:01]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 22:18:43]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 22:21:29]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 22:36:27]  MO current speed is 130 and it has reached the upper limit of license.
[2008-07-16 22:39:33]  MO current speed is 130 and it has reached the upper limit of license.


[2008-07-10 08:58:22]  RejectMO start, MO speed has reached the upper limit of license.
[2008-07-10 08:58:22]  RejectMO end.
[2008-07-10 08:58:28]  System started in Protect mode.
[2008-07-10 08:58:29]  Protect mode ended.
[2008-07-10 08:58:37]  MO speed comes back in license range, current MO speed =59.
[2008-07-10 08:58:58]  MO current speed is 131 and it has reached the upper limit of license.
[2008-07-10 08:58:58]  MT current speed is 272 and it has reached the upper limit of license.
[2008-07-10 08:59:33]  RejectMO start, MO speed has reached the upper limit of license.
[2008-07-10 08:59:33]  RejectMO end.

Open in new window

smcapp.log.zip
Regular ExpressionsPerl

Avatar of undefined
Last Comment
ozo

8/22/2022 - Mon