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.