From 7cdd6b259655d05d1098c0d1d92d3864ff2d484a Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 21 Nov 2017 12:19:47 -0500 Subject: [PATCH 1/7] fix crap from merge of Floreen camera ptz --- db/zm_update-1.31.2.sql | 780 +--------------------------------------- 1 file changed, 1 insertion(+), 779 deletions(-) diff --git a/db/zm_update-1.31.2.sql b/db/zm_update-1.31.2.sql index e0d29caad..0bc10c8ce 100644 --- a/db/zm_update-1.31.2.sql +++ b/db/zm_update-1.31.2.sql @@ -1,779 +1 @@ --- MySQL dump 10.13 Distrib 5.7.20, for Linux (x86_64) --- --- Host: localhost Database: zm --- ------------------------------------------------------ --- Server version 5.7.20-0ubuntu0.17.10.1 - -/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; -/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; -/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; -/*!40101 SET NAMES utf8 */; -/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; -/*!40103 SET TIME_ZONE='+00:00' */; -/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; -/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; -/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; -/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; - --- --- Table structure for table `Config` --- - -DROP TABLE IF EXISTS `Config`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Config` ( - `Id` smallint(5) unsigned NOT NULL DEFAULT '0', - `Name` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Value` text COLLATE utf8_unicode_ci NOT NULL, - `Type` tinytext COLLATE utf8_unicode_ci NOT NULL, - `DefaultValue` text COLLATE utf8_unicode_ci, - `Hint` tinytext COLLATE utf8_unicode_ci, - `Pattern` tinytext COLLATE utf8_unicode_ci, - `Format` tinytext COLLATE utf8_unicode_ci, - `Prompt` tinytext COLLATE utf8_unicode_ci, - `Help` text COLLATE utf8_unicode_ci, - `Category` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Readonly` tinyint(3) unsigned NOT NULL DEFAULT '0', - `Requires` text COLLATE utf8_unicode_ci, - PRIMARY KEY (`Name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Config` --- - -LOCK TABLES `Config` WRITE; -/*!40000 ALTER TABLE `Config` DISABLE KEYS */; -INSERT INTO `Config` VALUES (20,'ZM_ADD_JPEG_COMMENTS','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Add jpeg timestamp annotations as file header comments',' JPEG files may have a number of extra fields added to the file header. The comment field may have any kind of text added. This options allows you to have the same text that is used to annotate the image additionally included as a file header comment. If you archive event images to other locations this may help you locate images for particular events or times if you use software that can read comment headers. ','images',0,''),(135,'ZM_AUDIT_CHECK_INTERVAL','900','integer','900','integer','(?^:^(d+)$)',' $1 ','How often to check database and filesystem consistency',' The zmaudit daemon exists to check that the saved information in the database and on the filesystem match and are consistent with each other. If an error occurs or if you are using \'fast deletes\' it may be that database records are deleted but files remain. In this case, and similar, zmaudit will remove redundant information to synchronise the two data stores. The default check interval of 900 seconds (15 minutes) is fine for most systems however if you have a very large number of events the process of scanning the database and filesystem may take a long time and impact performance. In this case you may prefer to make this interval much larger to reduce the impact on your system. This option determines how often these checks are performed. ','system',0,''),(136,'ZM_AUDIT_MIN_AGE','86400','integer','86400','integer','(?^:^(d+)$)',' $1 ','The minimum age in seconds event data must be in order to be deleted.',' The zmaudit daemon exists to check that the saved information in the database and on the filesystem match and are consistent with each other. Event files or db records that are younger than this setting will not be deleted and a warning will be given. ','system',0,''),(7,'ZM_AUTH_HASH_IPS','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Include IP addresses in the authentication hash',' When ZoneMinder is running in hashed authenticated mode it can optionally include the requesting IP address in the resultant hash. This adds an extra level of security as only requests from that address may use that authentication key. However in some circumstances, such as access over mobile networks, the requesting address can change for each request which will cause most requests to fail. This option allows you to control whether IP addresses are included in the authentication hash on your system. If you experience intermitent problems with authentication, switching this option off may help. ','system',0,'ZM_OPT_USE_AUTH=1;ZM_AUTH_RELAY=hashed'),(8,'ZM_AUTH_HASH_LOGINS','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Allow login by authentication hash',' The normal process for logging into ZoneMinder is via the login screen with username and password. In some circumstances it may be desirable to allow access directly to one or more pages, for instance from a third party application. If this option is enabled then adding an \'auth\' parameter to any request will include a shortcut login bypassing the login screen, if not already logged in. As authentication hashes are time and, optionally, IP limited this can allow short-term access to ZoneMinder screens from other web pages etc. In order to use this the calling application will have to generate the authentication hash itself and ensure it is valid. If you use this option you should ensure that you have modified the ZM_AUTH_HASH_SECRET to something unique to your system. ','system',0,'ZM_OPT_USE_AUTH=1;ZM_AUTH_RELAY=hashed'),(6,'ZM_AUTH_HASH_SECRET','...Change me to something unique...','string','...Change me to something unique...','string','(?^:^(.+)$)',' $1 ','Secret for encoding hashed authentication information',' When ZoneMinder is running in hashed authenticated mode it is necessary to generate hashed strings containing encrypted sensitive information such as usernames and password. Although these string are reasonably secure the addition of a random secret increases security substantially. ','system',0,'ZM_OPT_USE_AUTH=1;ZM_AUTH_RELAY=hashed'),(5,'ZM_AUTH_RELAY','hashed','string','hashed','hashed|plain|none','(?^i:^([hpn]))',' ($1 =~ /^h/) ? \"hashed\" : ($1 =~ /^p/ ? \"plain\" : \"none\" ) ','Method used to relay authentication information',' When ZoneMinder is running in authenticated mode it can pass user details between the web pages and the back end processes. There are two methods for doing this. This first is to use a time limited hashed string which contains no direct username or password details, the second method is to pass the username and passwords around in plaintext. This method is not recommend except where you do not have the md5 libraries available on your system or you have a completely isolated system with no external access. You can also switch off authentication relaying if your system is isolated in other ways. ','system',0,'ZM_OPT_USE_AUTH=1'),(4,'ZM_AUTH_TYPE','builtin','string','builtin','builtin|remote','(?^i:^([br]))',' $1 =~ /^b/ ? \"builtin\" : \"remote\" ','What is used to authenticate ZoneMinder users',' ZoneMinder can use two methods to authenticate users when running in authenticated mode. The first is a builtin method where ZoneMinder provides facilities for users to log in and maintains track of their identity. The second method allows interworking with other methods such as http basic authentication which passes an independently authentication \'remote\' user via http. In this case ZoneMinder would use the supplied user without additional authentication provided such a user is configured ion ZoneMinder. ','system',0,'ZM_OPT_USE_AUTH=1'),(138,'ZM_BULK_FRAME_INTERVAL','100','integer','100','integer','(?^:^(d+)$)',' $1 ','How often a bulk frame should be written to the database',' Traditionally ZoneMinder writes an entry into the Frames database table for each frame that is captured and saved. This works well in motion detection scenarios but when in a DVR situation (\'Record\' or \'Mocord\' mode) this results in a huge number of frame writes and a lot of database and disk bandwidth for very little additional information. Setting this to a non-zero value will enabled ZoneMinder to group these non-alarm frames into one \'bulk\' frame entry which saves a lot of bandwidth and space. The only disadvantage of this is that timing information for individual frames is lost but in constant frame rate situations this is usually not significant. This setting is ignored in Modect mode and individual frames are still written if an alarm occurs in Mocord mode also. ','config',0,''),(92,'ZM_CAPTURES_PER_FRAME','1','integer','1','integer','(?^:^(d+)$)',' $1 ','How many images are captured per returned frame, for shared local cameras',' If you are using cameras attached to a video capture card which forces multiple inputs to share one capture chip, it can sometimes produce images with interlaced frames reversed resulting in poor image quality and a distinctive comb edge appearance. Increasing this setting allows you to force additional image captures before one is selected as the captured frame. This allows the capture hardware to \'settle down\' and produce better quality images at the price of lesser capture rates. This option has no effect on (a) network cameras, or (b) where multiple inputs do not share a capture chip. This option addresses a similar problem to the ZM_V4L_MULTI_BUFFER option and you should normally change the value of only one of the options at a time. If you have different capture cards that need different values you can ovveride them in each individual monitor on the source page. ','config',0,''),(150,'ZM_CHECK_FOR_UPDATES','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Check with zoneminder.com for updated versions',' From ZoneMinder version 1.17.0 onwards new versions are expected to be more frequent. To save checking manually for each new version ZoneMinder can check with the zoneminder.com website to determine the most recent release. These checks are infrequent, about once per week, and no personal or system information is transmitted other than your current version number. If you do not wish these checks to take place or your ZoneMinder system has no internet access you can switch these check off with this configuration variable ','system',0,''),(19,'ZM_COLOUR_JPEG_FILES','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Colourise greyscale JPEG files',' Cameras that capture in greyscale can write their captured images to jpeg files with a corresponding greyscale colour space. This saves a small amount of disk space over colour ones. However some tools such as ffmpeg either fail to work with this colour space or have to convert it beforehand. Setting this option to yes uses up a little more space but makes creation of MPEG files much faster. ','images',0,''),(33,'ZM_CPU_EXTENSIONS','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Use advanced CPU extensions to increase performance',' When advanced processor extensions such as SSE2 or SSSE3 are available, ZoneMinder can use them, which should increase performance and reduce system load. Enabling this option on processors that do not support the advanced processors extensions used by ZoneMinder is harmless and will have no effect. ','config',0,''),(141,'ZM_CREATE_ANALYSIS_IMAGES','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Create analysed alarm images with motion outlined',' By default during an alarm ZoneMinder records both the raw captured image and one that has been analysed and had areas where motion was detected outlined. This can be very useful during zone configuration or in analysing why events occurred. However it also incurs some overhead and in a stable system may no longer be necessary. This parameter allows you to switch the generation of these images off. ','config',0,''),(1,'ZM_CSS_DEFAULT','classic','string','classic','string','(?^:^(.+)$)',' $1 ','Default set of css files used by web interface',' ZoneMinder allows the use of many different web interfaces, and some skins allow the use of different set of CSS files to control the appearance. This option allows you to set the default set of css files used by the website. Users can change their css later, this merely sets the default. ','system',0,''),(144,'ZM_DEFAULT_ASPECT_RATIO','4:3','string','4:3','string','(?^:^(.+)$)',' $1 ','The default width:height aspect ratio used in monitors',' When specifying the dimensions of monitors you can click a checkbox to ensure that the width stays in the correct ratio to the height, or vice versa. This setting allows you to indicate what the ratio of these settings should be. This should be specified in the format : and the default of 4:3 normally be acceptable but 11:9 is another common setting. If the checkbox is not clicked when specifying monitor dimensions this setting has no effect. ','config',0,''),(14,'ZM_DIR_EVENTS','events','string','events','directory','(?^:^([a-zA-Z0-9-_.]+)$)',' $1 ','Directory where events are stored',' This is the path to the events directory where all the event images and other miscellaneous files are stored. CAUTION: The directory you specify here cannot be outside the web root. This is a common mistake. Most users should never change this value. If you intend to record events to a second disk or network share, then you should mount the drive or share directly to the ZoneMinder events folder or follow the instructions in the ZoneMinder Wiki titled Using a dedicated Hard Drive. ','paths',0,''),(16,'ZM_DIR_IMAGES','images','string','images','directory','(?^:^([a-zA-Z0-9-_.]+)$)',' $1 ','Directory where the images that the ZoneMinder client generates are stored',' ZoneMinder generates a myriad of images, mostly of which are associated with events. For those that aren\'t this is where they go. CAUTION: The directory you specify here cannot be outside the web root. This is a common mistake. Most users should never change this value. If you intend to save images to a second disk or network share, then you should mount the drive or share directly to the ZoneMinder images folder or follow the instructions in the ZoneMinder Wiki titled Using a dedicated Hard Drive. ','paths',0,''),(17,'ZM_DIR_SOUNDS','sounds','string','sounds','directory','(?^:^([a-zA-Z0-9-_.]+)$)',' $1 ','Directory to the sounds that the ZoneMinder client can use',' ZoneMinder can optionally play a sound file when an alarm is detected. This indicates where to look for this file. CAUTION: The directory you specify here cannot be outside the web root. Most users should never change this value. ','paths',0,''),(68,'ZM_DUMP_CORES','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Create core files on unexpected process failure.',' When an unrecoverable error occurs in a ZoneMinder binary process is has traditionally been trapped and the details written to logs to aid in remote analysis. However in some cases it is easier to diagnose the error if a core file, which is a memory dump of the process at the time of the error, is created. This can be interactively analysed in the debugger and may reveal more or better information than that available from the logs. This option is recommended for advanced users only otherwise leave at the default. Note using this option to trigger core files will mean that there will be no indication in the binary logs that a process has died, they will just stop, however the zmdc log will still contain an entry. Also note that you may have to explicitly enable core file creation on your system via the \'ulimit -c\' command or other means otherwise no file will be created regardless of the value of this option. ','logging',0,''),(210,'ZM_DYN_CURR_VERSION','1.30.4','string','1.30.4','string','(?^:^(.+)$)',' $1 ',' What the effective current version of ZoneMinder is, might be different from actual if versions ignored ','','dynamic',1,''),(211,'ZM_DYN_DB_VERSION','1.30.4','string','1.30.4','string','(?^:^(.+)$)',' $1 ','What the version of the database is, from zmupdate','','dynamic',1,''),(214,'ZM_DYN_DONATE_REMINDER_TIME','1513336815','integer','0','integer','(?^:^(d+)$)',' $1 ','When the earliest time to remind about donations will be','','dynamic',1,''),(212,'ZM_DYN_LAST_CHECK','','integer','','integer','(?^:^(d+)$)',' $1 ','When the last check for version from zoneminder.com was','','dynamic',1,''),(209,'ZM_DYN_LAST_VERSION','','string','','string','(?^:^(.+)$)',' $1 ','What the last version of ZoneMinder recorded from zoneminder.com is','','dynamic',1,''),(213,'ZM_DYN_NEXT_REMINDER','','string','','string','(?^:^(.+)$)',' $1 ','When the earliest time to remind about versions will be','','dynamic',1,''),(215,'ZM_DYN_SHOW_DONATE_REMINDER','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Remind about donations or not','','dynamic',1,''),(118,'ZM_EMAIL_ADDRESS','','string','','your.name@your.domain','(?^:^([a-zA-Z0-9_.-]+)@([a-zA-Z0-9_.-]+)$)',' $1@$2 ','The email address to send matching event details to',' This option is used to define the email address that any events that match the appropriate filters will be sent to. ','mail',0,'ZM_OPT_EMAIL=1'),(121,'ZM_EMAIL_BODY','\n Hello,\n\n An alarm has been detected on your installation of the ZoneMinder.\n\n The details are as follows :-\n\n Monitor : %MN%\n Event Id : %EI%\n Length : %EL%\n Frames : %EF% (%EFA%)\n Scores : t%EST% m%ESM% a%ESA%\n\n This alarm was matched by the %FN% filter and can be viewed at %EPS%\n\n ZoneMinder','text','\n Hello,\n\n An alarm has been detected on your installation of the ZoneMinder.\n\n The details are as follows :-\n\n Monitor : %MN%\n Event Id : %EI%\n Length : %EL%\n Frames : %EF% (%EFA%)\n Scores : t%EST% m%ESM% a%ESA%\n\n This alarm was matched by the %FN% filter and can be viewed at %EPS%\n\n ZoneMinder','free text','(?^:^(.+)$)',' $1 ','The body of the email used to send matching event details',' This option is used to define the content of the email that is sent for any events that match the appropriate filters. ','mail',0,'ZM_OPT_EMAIL=1'),(128,'ZM_EMAIL_HOST','localhost','string','localhost','host.your.domain','(?^:^([a-zA-Z0-9_.-]+)$)',' $1 ','The host address of your SMTP mail server',' If you have chosen SMTP as the method by which to send notification emails or messages then this option allows you to choose which SMTP server to use to send them. The default of localhost may work if you have the sendmail, exim or a similar daemon running however you may wish to enter your ISP\'s SMTP mail server here. ','mail',0,'ZM_OPT_EMAIL=1;ZM_OPT_MESSAGE=1'),(120,'ZM_EMAIL_SUBJECT','ZoneMinder: Alarm - %MN%-%EI% (%ESM% - %ESA% %EFA%)','string','ZoneMinder: Alarm - %MN%-%EI% (%ESM% - %ESA% %EFA%)','string','(?^:^(.+)$)',' $1 ','The subject of the email used to send matching event details',' This option is used to define the subject of the email that is sent for any events that match the appropriate filters. ','mail',0,'ZM_OPT_EMAIL=1'),(119,'ZM_EMAIL_TEXT','subject = \"ZoneMinder: Alarm - %MN%-%EI% (%ESM% - %ESA% %EFA%)\"\n body = \"\n Hello,\n\n An alarm has been detected on your installation of the ZoneMinder.\n\n The details are as follows :-\n\n Monitor : %MN%\n Event Id : %EI%\n Length : %EL%\n Frames : %EF% (%EFA%)\n Scores : t%EST% m%ESM% a%ESA%\n\n This alarm was matched by the %FN% filter and can be viewed at %EPS%\n\n ZoneMinder\"','text','subject = \"ZoneMinder: Alarm - %MN%-%EI% (%ESM% - %ESA% %EFA%)\"\n body = \"\n Hello,\n\n An alarm has been detected on your installation of the ZoneMinder.\n\n The details are as follows :-\n\n Monitor : %MN%\n Event Id : %EI%\n Length : %EL%\n Frames : %EF% (%EFA%)\n Scores : t%EST% m%ESM% a%ESA%\n\n This alarm was matched by the %FN% filter and can be viewed at %EPS%\n\n ZoneMinder\"','free text','(?^:^(.+)$)',' $1 ','The text of the email used to send matching event details',' This option is used to define the content of the email that is sent for any events that match the appropriate filters. ','hidden',0,'ZM_OPT_EMAIL=1'),(9,'ZM_ENABLE_CSRF_MAGIC','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Enable csrf-magic library',' CSRF stands for Cross-Site Request Forgery which, under specific circumstances, can allow an attacker to perform any task your ZoneMinder user account has permission to perform. To accomplish this, the attacker must write a very specific web page and get you to navigate to it, while you are logged into the ZoneMinder web console at the same time. Enabling ZM_ENABLE_CSRF_MAGIC will help mitigate these kinds of attackes. Be warned this feature is experimental and may cause problems, particularly with the API. If you find a false positive and can document how to reproduce it, then please report it. This feature defaults to OFF currently due to its experimental nature. ','system',0,''),(139,'ZM_EVENT_CLOSE_MODE','idle','string','idle','time|idle|alarm','(?^i:^([tia]))',' ($1 =~ /^t/)\n ? \"time\"\n : ($1 =~ /^i/ ? \"idle\" : \"time\" )\n ','When continuous events are closed.',' When a monitor is running in a continuous recording mode (Record or Mocord) events are usually closed after a fixed period of time (the section length). However in Mocord mode it is possible that motion detection may occur near the end of a section. This option controls what happens when an alarm occurs in Mocord mode. The \'time\' setting means that the event will be closed at the end of the section regardless of alarm activity. The \'idle\' setting means that the event will be closed at the end of the section if there is no alarm activity occurring at the time otherwise it will be closed once the alarm is over meaning the event may end up being longer than the normal section length. The \'alarm\' setting means that if an alarm occurs during the event, the event will be closed once the alarm is over regardless of when this occurs. This has the effect of limiting the number of alarms to one per event and the events will be shorter than the section length if an alarm has occurred. ','config',0,''),(143,'ZM_EVENT_IMAGE_DIGITS','5','integer','5','integer','(?^:^(d+)$)',' $1 ','How many significant digits are used in event image numbering',' As event images are captured they are stored to the filesystem with a numerical index. By default this index has three digits so the numbers start 001, 002 etc. This works works for most scenarios as events with more than 999 frames are rarely captured. However if you have extremely long events and use external applications then you may wish to increase this to ensure correct sorting of images in listings etc. Warning, increasing this value on a live system may render existing events unviewable as the event will have been saved with the previous scheme. Decreasing this value should have no ill effects. ','config',0,''),(34,'ZM_FAST_IMAGE_BLENDS','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Use a fast algorithm to blend the reference image',' To detect alarms ZoneMinder needs to blend the captured image with the stored reference image to update it for comparison with the next image. The reference blend percentage specified for the monitor controls how much the new image affects the reference image. There are two methods that are available for this. If this option is set then fast calculation which does not use any multiplication or division is used. This calculation is extremely fast, however it limits the possible blend percentages to 50%, 25%, 12.5%, 6.25%, 3.25% and 1.5%. Any other blend percentage will be rounded to the nearest possible one. The alternative is to switch this option off and use standard blending instead, which is slower. ','config',0,''),(48,'ZM_FFMPEG_FORMATS','mpg mpeg wmv asf avi* mov swf 3gp**','string','mpg mpeg wmv asf avi* mov swf 3gp**','string','(?^:^(.+)$)',' $1 ','Formats to allow for ffmpeg video generation',' Ffmpeg can generate video in many different formats. This option allows you to list the ones you want to be able to select. As new formats are supported by ffmpeg you can add them here and be able to use them immediately. Adding a \'*\' after a format indicates that this will be the default format used for web video, adding \'**\' defines the default format for phone video. ','images',0,'ZM_OPT_FFMPEG=1'),(46,'ZM_FFMPEG_INPUT_OPTIONS','','string','','string','(?^:^(.+)$)',' $1 ','Additional input options to ffmpeg',' Ffmpeg can take many options on the command line to control the quality of video produced. This option allows you to specify your own set that apply to the input to ffmpeg (options that are given before the -i option). Check the ffmpeg documentation for a full list of options which may be used here. ','images',0,'ZM_OPT_FFMPEG=1'),(49,'ZM_FFMPEG_OPEN_TIMEOUT','10','integer','10','integer','(?^:^(d+)$)',' $1 ','Timeout in seconds when opening a stream.',' When Ffmpeg is opening a stream, it can take a long time before failing; certain circumstances even seem to be able to lock indefinitely. This option allows you to set a maximum time in seconds to pass before closing the stream and trying to reopen it again. ','images',0,'ZM_OPT_FFMPEG=1'),(47,'ZM_FFMPEG_OUTPUT_OPTIONS','-r 25','string','-r 25','string','(?^:^(.+)$)',' $1 ','Additional output options to ffmpeg',' Ffmpeg can take many options on the command line to control the quality of video produced. This option allows you to specify your own set that apply to the output from ffmpeg (options that are given after the -i option). Check the ffmpeg documentation for a full list of options which may be used here. The most common one will often be to force an output frame rate supported by the video encoder. ','images',0,'ZM_OPT_FFMPEG=1'),(94,'ZM_FILTER_EXECUTE_INTERVAL','60','integer','60','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) to run automatic saved filters',' ZoneMinder allows you to save filters to the database which allow events that match certain criteria to be emailed, deleted or uploaded to a remote machine etc. The zmfilter daemon loads these and does the actual operation. This option determines how often the filters are executed on the saved event in the database. If you want a rapid response to new events this should be a smaller value, however this may increase the overall load on the system and affect performance of other elements. ','system',0,''),(93,'ZM_FILTER_RELOAD_DELAY','300','integer','300','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) filters are reloaded in zmfilter',' ZoneMinder allows you to save filters to the database which allow events that match certain criteria to be emailed, deleted or uploaded to a remote machine etc. The zmfilter daemon loads these and does the actual operation. This option determines how often the filters are reloaded from the database to get the latest versions or new filters. If you don\'t change filters very often this value can be set to a large value. ','system',0,''),(140,'ZM_FORCE_CLOSE_EVENTS','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Close events at section ends.',' When a monitor is running in a continuous recording mode (Record or Mocord) events are usually closed after a fixed period of time (the section length). However in Mocord mode it is possible that motion detection may occur near the end of a section and ordinarily this will prevent the event being closed until the motion has ceased. Switching this option on will force the event closed at the specified time regardless of any motion activity. ','hidden',0,''),(137,'ZM_FORCED_ALARM_SCORE','255','integer','255','integer','(?^:^(d+)$)',' $1 ','Score to give forced alarms',' The \'zmu\' utility can be used to force an alarm on a monitor rather than rely on the motion detection algorithms. This option determines what score to give these alarms to distinguish them from regular ones. It must be 255 or less. ','config',0,''),(147,'ZM_FRAME_SOCKET_SIZE','0','integer','0','integer','(?^:^(d+)$)',' $1 ','Specify the frame server socket buffer size if non-standard',' For large captured images it is possible for the writes from the analysis daemon to the frame server to fail as the amount to be written exceeds the default buffer size. While the images are then written by the analysis daemon so no data is lost, it defeats the object of the frame server daemon in the first place. You can use this option to indicate that a larger buffer size should be used. Note that you may have to change the existing maximum socket buffer size on your system via sysctl (or in /proc/sys/net/core/wmem_max) to allow this new size to be set. Alternatively you can change the default buffer size on your system in the same way in which case that will be used with no change necessary in this option ','system',0,'ZM_OPT_FRAME_SERVER=1'),(129,'ZM_FROM_EMAIL','','string','','your.name@your.domain','(?^:^([a-zA-Z0-9_.-]+)@([a-zA-Z0-9_.-]+)$)',' $1@$2 ','The email address you wish your event notifications to originate from',' The emails or messages that will be sent to you informing you of events can appear to come from a designated email address to help you with mail filtering etc. An address of something like ZoneMinder@your.domain is recommended. ','mail',0,'ZM_OPT_EMAIL=1;ZM_OPT_MESSAGE=1'),(41,'ZM_HTTP_TIMEOUT','2500','integer','2500','integer','(?^:^(d+)$)',' $1 ','How long ZoneMinder waits before giving up on images (milliseconds)',' When retrieving remote images ZoneMinder will wait for this length of time before deciding that an image is not going to arrive and taking steps to retry. This timeout is in milliseconds (1000 per second) and will apply to each part of an image if it is not sent in one whole chunk. ','network',0,''),(40,'ZM_HTTP_UA','ZoneMinder','string','ZoneMinder','string','(?^:^(.+)$)',' $1 ','The user agent that ZoneMinder uses to identify itself',' When ZoneMinder communicates with remote cameras it will identify itself using this string and it\'s version number. This is normally sufficient, however if a particular cameras expects only to communicate with certain browsers then this can be changed to a different string identifying ZoneMinder as Internet Explorer or Netscape etc. ','network',0,''),(39,'ZM_HTTP_VERSION','1.0','string','1.0','1.1|1.0','(?^:^(1.[01])$)',' $1?$1:\"\" ','The version of HTTP that ZoneMinder will use to connect',' ZoneMinder can communicate with network cameras using either of the HTTP/1.1 or HTTP/1.0 standard. A server will normally fall back to the version it supports with no problem so this should usually by left at the default. However it can be changed to HTTP/1.0 if necessary to resolve particular issues. ','network',0,''),(22,'ZM_JPEG_ALARM_FILE_QUALITY','0','integer','0','integer','(?^:^(d+)$)',' $1 ','Set the JPEG quality setting for the saved event files during an alarm (1-100)',' This value is equivalent to the regular jpeg file quality setting above except that it only applies to images saved while in an alarm state and then only if this value is set to a higher quality setting than the ordinary file setting. If set to a lower value then it is ignored. Thus leaving it at the default of 0 effectively means to use the regular file quality setting for all saved images. This is to prevent acccidentally saving important images at a worse quality setting. ','images',0,''),(21,'ZM_JPEG_FILE_QUALITY','90','integer','70','integer','(?^:^(d+)$)',' $1 ','Set the JPEG quality setting for the saved event files (1-100)',' When ZoneMinder detects an event it will save the images associated with that event to files. These files are in the JPEG format and can be viewed or streamed later. This option specifies what image quality should be used to save these files. A higher number means better quality but less compression so will take up more disk space and take longer to view over a slow connection. By contrast a low number means smaller, quicker to view, files but at the price of lower quality images. This setting applies to all images written except if the capture image has caused an alarm and the alarm file quality option is set at a higher value when that is used instead. ','images',0,''),(23,'ZM_JPEG_IMAGE_QUALITY','70','integer','70','integer','(?^:^(d+)$)',' $1 ','Set the JPEG quality setting for the streamed \'live\' images (1-100)',' When viewing a \'live\' stream for a monitor ZoneMinder will grab an image from the buffer and encode it into JPEG format before sending it. This option specifies what image quality should be used to encode these images. A higher number means better quality but less compression so will take longer to view over a slow connection. By contrast a low number means quicker to view images but at the price of lower quality images. This option does not apply when viewing events or still images as these are usually just read from disk and so will be encoded at the quality specified by the previous options. ','hidden',0,''),(24,'ZM_JPEG_STREAM_QUALITY','90','integer','70','integer','(?^:^(d+)$)',' $1 ','Set the JPEG quality setting for the streamed \'live\' images (1-100)',' When viewing a \'live\' stream for a monitor ZoneMinder will grab an image from the buffer and encode it into JPEG format before sending it. This option specifies what image quality should be used to encode these images. A higher number means better quality but less compression so will take longer to view over a slow connection. By contrast a low number means quicker to view images but at the price of lower quality images. This option does not apply when viewing events or still images as these are usually just read from disk and so will be encoded at the quality specified by the previous options. ','images',0,''),(2,'ZM_LANG_DEFAULT','en_gb','string','en_gb','string','(?^:^(.+)$)',' $1 ','Default language used by web interface',' ZoneMinder allows the web interface to use languages other than English if the appropriate language file has been created and is present. This option allows you to change the default language that is used from the shipped language, British English, to another language ','system',0,''),(89,'ZM_LD_PRELOAD','','string','','/absolute/path/to/somewhere','(?^:^((?:/[^/]*)+?)/?$)',' $1 ','Path to library to preload before launching daemons',' Some older cameras require the use of the v4l1 compat library. This setting allows the setting of the path to the library, so that it can be loaded by zmdc.pl before launching zmc.','config',0,''),(64,'ZM_LOG_ALARM_ERR_COUNT','10','integer','10','integer','(?^:^(d+)$)',' $1 ','Number of errors indicating system alarm state',' When ZoneMinder is logging events to the database it can retrospectively examine the number of warnings and errors that have occurred to calculate an overall state of system health. This option allows you to specify how many errors must have occurred within the defined time period to generate an overall system alarm state. A value of zero means errors are not considered. This value is ignored if LOG_LEVEL_DATABASE is set to None. ','logging',0,''),(65,'ZM_LOG_ALARM_FAT_COUNT','1','integer','1','integer','(?^:^(d+)$)',' $1 ','Number of fatal error indicating system alarm state',' When ZoneMinder is logging events to the database it can retrospectively examine the number of warnings and errors that have occurred to calculate an overall state of system health. This option allows you to specify how many fatal errors (including panics) must have occurred within the defined time period to generate an overall system alarm state. A value of zero means fatal errors are not considered. This value is ignored if LOG_LEVEL_DATABASE is set to None. ','logging',0,''),(63,'ZM_LOG_ALARM_WAR_COUNT','100','integer','100','integer','(?^:^(d+)$)',' $1 ','Number of warnings indicating system alarm state',' When ZoneMinder is logging events to the database it can retrospectively examine the number of warnings and errors that have occurred to calculate an overall state of system health. This option allows you to specify how many warnings must have occurred within the defined time period to generate an overall system alarm state. A value of zero means warnings are not considered. This value is ignored if LOG_LEVEL_DATABASE is set to None. ','logging',0,''),(61,'ZM_LOG_ALERT_ERR_COUNT','1','integer','1','integer','(?^:^(d+)$)',' $1 ','Number of errors indicating system alert state',' When ZoneMinder is logging events to the database it can retrospectively examine the number of warnings and errors that have occurred to calculate an overall state of system health. This option allows you to specify how many errors must have occurred within the defined time period to generate an overall system alert state. A value of zero means errors are not considered. This value is ignored if LOG_LEVEL_DATABASE is set to None. ','logging',0,''),(62,'ZM_LOG_ALERT_FAT_COUNT','0','integer','0','integer','(?^:^(d+)$)',' $1 ','Number of fatal error indicating system alert state',' When ZoneMinder is logging events to the database it can retrospectively examine the number of warnings and errors that have occurred to calculate an overall state of system health. This option allows you to specify how many fatal errors (including panics) must have occurred within the defined time period to generate an overall system alert state. A value of zero means fatal errors are not considered. This value is ignored if LOG_LEVEL_DATABASE is set to None. ','logging',0,''),(60,'ZM_LOG_ALERT_WAR_COUNT','1','integer','1','integer','(?^:^(d+)$)',' $1 ','Number of warnings indicating system alert state',' When ZoneMinder is logging events to the database it can retrospectively examine the number of warnings and errors that have occurred to calculate an overall state of system health. This option allows you to specify how many warnings must have occurred within the defined time period to generate an overall system alert state. A value of zero means warnings are not considered. This value is ignored if LOG_LEVEL_DATABASE is set to None. ','logging',0,''),(59,'ZM_LOG_CHECK_PERIOD','900','integer','900','integer','(?^:^(d+)$)',' $1 ','Time period used when calculating overall system health',' When ZoneMinder is logging events to the database it can retrospectively examine the number of warnings and errors that have occurred to calculate an overall state of system health. This option allows you to indicate what period of historical events are used in this calculation. This value is expressed in seconds and is ignored if LOG_LEVEL_DATABASE is set to None. ','logging',0,''),(54,'ZM_LOG_DATABASE_LIMIT','7 day','string','7 day','string','(?^:^(.+)$)',' $1 ','Maximum number of log entries to retain',' If you are using database logging then it is possible to quickly build up a large number of entries in the Logs table. This option allows you to specify how many of these entries are kept. If you set this option to a number greater than zero then that number is used to determine the maximum number of rows, less than or equal to zero indicates no limit and is not recommended. You can also set this value to time values such as \' day\' which will limit the log entries to those newer than that time. You can specify \'hour\', \'day\', \'week\', \'month\' and \'year\', note that the values should be singular (no \'s\' at the end). The Logs table is pruned periodically so it is possible for more than the expected number of rows to be present briefly in the meantime. ','logging',0,''),(55,'ZM_LOG_DEBUG','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Switch debugging on',' ZoneMinder components usually support debug logging available to help with diagnosing problems. Binary components have several levels of debug whereas more other components have only one. Normally this is disabled to minimise performance penalties and avoid filling logs too quickly. This option lets you switch on other options that allow you to configure additional debug information to be output. Components will pick up this instruction when they are restarted. ','logging',0,''),(58,'ZM_LOG_DEBUG_FILE','/var/log/zm/zm_debug.log+','string','/var/log/zm/zm_debug.log+','string','(?^:^(.+)$)',' $1 ','Where extra debug is output to',' This option allows you to specify a different target for debug output. All components have a default log file which will norally be in /tmp or /var/log and this is where debug will be written to if this value is empty. Adding a path here will temporarily redirect debug, and other logging output, to this file. This option is a simple filename and you are debugging several components then they will all try and write to the same file with undesirable consequences. Appending a \'+\' to the filename will cause the file to be created with a \'.\' suffix containing your process id. In this way debug from each run of a component is kept separate. This is the recommended setting as it will also prevent subsequent runs from overwriting the same log. You should ensure that permissions are set up to allow writing to the file and directory specified here. ','logging',0,'ZM_LOG_DEBUG=1'),(57,'ZM_LOG_DEBUG_LEVEL','1','integer','1','1|2|3|4|5|6|7|8|9','(?^:^(d+)$)',' $1 ','What level of extra debug should be enabled',' There are 9 levels of debug available, with higher numbers being more debug and level 0 being no debug. However not all levels are used by all components. Also if there is debug at a high level it is usually likely to be output at such a volume that it may obstruct normal operation. For this reason you should set the level carefully and cautiously until the degree of debug you wish to see is present. Scripts and the web interface only have one level so this is an on/off type option for them. ','logging',0,'ZM_LOG_DEBUG=1'),(56,'ZM_LOG_DEBUG_TARGET','','string','','string','(?^:^(.+)$)',' $1 ','What components should have extra debug enabled',' There are three scopes of debug available. Leaving this option blank means that all components will use extra debug (not recommended). Setting this option to \'_\', e.g. _zmc, will limit extra debug to that component only. Setting this option to \'__\', e.g. \'_zmc_m1\' will limit extra debug to that instance of the component only. This is ordinarily what you probably want to do. To debug scripts use their names without the .pl extension, e.g. \'_zmvideo\' and to debug issues with the web interface use \'_web\'. You can specify multiple targets by separating them with \'|\' characters. ','logging',0,'ZM_LOG_DEBUG=1'),(53,'ZM_LOG_LEVEL_DATABASE','0','integer','0','None=-5|Panic=-4|Fatal=-3|Error=-2|Warning=-1|Info=0|Debug=1','(?^:^(d+)$)',' $1 ','Save logging output to the database',' ZoneMinder logging is now more more integrated between components and allows you to specify the destination for logging output and the individual levels for each. This option lets you control the level of logging output that is written to the database. This is a new option which can make viewing logging output easier and more intuitive and also makes it easier to get an overall impression of how the system is performing. If you have a large or very busy system then it is possible that use of this option may slow your system down if the table becomes very large. Ensure you use the LOG_DATABASE_LIMIT option to keep the table to a manageable size. This option controls the maximum level of logging that will be written, so Info includes Warnings and Errors etc. To disable entirely, set this option to None. You should use caution when setting this option to Debug as it can affect severely affect system performance. If you want debug you will also need to set a level and component below ','logging',0,''),(51,'ZM_LOG_LEVEL_FILE','-5','integer','-5','None=-5|Panic=-4|Fatal=-3|Error=-2|Warning=-1|Info=0|Debug=1','(?^:^(d+)$)',' $1 ','Save logging output to component files',' ZoneMinder logging is now more more integrated between components and allows you to specify the destination for logging output and the individual levels for each. This option lets you control the level of logging output that goes to individual log files written by specific components. This is how logging worked previously and although useful for tracking down issues in specific components it also resulted in many disparate log files. To preserve this behaviour you should ensure this value is set to Info or Warning. This option controls the maximum level of logging that will be written, so Info includes Warnings and Errors etc. To disable entirely, set this option to None. You should use caution when setting this option to Debug as it can affect severely affect system performance though file output has less impact than the other options. If you want debug you will also need to set a level and component below ','logging',0,''),(50,'ZM_LOG_LEVEL_SYSLOG','0','integer','0','None=-5|Panic=-4|Fatal=-3|Error=-2|Warning=-1|Info=0|Debug=1','(?^:^(d+)$)',' $1 ','Save logging output to the system log',' ZoneMinder logging is now more more integrated between components and allows you to specify the destination for logging output and the individual levels for each. This option lets you control the level of logging output that goes to the system log. ZoneMinder binaries have always logged to the system log but now scripts and web logging is also included. To preserve the previous behaviour you should ensure this value is set to Info or Warning. This option controls the maximum level of logging that will be written, so Info includes Warnings and Errors etc. To disable entirely, set this option to None. You should use caution when setting this option to Debug as it can affect severely affect system performance. If you want debug you will also need to set a level and component below ','logging',0,''),(52,'ZM_LOG_LEVEL_WEBLOG','-5','integer','-5','None=-5|Panic=-4|Fatal=-3|Error=-2|Warning=-1|Info=0|Debug=1','(?^:^(d+)$)',' $1 ','Save logging output to the weblog',' ZoneMinder logging is now more more integrated between components and allows you to specify the destination for logging output and the individual levels for each. This option lets you control the level of logging output from the web interface that goes to the httpd error log. Note that only web logging from PHP and JavaScript files is included and so this option is really only useful for investigating specific issues with those components. This option controls the maximum level of logging that will be written, so Info includes Warnings and Errors etc. To disable entirely, set this option to None. You should use caution when setting this option to Debug as it can affect severely affect system performance. If you want debug you will also need to set a level and component below ','logging',0,''),(131,'ZM_MAX_RESTART_DELAY','600','integer','600','integer','(?^:^(d+)$)',' $1 ','Maximum delay (in seconds) for daemon restart attempts.',' The zmdc (zm daemon control) process controls when processeses are started or stopped and will attempt to restart any that fail. If a daemon fails frequently then a delay is introduced between each restart attempt. If the daemon stills fails then this delay is increased to prevent extra load being placed on the system by continual restarts. This option controls what this maximum delay is. ','system',0,''),(43,'ZM_MAX_RTP_PORT','40499','integer','40499','integer','(?^:^(d+)$)',' $1 ','Maximum port that ZoneMinder will listen for RTP traffic on',' When ZoneMinder communicates with MPEG4 capable cameras using RTP with the unicast method it must open ports for the camera to connect back to for control and streaming purposes. This setting specifies the maximum port number that ZoneMinder will use. Ordinarily two adjacent ports are used for each camera, one for control packets and one for data packets. This port should be set to an even number, you may also need to open up a hole in your firewall to allow cameras to connect back if you wish to use unicasting. You should also ensure that you have opened up at least two ports for each monitor that will be connecting to unicasting network cameras. ','network',0,''),(36,'ZM_MAX_SUSPEND_TIME','30','integer','30','integer','(?^:^(d+)$)',' $1 ','Maximum time that a monitor may have motion detection suspended',' ZoneMinder allows monitors to have motion detection to be suspended, for instance while panning a camera. Ordinarily this relies on the operator resuming motion detection afterwards as failure to do so can leave a monitor in a permanently suspended state. This setting allows you to set a maximum time which a camera may be suspended for before it automatically resumes motion detection. This time can be extended by subsequent suspend indications after the first so continuous camera movement will also occur while the monitor is suspended. ','config',0,''),(123,'ZM_MESSAGE_ADDRESS','','string','','your.name@your.domain','(?^:^([a-zA-Z0-9_.-]+)@([a-zA-Z0-9_.-]+)$)',' $1@$2 ','The email address to send matching event details to',' This option is used to define the short message email address that any events that match the appropriate filters will be sent to. ','mail',0,'ZM_OPT_MESSAGE=1'),(126,'ZM_MESSAGE_BODY','ZM alarm detected - %EL% secs, %EF%/%EFA% frames, t%EST%/m%ESM%/a%ESA% score.','text','ZM alarm detected - %EL% secs, %EF%/%EFA% frames, t%EST%/m%ESM%/a%ESA% score.','free text','(?^:^(.+)$)',' $1 ','The body of the message used to send matching event details',' This option is used to define the content of the message that is sent for any events that match the appropriate filters. ','mail',0,'ZM_OPT_MESSAGE=1'),(125,'ZM_MESSAGE_SUBJECT','ZoneMinder: Alarm - %MN%-%EI%','string','ZoneMinder: Alarm - %MN%-%EI%','string','(?^:^(.+)$)',' $1 ','The subject of the message used to send matching event details',' This option is used to define the subject of the message that is sent for any events that match the appropriate filters. ','mail',0,'ZM_OPT_MESSAGE=1'),(124,'ZM_MESSAGE_TEXT','subject = \"ZoneMinder: Alarm - %MN%-%EI%\"\n body = \"ZM alarm detected - %EL% secs, %EF%/%EFA% frames, t%EST%/m%ESM%/a%ESA% score.\"','text','subject = \"ZoneMinder: Alarm - %MN%-%EI%\"\n body = \"ZM alarm detected - %EL% secs, %EF%/%EFA% frames, t%EST%/m%ESM%/a%ESA% score.\"','free text','(?^:^(.+)$)',' $1 ','The text of the message used to send matching event details',' This option is used to define the content of the message that is sent for any events that match the appropriate filters. ','hidden',0,'ZM_OPT_MESSAGE=1'),(42,'ZM_MIN_RTP_PORT','40200','integer','40200','integer','(?^:^(d+)$)',' $1 ','Minimum port that ZoneMinder will listen for RTP traffic on',' When ZoneMinder communicates with MPEG4 capable cameras using RTP with the unicast method it must open ports for the camera to connect back to for control and streaming purposes. This setting specifies the minimum port number that ZoneMinder will use. Ordinarily two adjacent ports are used for each camera, one for control packets and one for data packets. This port should be set to an even number, you may also need to open up a hole in your firewall to allow cameras to connect back if you wish to use unicasting. ','network',0,''),(26,'ZM_MPEG_LIVE_FORMAT','swf','string','swf','string','(?^:^(.+)$)',' $1 ','What format \'live\' video streams are played in',' When using MPEG mode ZoneMinder can output live video. However what formats are handled by the browser varies greatly between machines. This option allows you to specify a video format using a file extension format, so you would just enter the extension of the file type you would like and the rest is determined from that. The default of \'asf\' works well under Windows with Windows Media Player but I\'m currently not sure what, if anything, works on a Linux platform. If you find out please let me know! If this option is left blank then live streams will revert to being in motion jpeg format ','images',0,''),(27,'ZM_MPEG_REPLAY_FORMAT','swf','string','swf','string','(?^:^(.+)$)',' $1 ','What format \'replay\' video streams are played in',' When using MPEG mode ZoneMinder can replay events in encoded video format. However what formats are handled by the browser varies greatly between machines. This option allows you to specify a video format using a file extension format, so you would just enter the extension of the file type you would like and the rest is determined from that. The default of \'asf\' works well under Windows with Windows Media Player and \'mpg\', or \'avi\' etc should work under Linux. If you know any more then please let me know! If this option is left blank then live streams will revert to being in motion jpeg format ','images',0,''),(25,'ZM_MPEG_TIMED_FRAMES','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Tag video frames with a timestamp for more realistic streaming',' When using streamed MPEG based video, either for live monitor streams or events, ZoneMinder can send the streams in two ways. If this option is selected then the timestamp for each frame, taken from it\'s capture time, is included in the stream. This means that where the frame rate varies, for instance around an alarm, the stream will still maintain it\'s \'real\' timing. If this option is not selected then an approximate frame rate is calculated and that is used to schedule frames instead. This option should be selected unless you encounter problems with your preferred streaming method. ','images',0,''),(38,'ZM_NETCAM_REGEXPS','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Use regular expression matching with network cameras',' Traditionally ZoneMinder has used complex regular regular expressions to handle the multitude of formats that network cameras produce. In versions from 1.21.1 the default is to use a simpler and faster built in pattern matching methodology. This works well with most networks cameras but if you have problems you can try the older, but more flexible, regular expression based method by selecting this option. Note, to use this method you must have libpcre installed on your system. ','hidden',0,'ZM_OPT_REMOTE_CAMERAS=1'),(127,'ZM_NEW_MAIL_MODULES','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Use a newer perl method to send emails',' Traditionally ZoneMinder has used the MIME::Entity perl module to construct and send notification emails and messages. Some people have reported problems with this module not being present at all or flexible enough for their needs. If you are one of those people this option allows you to select a new mailing method using MIME::Lite and Net::SMTP instead. This method was contributed by Ross Melin and should work for everyone but has not been extensively tested so currently is not selected by default. ','mail',0,'ZM_OPT_EMAIL=1;ZM_OPT_MESSAGE=1'),(35,'ZM_OPT_ADAPTIVE_SKIP','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Should frame analysis try and be efficient in skipping frames',' In previous versions of ZoneMinder the analysis daemon would attempt to keep up with the capture daemon by processing the last captured frame on each pass. This would sometimes have the undesirable side-effect of missing a chunk of the initial activity that caused the alarm because the pre-alarm frames would all have to be written to disk and the database before processing the next frame, leading to some delay between the first and second event frames. Setting this option enables a newer adaptive algorithm where the analysis daemon attempts to process as many captured frames as possible, only skipping frames when in danger of the capture daemon overwriting yet to be processed frames. This skip is variable depending on the size of the ring buffer and the amount of space left in it. Enabling this option will give you much better coverage of the beginning of alarms whilst biasing out any skipped frames towards the middle or end of the event. However you should be aware that this will have the effect of making the analysis daemon run somewhat behind the capture daemon during events and for particularly fast rates of capture it is possible for the adaptive algorithm to be overwhelmed and not have time to react to a rapid build up of pending frames and thus for a buffer overrun condition to occur. ','config',0,''),(29,'ZM_OPT_CAMBOZOLA','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Is the (optional) cambozola java streaming client installed',' Cambozola is a handy low fat cheese flavoured Java applet that ZoneMinder uses to view image streams on browsers such as Internet Explorer that don\'t natively support this format. If you use this browser it is highly recommended to install this from http://www.charliemouse.com/code/cambozola/ however if it is not installed still images at a lower refresh rate can still be viewed. ','images',0,''),(148,'ZM_OPT_CONTROL','1','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Support controllable (e.g. PTZ) cameras',' ZoneMinder includes limited support for controllable cameras. A number of sample protocols are included and others can easily be added. If you wish to control your cameras via ZoneMinder then select this option otherwise if you only have static cameras or use other control methods then leave this option off. ','system',0,''),(117,'ZM_OPT_EMAIL','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Should ZoneMinder email you details of events that match corresponding filters',' In ZoneMinder you can create event filters that specify whether events that match certain criteria should have their details emailed to you at a designated email address. This will allow you to be notified of events as soon as they occur and also to quickly view the events directly. This option specifies whether this functionality should be available. The email created with this option can be any size and is intended to be sent to a regular email reader rather than a mobile device. ','mail',0,''),(87,'ZM_OPT_FAST_DELETE','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Delete only event database records for speed',' Normally an event created as the result of an alarm consists of entries in one or more database tables plus the various files associated with it. When deleting events in the browser it can take a long time to remove all of this if your are trying to do a lot of events at once. It is recommended that you set this option which means that the browser client only deletes the key entries in the events table, which means the events will no longer appear in the listing, and leaves the zmaudit daemon to clear up the rest later. Note that this feature is less relevant with modern hardware. Recommend this feature be left off. ','system',0,''),(44,'ZM_OPT_FFMPEG','1','boolean','/usr/bin/ffmpeg','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Is the ffmpeg video encoder/decoder installed',' ZoneMinder can optionally encode a series of video images into an MPEG encoded movie file for viewing, downloading or storage. This option allows you to specify whether you have the ffmpeg tools installed. Note that creating MPEG files can be fairly CPU and disk intensive and is not a required option as events can still be reviewed as video streams without it. ','images',0,''),(146,'ZM_OPT_FRAME_SERVER','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Should analysis farm out the writing of images to disk',' In some circumstances it is possible for a slow disk to take so long writing images to disk that it causes the analysis daemon to fall behind especially during high frame rate events. Setting this option to yes enables a frame server daemon (zmf) which will be sent the images from the analysis daemon and will do the actual writing of images itself freeing up the analysis daemon to get on with other things. Should this transmission fail or other permanent or transient error occur, this function will fall back to the analysis daemon. ','system',0,''),(13,'ZM_OPT_GOOG_RECAPTCHA_SECRETKEY','...Insert your recaptcha secret-key here...','string','...Insert your recaptcha secret-key here...','string','(?^:^(.+)$)',' $1 ','Your recaptcha secret-key',' You need to generate your keys from the Google reCaptcha website. Please refer to https://www.google.com/recaptcha/ for more details. ','system',0,'ZM_OPT_USE_GOOG_RECAPTCHA=1'),(12,'ZM_OPT_GOOG_RECAPTCHA_SITEKEY','...Insert your recaptcha site-key here...','string','...Insert your recaptcha site-key here...','string','(?^:^(.+)$)',' $1 ','Your recaptcha site-key',' You need to generate your keys from the Google reCaptcha website. Please refer to https://www.google.com/recaptcha/ for more details. ','system',0,'ZM_OPT_USE_GOOG_RECAPTCHA=1'),(122,'ZM_OPT_MESSAGE','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Should ZoneMinder message you with details of events that match corresponding filters',' In ZoneMinder you can create event filters that specify whether events that match certain criteria should have their details sent to you at a designated short message email address. This will allow you to be notified of events as soon as they occur. This option specifies whether this functionality should be available. The email created by this option will be brief and is intended to be sent to an SMS gateway or a minimal mail reader such as a mobile device or phone rather than a regular email reader. ','mail',0,''),(37,'ZM_OPT_REMOTE_CAMERAS','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Are you going to use remote/networked cameras',' ZoneMinder can work with both local cameras, ie. those attached physically to your computer and remote or network cameras. If you will be using networked cameras select this option. ','hidden',0,''),(149,'ZM_OPT_TRIGGERS','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Interface external event triggers via socket or device files',' ZoneMinder can interact with external systems which prompt or cancel alarms. This is done via the zmtrigger.pl script. This option indicates whether you want to use these external triggers. Most people will say no here. ','system',0,''),(95,'ZM_OPT_UPLOAD','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Should ZoneMinder support uploading events from filters',' In ZoneMinder you can create event filters that specify whether events that match certain criteria should be uploaded to a remote server for archiving. This option specifies whether this functionality should be available ','upload',0,''),(10,'ZM_OPT_USE_API','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Enable ZoneMinder APIs',' ZoneMinder now features a new API using which 3rd party applications can interact with ZoneMinder data. It is STRONGLY recommended that you enable authentication along with APIs. Note that the APIs return sensitive data like Monitor access details which are configured as JSON objects. Which is why we recommend you enabling authentication, especially if you are exposing your ZM instance on the Internet. ','system',0,''),(3,'ZM_OPT_USE_AUTH','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Authenticate user logins to ZoneMinder',' ZoneMinder can run in two modes. The simplest is an entirely unauthenticated mode where anyone can access ZoneMinder and perform all tasks. This is most suitable for installations where the web server access is limited in other ways. The other mode enables user accounts with varying sets of permissions. Users must login or authenticate to access ZoneMinder and are limited by their defined permissions. ','system',0,''),(11,'ZM_OPT_USE_GOOG_RECAPTCHA','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Add Google reCaptcha to login page',' This option allows you to include a google reCaptcha validation at login. This means in addition to providing a valid usernane and password, you will also have to pass the reCaptcha test. Please note that enabling this option results in the zoneminder login page reach out to google servers for captcha validation. Also please note that enabling this option will break 3rd party clients like zmNinja and zmView as they also need to login to ZoneMinder and they will fail the reCaptcha test. ','system',0,'ZM_OPT_USE_AUTH=1'),(80,'ZM_OPT_X10','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Support interfacing with X10 devices',' If you have an X10 Home Automation setup in your home you can use ZoneMinder to initiate or react to X10 signals if your computer has the appropriate interface controller. This option indicates whether X10 options will be available in the browser client. ','x10',0,''),(73,'ZM_PATH_ARP','','string','','/absolute/path/to/somewhere','(?^:^((?:/[^/]*)+?)/?$)',' $1 ','Path to a supported ARP tool',' The camera probe function uses Address Resolution Protocol in order to find known devices on the network. Optionally supply the full path to \"ip neigh\", \"arp -a\", or any other tool on your system that returns ip/mac address pairs. If this field is left empty, ZoneMinder will search for the command \"arp\" and attempt to use that. ','paths',0,''),(30,'ZM_PATH_CAMBOZOLA','cambozola.jar','string','cambozola.jar','relative/path/to/somewhere','(?^:^((?:[^/].*)?)/?$)',' $1 ','Web path to (optional) cambozola java streaming client',' Cambozola is a handy low fat cheese flavoured Java applet that ZoneMinder uses to view image streams on browsers such as Internet Explorer that don\'t natively support this format. If you use this browser it is highly recommended to install this from http://www.charliemouse.com/code/cambozola/ however if it is not installed still images at a lower refresh rate can still be viewed. Leave this as \'cambozola.jar\' if cambozola is installed in the same directory as the ZoneMinder web client files. ','images',0,'ZM_OPT_CAMBOZOLA=1'),(45,'ZM_PATH_FFMPEG','/usr/bin/ffmpeg','string','','/absolute/path/to/somewhere','(?^:^((?:/[^/]*)+?)/?$)',' $1 ','Path to (optional) ffmpeg mpeg encoder','This path should point to where ffmpeg has been installed.','images',0,'ZM_OPT_FFMPEG=1'),(71,'ZM_PATH_LOGS','/var/log/zm','string','/var/log/zm','/absolute/path/to/somewhere','(?^:^((?:/[^/]*)+?)/?$)',' $1 ','Path to the various logs that the ZoneMinder daemons generate',' There are various daemons that are used by ZoneMinder to perform various tasks. Most generate helpful log files and this is where they go. They can be deleted if not required for debugging. ','paths',0,''),(69,'ZM_PATH_MAP','/dev/shm','string','/dev/shm','/absolute/path/to/somewhere','(?^:^((?:/[^/]*)+?)/?$)',' $1 ','Path to the mapped memory files that that ZoneMinder can use',' ZoneMinder has historically used IPC shared memory for shared data between processes. This has it\'s advantages and limitations. This version of ZoneMinder can use an alternate method, mapped memory, instead with can be enabled with the --enable--mmap directive to configure. This requires less system configuration and is generally more flexible. However it requires each shared data segment to map onto a filesystem file. This option indicates where those mapped files go. You should ensure that this location has sufficient space for these files and for the best performance it should be a tmpfs file system or ramdisk otherwise disk access may render this method slower than the regular shared memory one. ','paths',0,''),(70,'ZM_PATH_SOCKS','/var/run/zm','string','/var/run/zm','/absolute/path/to/somewhere','(?^:^((?:/[^/]*)+?)/?$)',' $1 ','Path to the various Unix domain socket files that ZoneMinder uses',' ZoneMinder generally uses Unix domain sockets where possible. This reduces the need for port assignments and prevents external applications from possibly compromising the daemons. However each Unix socket requires a .sock file to be created. This option indicates where those socket files go. ','paths',0,''),(72,'ZM_PATH_SWAP','/tmp/zm','string','/tmp/zm','/absolute/path/to/somewhere','(?^:^((?:/[^/]*)+?)/?$)',' $1 ','Path to location for temporary swap images used in streaming',' Buffered playback requires temporary swap images to be stored for each instance of the streaming daemons. This option determines where these images will be stored. The images will actually be stored in sub directories beneath this location and will be automatically cleaned up after a period of time. ','paths',0,''),(18,'ZM_PATH_ZMS','/zm/cgi-bin/nph-zms','string','/zm/cgi-bin/nph-zms','relative/path/to/somewhere','(?^:^((?:[^/].*)?)/?$)',' $1 ','Web path to zms streaming server',' The ZoneMinder streaming server is required to send streamed images to your browser. It will be installed into the cgi-bin path given at configuration time. This option determines what the web path to the server is rather than the local path on your machine. Ordinarily the streaming server runs in parser-header mode however if you experience problems with streaming you can change this to non-parsed-header (nph) mode by changing \'zms\' to \'nph-zms\'. ','paths',0,''),(28,'ZM_RAND_STREAM','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Add a random string to prevent caching of streams',' Some browsers can cache the streams used by ZoneMinder. In order to prevent his a harmless random string can be appended to the url to make each invocation of the stream appear unique. ','images',0,''),(67,'ZM_RECORD_DIAG_IMAGES','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Record intermediate alarm diagnostic images, can be very slow',' In addition to recording event statistics you can also record the intermediate diagnostic images that display the results of the various checks and processing that occur when trying to determine if an alarm event has taken place. There are several of these images generated for each frame and zone for each alarm or alert frame so this can have a massive impact on performance. Only switch this setting on for debug or analysis purposes and remember to switch it off again once no longer required. ','logging',0,''),(66,'ZM_RECORD_EVENT_STATS','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Record event statistical information, switch off if too slow',' This version of ZoneMinder records detailed information about events in the Stats table. This can help in profiling what the optimum settings are for Zones though this is tricky at present. However in future releases this will be done more easily and intuitively, especially with a large sample of events. The default option of \'yes\' allows this information to be collected now in readiness for this but if you are concerned about performance you can switch this off in which case no Stats information will be saved. ','logging',0,''),(31,'ZM_RELOAD_CAMBOZOLA','0','integer','0','integer','(?^:^(d+)$)',' $1 ','After how many seconds should Cambozola be reloaded in live view',' Cambozola allows for the viewing of streaming MJPEG however it caches the entire stream into cache space on the computer, setting this to a number > 0 will cause it to automatically reload after that many seconds to avoid filling up a hard drive. ','images',0,''),(134,'ZM_RUN_AUDIT','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Run zmaudit to check data consistency',' The zmaudit daemon exists to check that the saved information in the database and on the filesystem match and are consistent with each other. If an error occurs or if you are using \'fast deletes\' it may be that database records are deleted but files remain. In this case, and similar, zmaudit will remove redundant information to synchronise the two data stores. This option controls whether zmaudit is run in the background and performs these checks and fixes continuously. This is recommended for most systems however if you have a very large number of events the process of scanning the database and filesystem may take a long time and impact performance. In this case you may prefer to not have zmaudit running unconditionally and schedule occasional checks at other, more convenient, times. ','system',0,''),(155,'ZM_SHM_KEY','0x7a6d0000','hexadecimal','0x7a6d0000','hexadecimal','(?^:^(?:0x)?([0-9a-f]{1,8})$)',' \"0x\".$1 ','Shared memory root key to use',' ZoneMinder uses shared memory to speed up communication between modules. To identify the right area to use shared memory keys are used. This option controls what the base key is, each monitor will have it\'s Id or\'ed with this to get the actual key used. You will not normally need to change this value unless it clashes with another instance of ZoneMinder on the same machine. Only the first four hex digits are used, the lower four will be masked out and ignored. ','system',0,''),(90,'ZM_SIGNAL_CHECK_POINTS','10','integer','10','integer','(?^:^(d+)$)',' $1 ','How many points in a captured image to check for signal loss',' For locally attached video cameras ZoneMinder can check for signal loss by looking at a number of random points on each captured image. If all of these points are set to the same fixed colour then the camera is assumed to have lost signal. When this happens any open events are closed and a short one frame signal loss event is generated, as is another when the signal returns. This option defines how many points on each image to check. Note that this is a maximum, any points found to not have the check colour will abort any further checks so in most cases on a couple of points will actually be checked. Network and file based cameras are never checked. ','config',0,''),(0,'ZM_SKIN_DEFAULT','classic','string','classic','string','(?^:^(.+)$)',' $1 ','Default skin used by web interface',' ZoneMinder allows the use of many different web interfaces. This option allows you to set the default skin used by the website. Users can change their skin later, this merely sets the default. ','system',0,''),(216,'ZM_SSMTP_MAIL','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ',' Use a SSMTP mail server if available. NEW_MAIL_MODULES must be enabled ',' SSMTP is a lightweight and efficient method to send email. The SSMTP application is not installed by default. NEW_MAIL_MODULES must also be enabled. Please visit: http://www.zoneminder.com/wiki/index.php/How_to_get_ssmtp_working_with_Zoneminder for setup and configuration help. ','mail',0,'ZM_OPT_EMAIL=1;ZM_OPT_MESSAGE=1;ZM_NEW_MAIL_MODULES=1'),(217,'ZM_SSMTP_PATH','','string','','string','(?^:^(.+)$)',' $1 ','SSMTP executable path',' Recommend setting the path to the SSMTP application. If path is not defined. Zoneminder will try to determine the path via shell command. Example path: /usr/sbin/ssmtp. ','mail',0,'ZM_SSMTP_MAIL=1'),(88,'ZM_STRICT_VIDEO_CONFIG','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Allow errors in setting video config to be fatal',' With some video devices errors can be reported in setting the various video attributes when in fact the operation was successful. Switching this option off will still allow these errors to be reported but will not cause them to kill the video capture daemon. Note however that doing this will cause all errors to be ignored including those which are genuine and which may cause the video capture to not function correctly. Use this option with caution. ','config',0,''),(151,'ZM_TELEMETRY_DATA','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Send usage information to ZoneMinder',' Enable collection of usage information of the local system and send it to the ZoneMinder development team. This data will be used to determine things like who and where our customers are, how big their systems are, the underlying hardware and operating system, etc. This is being done for the sole purpoase of creating a better product for our target audience. This script is intended to be completely transparent to the end user, and can be disabled from the web console under Options. ','system',0,''),(153,'ZM_TELEMETRY_LAST_UPLOAD','1510744403','integer','','integer','(?^:^(d+)$)',' $1 ','When the last ZoneMinder telemetry upload ocurred','','dynamic',1,''),(152,'ZM_TELEMETRY_UUID','fece6a85-c9f5-11e7-91a8-484520426ad0','string','','string','(?^:^(.+)$)',' $1 ','Unique identifier for ZoneMinder telemetry',' This variable is auto-generated once by the system and is used to uniquely identify it among all other ZoneMinder systems in existence. ','dynamic',0,''),(32,'ZM_TIMESTAMP_ON_CAPTURE','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Timestamp images as soon as they are captured',' ZoneMinder can add a timestamp to images in two ways. The default method, when this option is set, is that each image is timestamped immediately when captured and so the image held in memory is marked right away. The second method does not timestamp the images until they are either saved as part of an event or accessed over the web. The timestamp used in both methods will contain the same time as this is preserved along with the image. The first method ensures that an image is timestamped regardless of any other circumstances but will result in all images being timestamped even those never saved or viewed. The second method necessitates that saved images are copied before being saved otherwise two timestamps perhaps at different scales may be applied. This has the (perhaps) desirable side effect that the timestamp is always applied at the same resolution so an image that has scaling applied will still have a legible and correctly scaled timestamp. ','config',0,''),(154,'ZM_UPDATE_CHECK_PROXY','','string','','string','(?^:^(.+)$)',' $1 ','Proxy url if required to access zoneminder.com',' If you use a proxy to access the internet then ZoneMinder needs to know so it can access zoneminder.com to check for updates. If you do use a proxy enter the full proxy url here in the form of http://:/ ','system',0,''),(98,'ZM_UPLOAD_ARCH_ANALYSE','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Include the analysis files in the archive',' When the archive files are created they can contain either just the captured frames or both the captured frames and, for frames that caused an alarm, the analysed image with the changed area highlighted. This option controls files are included. Only include analysed frames if you have a high bandwidth connection to the remote server or if you need help in figuring out what caused an alarm in the first place as archives with these files in can be considerably larger. ','upload',0,'ZM_OPT_UPLOAD=1'),(97,'ZM_UPLOAD_ARCH_COMPRESS','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Should archive files be compressed',' When the archive files are created they can be compressed. However in general since the images are compressed already this saves only a minimal amount of space versus utilising more CPU in their creation. Only enable if you have CPU to waste and are limited in disk space on your remote server or bandwidth. ','upload',0,'ZM_OPT_UPLOAD=1'),(96,'ZM_UPLOAD_ARCH_FORMAT','tar','string','tar','tar|zip','(?^i:^([tz]))',' $1 =~ /^t/ ? \"tar\" : \"zip\" ','What format the uploaded events should be created in.',' Uploaded events may be stored in either .tar or .zip format, this option specifies which. Note that to use this you will need to have the Archive::Tar and/or Archive::Zip perl modules installed. ','upload',0,'ZM_OPT_UPLOAD=1'),(116,'ZM_UPLOAD_DEBUG','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Switch upload debugging on',' You can use filters to instruct ZoneMinder to upload events to a remote server. If you are having (or expecting) troubles with uploading events then setting this to \'yes\' permits additional information to be generated by the underlying transfer modules and included in the logs. ','upload',0,'ZM_OPT_UPLOAD=1'),(115,'ZM_UPLOAD_FTP_DEBUG','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Switch ftp debugging on',' You can use filters to instruct ZoneMinder to upload events to a remote ftp server. If you are having (or expecting) troubles with uploading events then setting this to \'yes\' permits additional information to be included in the zmfilter log file. ','hidden',0,'ZM_OPT_UPLOAD=1'),(100,'ZM_UPLOAD_FTP_HOST','','string','','host.your.domain','(?^:^([a-zA-Z0-9_.-]+)$)',' $1 ','The remote server to upload to',' You can use filters to instruct ZoneMinder to upload events to a remote ftp server. This option indicates the name, or ip address, of the server to use. ','hidden',0,'ZM_OPT_UPLOAD=1'),(107,'ZM_UPLOAD_FTP_LOC_DIR','/tmp/zm','string','/tmp/zm','/absolute/path/to/somewhere','(?^:^((?:/[^/]*)+?)/?$)',' $1 ','The local directory in which to create upload files',' You can use filters to instruct ZoneMinder to upload events to a remote ftp server. This option indicates the local directory that ZoneMinder should use for temporary upload files. These are files that are created from events, uploaded and then deleted. ','hidden',0,'ZM_OPT_UPLOAD=1'),(105,'ZM_UPLOAD_FTP_PASS','','string','','string','(?^:^(.+)$)',' $1 ','Your ftp password',' You can use filters to instruct ZoneMinder to upload events to a remote ftp server. This option indicates the password that ZoneMinder should use to log in for ftp transfer. ','hidden',0,'ZM_OPT_UPLOAD=1'),(114,'ZM_UPLOAD_FTP_PASSIVE','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Use passive ftp when uploading',' If your computer is behind a firewall or proxy you may need to set FTP to passive mode. In fact for simple transfers it makes little sense to do otherwise anyway but you can set this to \'No\' if you wish. ','upload',0,'ZM_OPT_UPLOAD=1'),(109,'ZM_UPLOAD_FTP_REM_DIR','','string','','relative/path/to/somewhere','(?^:^((?:[^/].*)?)/?$)',' $1 ','The remote directory to upload to',' You can use filters to instruct ZoneMinder to upload events to a remote ftp server. This option indicates the remote directory that ZoneMinder should use to upload event files to. ','hidden',0,'ZM_OPT_UPLOAD=1'),(111,'ZM_UPLOAD_FTP_TIMEOUT','120','integer','120','integer','(?^:^(d+)$)',' $1 ','How long to allow the transfer to take for each file',' You can use filters to instruct ZoneMinder to upload events to a remote ftp server. This option indicates the maximum ftp inactivity timeout (in seconds) that should be tolerated before ZoneMinder determines that the transfer has failed and closes down the connection. ','hidden',0,'ZM_OPT_UPLOAD=1'),(103,'ZM_UPLOAD_FTP_USER','','string','','alphanumeric','(?^:^([a-zA-Z0-9-_]+)$)',' $1 ','Your ftp username',' You can use filters to instruct ZoneMinder to upload events to a remote ftp server. This option indicates the username that ZoneMinder should use to log in for ftp transfer. ','hidden',0,'ZM_OPT_UPLOAD=1'),(101,'ZM_UPLOAD_HOST','','string','','host.your.domain','(?^:^([a-zA-Z0-9_.-]+)$)',' $1 ','The remote server to upload events to',' You can use filters to instruct ZoneMinder to upload events to a remote server. This option indicates the name, or ip address, of the server to use. ','upload',0,'ZM_OPT_UPLOAD=1'),(108,'ZM_UPLOAD_LOC_DIR','/tmp/zm','string','/tmp/zm','/absolute/path/to/somewhere','(?^:^((?:/[^/]*)+?)/?$)',' $1 ','The local directory in which to create upload files',' You can use filters to instruct ZoneMinder to upload events to a remote server. This option indicates the local directory that ZoneMinder should use for temporary upload files. These are files that are created from events, uploaded and then deleted. ','upload',0,'ZM_OPT_UPLOAD=1'),(106,'ZM_UPLOAD_PASS','','string','','string','(?^:^(.+)$)',' $1 ','Remote server password',' You can use filters to instruct ZoneMinder to upload events to a remote server. This option indicates the password that ZoneMinder should use to log in for transfer. If you are using certificate based logins for SFTP servers you can leave this option blank. ','upload',0,'ZM_OPT_UPLOAD=1'),(102,'ZM_UPLOAD_PORT','','integer','','integer','(?^:^(d+)$)',' $1 ','The port on the remote upload server, if not the default (SFTP only)',' You can use filters to instruct ZoneMinder to upload events to a remote server. If you are using the SFTP protocol then this option allows you to specify a particular port to use for connection. If this option is left blank then the default, port 22, is used. This option is ignored for FTP uploads. ','upload',0,'ZM_OPT_UPLOAD=1'),(99,'ZM_UPLOAD_PROTOCOL','ftp','string','ftp','ftp|sftp','(?^i:^([tz]))',' $1 =~ /^f/ ? \"ftp\" : \"sftp\" ','What protocol to use to upload events',' ZoneMinder can upload events to a remote server using either FTP or SFTP. Regular FTP is widely supported but not necessarily very secure whereas SFTP (Secure FTP) runs over an ssh connection and so is encrypted and uses regular ssh ports. Note that to use this you will need to have the appropriate perl module, either Net::FTP or Net::SFTP installed depending on your choice. ','upload',0,'ZM_OPT_UPLOAD=1'),(110,'ZM_UPLOAD_REM_DIR','','string','','relative/path/to/somewhere','(?^:^((?:[^/].*)?)/?$)',' $1 ','The remote directory to upload to',' You can use filters to instruct ZoneMinder to upload events to a remote server. This option indicates the remote directory that ZoneMinder should use to upload event files to. ','upload',0,'ZM_OPT_UPLOAD=1'),(113,'ZM_UPLOAD_STRICT','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Require strict host key checking for SFTP uploads',' You can require SFTP uploads to verify the host key of the remote server for protection against man-in-the-middle attacks. You will need to add the server\'s key to the known_hosts file. On most systems, this will be ~/.ssh/known_hosts, where ~ is the home directory of the web server running ZoneMinder. ','upload',0,'ZM_OPT_UPLOAD=1'),(112,'ZM_UPLOAD_TIMEOUT','120','integer','120','integer','(?^:^(d+)$)',' $1 ','How long to allow the transfer to take for each file',' You can use filters to instruct ZoneMinder to upload events to a remote server. This option indicates the maximum inactivity timeout (in seconds) that should be tolerated before ZoneMinder determines that the transfer has failed and closes down the connection. ','upload',0,'ZM_OPT_UPLOAD=1'),(104,'ZM_UPLOAD_USER','','string','','alphanumeric','(?^:^([a-zA-Z0-9-_]+)$)',' $1 ','Remote server username',' You can use filters to instruct ZoneMinder to upload events to a remote server. This option indicates the username that ZoneMinder should use to log in for transfer. ','upload',0,'ZM_OPT_UPLOAD=1'),(130,'ZM_URL','','string','','http://host.your.domain/','(?^:^(?:http://)?(.+)$)',' \"http://\".$1 ','The URL of your ZoneMinder installation',' The emails or messages that will be sent to you informing you of events can include a link to the events themselves for easy viewing. If you intend to use this feature then set this option to the url of your installation as it would appear from where you read your email, e.g. http://host.your.domain/zm.php. ','mail',0,'ZM_OPT_EMAIL=1;ZM_OPT_MESSAGE=1'),(15,'ZM_USE_DEEP_STORAGE','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Use a deep filesystem hierarchy for events',' This option is now the default for new ZoneMinder systems and should not be changed. Previous versions of ZoneMinder stored all events for a monitor under one folder. Enabling USE_DEEP_STORAGE causes ZoneMinder to store events under a folder structure that follows year/month/day/hour/min/second. Storing events this way avoids the limitation of storing more than 32k files in a single folder inherent in some filesystems. It is important to note that you cannot simply change this option. You must stop zoneminder, enable USE_DEEP_STORAGE, and then run \"sudo zmupdate.pl --migrate-events\". FAILURE TO DO SO WILL RESULT IN LOSS OF YOUR DATA! Consult the ZoneMinder WiKi for further details. ','hidden',0,''),(145,'ZM_USER_SELF_EDIT','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Allow unprivileged users to change their details',' Ordinarily only users with system edit privilege are able to change users details. Switching this option on allows ordinary users to change their passwords and their language settings ','config',0,''),(91,'ZM_V4L_MULTI_BUFFER','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Use more than one buffer for Video 4 Linux devices',' Performance when using Video 4 Linux devices is usually best if multiple buffers are used allowing the next image to be captured while the previous one is being processed. If you have multiple devices on a card sharing one input that requires switching then this approach can sometimes cause frames from one source to be mixed up with frames from another. Switching this option off prevents multi buffering resulting in slower but more stable image capture. This option is ignored for non-local cameras or if only one input is present on a capture chip. This option addresses a similar problem to the ZM_CAPTURES_PER_FRAME option and you should normally change the value of only one of the options at a time. If you have different capture cards that need different values you can ovveride them in each individual monitor on the source page. ','config',0,''),(132,'ZM_WATCH_CHECK_INTERVAL','10','integer','10','integer','(?^:^(d+)$)',' $1 ','How often to check the capture daemons have not locked up',' The zmwatch daemon checks the image capture performance of the capture daemons to ensure that they have not locked up (rarely a sync error may occur which blocks indefinitely). This option determines how often the daemons are checked. ','system',0,''),(133,'ZM_WATCH_MAX_DELAY','5','decimal','5','decimal','(?^:^(d+(?:.d+)?)$)',' $1 ','The maximum delay allowed since the last captured image',' The zmwatch daemon checks the image capture performance of the capture daemons to ensure that they have not locked up (rarely a sync error may occur which blocks indefinitely). This option determines the maximum delay to allow since the last captured frame. The daemon will be restarted if it has not captured any images after this period though the actual restart may take slightly longer in conjunction with the check interval value above. ','system',0,''),(85,'ZM_WEB_ALARM_SOUND','','string','','filename','(?^:^([a-zA-Z0-9-_.]+)$)',' $1 ','The sound to play on alarm, put this in the sounds directory',' You can specify a sound file to play if an alarm occurs whilst you are watching a live monitor stream. So long as your browser understands the format it does not need to be any particular type. This file should be placed in the sounds directory defined earlier. ','web',0,'ZM_WEB_SOUND_ON_ALARM=1'),(86,'ZM_WEB_COMPACT_MONTAGE','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Compact the montage view by removing extra detail',' The montage view shows the output of all of your active monitors in one window. This include a small menu and status information for each one. This can increase the web traffic and make the window larger than may be desired. Setting this option on removes all this extraneous information and just displays the images. ','web',0,''),(75,'ZM_WEB_CONSOLE_BANNER','','string','','string','(?^:^(.+)$)',' $1 ','Arbitrary text message near the top of the console',' Allows the administrator to place an arbitrary text message near the top of the web console. This is useful for the developers to display a message which indicates the running instance of ZoneMinder is a development snapshot, but it can also be used for any other purpose as well. ','web',0,''),(76,'ZM_WEB_EVENT_DISK_SPACE','','string','','string','(?^:^(.+)$)',' $1 ','Whether to show disk space used by each event.',' Adds another column to the listing of events showing the disk space used by the event. This will impart a small overhead as it will call du on the event directory. In practice this overhead is fairly small but may be noticeable on IO-constrained systems. ','web',0,''),(157,'ZM_WEB_EVENT_SORT_FIELD','DateTime','string','DateTime','Id|Name|Cause|MonitorName|DateTime|Length|Frames|AlarmFrames|TotScore|AvgScore|MaxScore','(?^:.)',' $1 ','Default field the event lists are sorted by',' Events in lists can be initially ordered in any way you want. This option controls what field is used to sort them. You can modify this ordering from filters or by clicking on headings in the lists themselves. Bear in mind however that the \'Prev\' and \'Next\' links, when scrolling through events, relate to the ordering in the lists and so not always to time based ordering. ','web',0,''),(158,'ZM_WEB_EVENT_SORT_ORDER','asc','string','asc','asc|desc','(?^i:^([ad]))',' $1 =~ /^a/i ? \"asc\" : \"desc\" ','Default order the event lists are sorted by',' Events in lists can be initially ordered in any way you want. This option controls what order (ascending or descending) is used to sort them. You can modify this ordering from filters or by clicking on headings in the lists themselves. Bear in mind however that the \'Prev\' and \'Next\' links, when scrolling through events, relate to the ordering in the lists and so not always to time based ordering. ','web',0,''),(159,'ZM_WEB_EVENTS_PER_PAGE','25','integer','25','integer','(?^:^(d+)$)',' $1 ','How many events to list per page in paged mode',' In the event list view you can either list all events or just a page at a time. This option controls how many events are listed per page in paged mode and how often to repeat the column headers in non-paged mode. ','web',0,''),(178,'ZM_WEB_H_AJAX_TIMEOUT','3000','integer','3000','integer','(?^:^(d+)$)',' $1 ','How long to wait for Ajax request responses (ms)',' The newer versions of the live feed and event views use Ajax to request information from the server and populate the views dynamically. This option allows you to specify a timeout if required after which requests are abandoned. A timeout may be necessary if requests would overwise hang such as on a slow connection. This would tend to consume a lot of browser memory and make the interface unresponsive. Ordinarily no requests should timeout so this setting should be set to a value greater than the slowest expected response. This value is in milliseconds but if set to zero then no timeout will be used. ','highband',0,''),(169,'ZM_WEB_H_CAN_STREAM','auto','string','auto','auto|yes|no','(?^i:^([ayn]))',' ($1 =~ /^y/) ? \"yes\" : ($1 =~ /^n/ ? \"no\" : \"auto\" ) ','Override the automatic detection of browser streaming capability',' If you know that your browser can handle image streams of the type \'multipart/x-mixed-replace\' but ZoneMinder does not detect this correctly you can set this option to ensure that the stream is delivered with or without the use of the Cambozola plugin. Selecting \'yes\' will tell ZoneMinder that your browser can handle the streams natively, \'no\' means that it can\'t and so the plugin will be used while \'auto\' lets ZoneMinder decide. ','highband',0,''),(172,'ZM_WEB_H_DEFAULT_RATE','100','integer','100','25|50|100|150|200|400|1000|2500|5000|10000','(?^:^(d+)$)',' $1 ','What the default replay rate factor applied to \'event\' views is (%)',' Normally ZoneMinder will display \'event\' streams at their native rate, i.e. as close to real-time as possible. However if you have long events it is often convenient to replay them at a faster rate for review. This option lets you specify what the default replay rate will be. It is expressed as a percentage so 100 is normal rate, 200 is double speed etc. ','highband',0,''),(171,'ZM_WEB_H_DEFAULT_SCALE','100','integer','100','25|33|50|75|100|150|200|300|400','(?^:^(d+)$)',' $1 ','What the default scaling factor applied to \'live\' or \'event\' views is (%)',' Normally ZoneMinder will display \'live\' or \'event\' streams in their native size. However if you have monitors with large dimensions or a slow link you may prefer to reduce this size, alternatively for small monitors you can enlarge it. This options lets you specify what the default scaling factor will be. It is expressed as a percentage so 100 is normal size, 200 is double size etc. ','highband',0,''),(176,'ZM_WEB_H_EVENTS_VIEW','events','string','events','events|timeline','(?^i:^([lt]))',' $1 =~ /^e/ ? \"events\" : \"timeline\" ','What the default view of multiple events should be.',' Stored events can be viewed in either an events list format or in a timeline based one. This option sets the default view that will be used. Choosing one view here does not prevent the other view being used as it will always be selectable from whichever view is currently being used. ','highband',0,''),(165,'ZM_WEB_H_REFRESH_CYCLE','10','integer','10','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the cycle watch window swaps to the next monitor',' The cycle watch window is a method of continuously cycling between images from all of your monitors. This option determines how often to refresh with a new image. ','highband',0,''),(168,'ZM_WEB_H_REFRESH_EVENTS','5','integer','5','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the event listing is refreshed in the watch window',' The monitor window is actually made from several frames. The lower framme contains a listing of the last few events for easy access. This option determines how often this is refreshed. ','highband',0,''),(166,'ZM_WEB_H_REFRESH_IMAGE','3','integer','3','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the watched image is refreshed (if not streaming)',' The live images from a monitor can be viewed in either streamed or stills mode. This option determines how often a stills image is refreshed, it has no effect if streaming is selected. ','highband',0,''),(164,'ZM_WEB_H_REFRESH_MAIN','60','integer','60','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the main console window should refresh itself',' The main console window lists a general status and the event totals for all monitors. This is not a trivial task and should not be repeated too frequently or it may affect the performance of the rest of the system. ','highband',0,''),(167,'ZM_WEB_H_REFRESH_STATUS','1','integer','1','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the status refreshes itself in the watch window',' The monitor window is actually made from several frames. The one in the middle merely contains a monitor status which needs to refresh fairly frequently to give a true indication. This option determines that frequency. ','highband',0,''),(175,'ZM_WEB_H_SCALE_THUMBS','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Scale thumbnails in events, bandwidth versus cpu in rescaling',' If unset, this option sends the whole image to the browser which resizes it in the window. If set the image is scaled down on the server before sending a reduced size image to the browser to conserve bandwidth at the cost of cpu on the server. Note that ZM can only perform the resizing if the appropriate PHP graphics functionality is installed. This is usually available in the php-gd package. ','highband',0,''),(177,'ZM_WEB_H_SHOW_PROGRESS','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Show the progress of replay in event view.',' When viewing events an event navigation panel and progress bar is shown below the event itself. This allows you to jump to specific points in the event, but can can also dynamically update to display the current progress of the event replay itself. This progress is calculated from the actual event duration and is not directly linked to the replay itself, so on limited bandwidth connections may be out of step with the replay. This option allows you to turn off the progress display, whilst still keeping the navigation aspect, where bandwidth prevents it functioning effectively. ','highband',0,''),(170,'ZM_WEB_H_STREAM_METHOD','jpeg','string','jpeg','mpeg|jpeg','(?^i:^([mj]))',' $1 =~ /^m/ ? \"mpeg\" : \"jpeg\" ','Which method should be used to send video streams to your browser.',' ZoneMinder can be configured to use either mpeg encoded video or a series or still jpeg images when sending video streams. This option defines which is used. If you choose mpeg you should ensure that you have the appropriate plugins available on your browser whereas choosing jpeg will work natively on Mozilla and related browsers and with a Java applet on Internet Explorer ','highband',0,''),(173,'ZM_WEB_H_VIDEO_BITRATE','150000','integer','150000','integer','(?^:^(d+)$)',' $1 ','What the bitrate of the video encoded stream should be set to',' When encoding real video via the ffmpeg library a bit rate can be specified which roughly corresponds to the available bandwidth used for the stream. This setting effectively corresponds to a \'quality\' setting for the video. A low value will result in a blocky image whereas a high value will produce a clearer view. Note that this setting does not control the frame rate of the video however the quality of the video produced is affected both by this setting and the frame rate that the video is produced at. A higher frame rate at a particular bit rate result in individual frames being at a lower quality. ','highband',0,''),(174,'ZM_WEB_H_VIDEO_MAXFPS','30','integer','30','integer','(?^:^(d+)$)',' $1 ','What the maximum frame rate for streamed video should be',' When using streamed video the main control is the bitrate which determines how much data can be transmitted. However a lower bitrate at high frame rates results in a lower quality image. This option allows you to limit the maximum frame rate to ensure that video quality is maintained. An additional advantage is that encoding video at high frame rates is a processor intensive task when for the most part a very high frame rate offers little perceptible improvement over one that has a more manageable resource requirement. Note, this option is implemented as a cap beyond which binary reduction takes place. So if you have a device capturing at 15fps and set this option to 10fps then the video is not produced at 10fps, but rather at 7.5fps (15 divided by 2) as the final frame rate must be the original divided by a power of 2. ','highband',0,''),(78,'ZM_WEB_ID_ON_CONSOLE','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Should the console list the monitor id',' Some find it useful to have the id always visible on the console. This option will add a column listing it. ','web',0,''),(208,'ZM_WEB_L_AJAX_TIMEOUT','10000','integer','10000','integer','(?^:^(d+)$)',' $1 ','How long to wait for Ajax request responses (ms)',' The newer versions of the live feed and event views use Ajax to request information from the server and populate the views dynamically. This option allows you to specify a timeout if required after which requests are abandoned. A timeout may be necessary if requests would overwise hang such as on a slow connection. This would tend to consume a lot of browser memory and make the interface unresponsive. Ordinarily no requests should timeout so this setting should be set to a value greater than the slowest expected response. This value is in milliseconds but if set to zero then no timeout will be used. ','lowband',0,''),(199,'ZM_WEB_L_CAN_STREAM','auto','string','auto','auto|yes|no','(?^i:^([ayn]))',' ($1 =~ /^y/) ? \"yes\" : ($1 =~ /^n/ ? \"no\" : \"auto\" ) ','Override the automatic detection of browser streaming capability',' If you know that your browser can handle image streams of the type \'multipart/x-mixed-replace\' but ZoneMinder does not detect this correctly you can set this option to ensure that the stream is delivered with or without the use of the Cambozola plugin. Selecting \'yes\' will tell ZoneMinder that your browser can handle the streams natively, \'no\' means that it can\'t and so the plugin will be used while \'auto\' lets ZoneMinder decide. ','lowband',0,''),(202,'ZM_WEB_L_DEFAULT_RATE','100','integer','100','25|50|100|150|200|400|1000|2500|5000|10000','(?^:^(d+)$)',' $1 ','What the default replay rate factor applied to \'event\' views is (%)',' Normally ZoneMinder will display \'event\' streams at their native rate, i.e. as close to real-time as possible. However if you have long events it is often convenient to replay them at a faster rate for review. This option lets you specify what the default replay rate will be. It is expressed as a percentage so 100 is normal rate, 200 is double speed etc. ','lowband',0,''),(201,'ZM_WEB_L_DEFAULT_SCALE','100','integer','100','25|33|50|75|100|150|200|300|400','(?^:^(d+)$)',' $1 ','What the default scaling factor applied to \'live\' or \'event\' views is (%)',' Normally ZoneMinder will display \'live\' or \'event\' streams in their native size. However if you have monitors with large dimensions or a slow link you may prefer to reduce this size, alternatively for small monitors you can enlarge it. This options lets you specify what the default scaling factor will be. It is expressed as a percentage so 100 is normal size, 200 is double size etc. ','lowband',0,''),(206,'ZM_WEB_L_EVENTS_VIEW','events','string','events','events|timeline','(?^i:^([lt]))',' $1 =~ /^e/ ? \"events\" : \"timeline\" ','What the default view of multiple events should be.',' Stored events can be viewed in either an events list format or in a timeline based one. This option sets the default view that will be used. Choosing one view here does not prevent the other view being used as it will always be selectable from whichever view is currently being used. ','lowband',0,''),(195,'ZM_WEB_L_REFRESH_CYCLE','30','integer','30','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the cycle watch window swaps to the next monitor',' The cycle watch window is a method of continuously cycling between images from all of your monitors. This option determines how often to refresh with a new image. ','lowband',0,''),(198,'ZM_WEB_L_REFRESH_EVENTS','180','integer','180','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the event listing is refreshed in the watch window',' The monitor window is actually made from several frames. The lower framme contains a listing of the last few events for easy access. This option determines how often this is refreshed. ','lowband',0,''),(196,'ZM_WEB_L_REFRESH_IMAGE','15','integer','15','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the watched image is refreshed (if not streaming)',' The live images from a monitor can be viewed in either streamed or stills mode. This option determines how often a stills image is refreshed, it has no effect if streaming is selected. ','lowband',0,''),(194,'ZM_WEB_L_REFRESH_MAIN','300','integer','300','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the main console window should refresh itself',' The main console window lists a general status and the event totals for all monitors. This is not a trivial task and should not be repeated too frequently or it may affect the performance of the rest of the system. ','lowband',0,''),(197,'ZM_WEB_L_REFRESH_STATUS','10','integer','10','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the status refreshes itself in the watch window',' The monitor window is actually made from several frames. The one in the middle merely contains a monitor status which needs to refresh fairly frequently to give a true indication. This option determines that frequency. ','lowband',0,''),(205,'ZM_WEB_L_SCALE_THUMBS','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Scale thumbnails in events, bandwidth versus cpu in rescaling',' If unset, this option sends the whole image to the browser which resizes it in the window. If set the image is scaled down on the server before sending a reduced size image to the browser to conserve bandwidth at the cost of cpu on the server. Note that ZM can only perform the resizing if the appropriate PHP graphics functionality is installed. This is usually available in the php-gd package. ','lowband',0,''),(207,'ZM_WEB_L_SHOW_PROGRESS','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Show the progress of replay in event view.',' When viewing events an event navigation panel and progress bar is shown below the event itself. This allows you to jump to specific points in the event, but can can also dynamically update to display the current progress of the event replay itself. This progress is calculated from the actual event duration and is not directly linked to the replay itself, so on limited bandwidth connections may be out of step with the replay. This option allows you to turn off the progress display, whilst still keeping the navigation aspect, where bandwidth prevents it functioning effectively. ','lowband',0,''),(200,'ZM_WEB_L_STREAM_METHOD','jpeg','string','jpeg','mpeg|jpeg','(?^i:^([mj]))',' $1 =~ /^m/ ? \"mpeg\" : \"jpeg\" ','Which method should be used to send video streams to your browser.',' ZoneMinder can be configured to use either mpeg encoded video or a series or still jpeg images when sending video streams. This option defines which is used. If you choose mpeg you should ensure that you have the appropriate plugins available on your browser whereas choosing jpeg will work natively on Mozilla and related browsers and with a Java applet on Internet Explorer ','lowband',0,''),(203,'ZM_WEB_L_VIDEO_BITRATE','25000','integer','25000','integer','(?^:^(d+)$)',' $1 ','What the bitrate of the video encoded stream should be set to',' When encoding real video via the ffmpeg library a bit rate can be specified which roughly corresponds to the available bandwidth used for the stream. This setting effectively corresponds to a \'quality\' setting for the video. A low value will result in a blocky image whereas a high value will produce a clearer view. Note that this setting does not control the frame rate of the video however the quality of the video produced is affected both by this setting and the frame rate that the video is produced at. A higher frame rate at a particular bit rate result in individual frames being at a lower quality. ','lowband',0,''),(204,'ZM_WEB_L_VIDEO_MAXFPS','5','integer','5','integer','(?^:^(d+)$)',' $1 ','What the maximum frame rate for streamed video should be',' When using streamed video the main control is the bitrate which determines how much data can be transmitted. However a lower bitrate at high frame rates results in a lower quality image. This option allows you to limit the maximum frame rate to ensure that video quality is maintained. An additional advantage is that encoding video at high frame rates is a processor intensive task when for the most part a very high frame rate offers little perceptible improvement over one that has a more manageable resource requirement. Note, this option is implemented as a cap beyond which binary reduction takes place. So if you have a device capturing at 15fps and set this option to 10fps then the video is not produced at 10fps, but rather at 7.5fps (15 divided by 2) as the final frame rate must be the original divided by a power of 2. ','lowband',0,''),(162,'ZM_WEB_LIST_THUMB_HEIGHT','0','integer','0','integer','(?^:^(d+)$)',' $1 ','The height of the thumbnails that appear in the event lists',' This options controls the height of the thumbnail images that appear in the event lists. It should be fairly small to fit in with the rest of the table. If you prefer you can specify a width instead in the previous option but you should only use one of the width or height and the other option should be set to zero. If both width and height are specified then width will be used and height ignored. ','web',0,'ZM_WEB_LIST_THUMBS=1'),(161,'ZM_WEB_LIST_THUMB_WIDTH','48','integer','48','integer','(?^:^(d+)$)',' $1 ','The width of the thumbnails that appear in the event lists',' This options controls the width of the thumbnail images that appear in the event lists. It should be fairly small to fit in with the rest of the table. If you prefer you can specify a height instead in the next option but you should only use one of the width or height and the other option should be set to zero. If both width and height are specified then width will be used and height ignored. ','web',0,'ZM_WEB_LIST_THUMBS=1'),(160,'ZM_WEB_LIST_THUMBS','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Display mini-thumbnails of event images in event lists',' Ordinarily the event lists just display text details of the events to save space and time. By switching this option on you can also display small thumbnails to help you identify events of interest. The size of these thumbnails is controlled by the following two options. ','web',0,''),(193,'ZM_WEB_M_AJAX_TIMEOUT','5000','integer','5000','integer','(?^:^(d+)$)',' $1 ','How long to wait for Ajax request responses (ms)',' The newer versions of the live feed and event views use Ajax to request information from the server and populate the views dynamically. This option allows you to specify a timeout if required after which requests are abandoned. A timeout may be necessary if requests would overwise hang such as on a slow connection. This would tend to consume a lot of browser memory and make the interface unresponsive. Ordinarily no requests should timeout so this setting should be set to a value greater than the slowest expected response. This value is in milliseconds but if set to zero then no timeout will be used. ','medband',0,''),(184,'ZM_WEB_M_CAN_STREAM','auto','string','auto','auto|yes|no','(?^i:^([ayn]))',' ($1 =~ /^y/) ? \"yes\" : ($1 =~ /^n/ ? \"no\" : \"auto\" ) ','Override the automatic detection of browser streaming capability',' If you know that your browser can handle image streams of the type \'multipart/x-mixed-replace\' but ZoneMinder does not detect this correctly you can set this option to ensure that the stream is delivered with or without the use of the Cambozola plugin. Selecting \'yes\' will tell ZoneMinder that your browser can handle the streams natively, \'no\' means that it can\'t and so the plugin will be used while \'auto\' lets ZoneMinder decide. ','medband',0,''),(187,'ZM_WEB_M_DEFAULT_RATE','100','integer','100','25|50|100|150|200|400|1000|2500|5000|10000','(?^:^(d+)$)',' $1 ','What the default replay rate factor applied to \'event\' views is (%)',' Normally ZoneMinder will display \'event\' streams at their native rate, i.e. as close to real-time as possible. However if you have long events it is often convenient to replay them at a faster rate for review. This option lets you specify what the default replay rate will be. It is expressed as a percentage so 100 is normal rate, 200 is double speed etc. ','medband',0,''),(186,'ZM_WEB_M_DEFAULT_SCALE','100','integer','100','25|33|50|75|100|150|200|300|400','(?^:^(d+)$)',' $1 ','What the default scaling factor applied to \'live\' or \'event\' views is (%)',' Normally ZoneMinder will display \'live\' or \'event\' streams in their native size. However if you have monitors with large dimensions or a slow link you may prefer to reduce this size, alternatively for small monitors you can enlarge it. This options lets you specify what the default scaling factor will be. It is expressed as a percentage so 100 is normal size, 200 is double size etc. ','medband',0,''),(191,'ZM_WEB_M_EVENTS_VIEW','events','string','events','events|timeline','(?^i:^([lt]))',' $1 =~ /^e/ ? \"events\" : \"timeline\" ','What the default view of multiple events should be.',' Stored events can be viewed in either an events list format or in a timeline based one. This option sets the default view that will be used. Choosing one view here does not prevent the other view being used as it will always be selectable from whichever view is currently being used. ','medband',0,''),(180,'ZM_WEB_M_REFRESH_CYCLE','20','integer','20','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the cycle watch window swaps to the next monitor',' The cycle watch window is a method of continuously cycling between images from all of your monitors. This option determines how often to refresh with a new image. ','medband',0,''),(183,'ZM_WEB_M_REFRESH_EVENTS','60','integer','60','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the event listing is refreshed in the watch window',' The monitor window is actually made from several frames. The lower framme contains a listing of the last few events for easy access. This option determines how often this is refreshed. ','medband',0,''),(181,'ZM_WEB_M_REFRESH_IMAGE','10','integer','10','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the watched image is refreshed (if not streaming)',' The live images from a monitor can be viewed in either streamed or stills mode. This option determines how often a stills image is refreshed, it has no effect if streaming is selected. ','medband',0,''),(179,'ZM_WEB_M_REFRESH_MAIN','300','integer','300','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the main console window should refresh itself',' The main console window lists a general status and the event totals for all monitors. This is not a trivial task and should not be repeated too frequently or it may affect the performance of the rest of the system. ','medband',0,''),(182,'ZM_WEB_M_REFRESH_STATUS','5','integer','5','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the status refreshes itself in the watch window',' The monitor window is actually made from several frames. The one in the middle merely contains a monitor status which needs to refresh fairly frequently to give a true indication. This option determines that frequency. ','medband',0,''),(190,'ZM_WEB_M_SCALE_THUMBS','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Scale thumbnails in events, bandwidth versus cpu in rescaling',' If unset, this option sends the whole image to the browser which resizes it in the window. If set the image is scaled down on the server before sending a reduced size image to the browser to conserve bandwidth at the cost of cpu on the server. Note that ZM can only perform the resizing if the appropriate PHP graphics functionality is installed. This is usually available in the php-gd package. ','medband',0,''),(192,'ZM_WEB_M_SHOW_PROGRESS','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Show the progress of replay in event view.',' When viewing events an event navigation panel and progress bar is shown below the event itself. This allows you to jump to specific points in the event, but can can also dynamically update to display the current progress of the event replay itself. This progress is calculated from the actual event duration and is not directly linked to the replay itself, so on limited bandwidth connections may be out of step with the replay. This option allows you to turn off the progress display, whilst still keeping the navigation aspect, where bandwidth prevents it functioning effectively. ','medband',0,''),(185,'ZM_WEB_M_STREAM_METHOD','jpeg','string','jpeg','mpeg|jpeg','(?^i:^([mj]))',' $1 =~ /^m/ ? \"mpeg\" : \"jpeg\" ','Which method should be used to send video streams to your browser.',' ZoneMinder can be configured to use either mpeg encoded video or a series or still jpeg images when sending video streams. This option defines which is used. If you choose mpeg you should ensure that you have the appropriate plugins available on your browser whereas choosing jpeg will work natively on Mozilla and related browsers and with a Java applet on Internet Explorer ','medband',0,''),(188,'ZM_WEB_M_VIDEO_BITRATE','75000','integer','75000','integer','(?^:^(d+)$)',' $1 ','What the bitrate of the video encoded stream should be set to',' When encoding real video via the ffmpeg library a bit rate can be specified which roughly corresponds to the available bandwidth used for the stream. This setting effectively corresponds to a \'quality\' setting for the video. A low value will result in a blocky image whereas a high value will produce a clearer view. Note that this setting does not control the frame rate of the video however the quality of the video produced is affected both by this setting and the frame rate that the video is produced at. A higher frame rate at a particular bit rate result in individual frames being at a lower quality. ','medband',0,''),(189,'ZM_WEB_M_VIDEO_MAXFPS','10','integer','10','integer','(?^:^(d+)$)',' $1 ','What the maximum frame rate for streamed video should be',' When using streamed video the main control is the bitrate which determines how much data can be transmitted. However a lower bitrate at high frame rates results in a lower quality image. This option allows you to limit the maximum frame rate to ensure that video quality is maintained. An additional advantage is that encoding video at high frame rates is a processor intensive task when for the most part a very high frame rate offers little perceptible improvement over one that has a more manageable resource requirement. Note, this option is implemented as a cap beyond which binary reduction takes place. So if you have a device capturing at 15fps and set this option to 10fps then the video is not produced at 10fps, but rather at 7.5fps (15 divided by 2) as the final frame rate must be the original divided by a power of 2. ','medband',0,''),(79,'ZM_WEB_POPUP_ON_ALARM','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Should the monitor window jump to the top if an alarm occurs',' When viewing a live monitor stream you can specify whether you want the window to pop to the front if an alarm occurs when the window is minimised or behind another window. This is most useful if your monitors are over doors for example when they can pop up if someone comes to the doorway. ','web',0,''),(156,'ZM_WEB_REFRESH_METHOD','javascript','string','javascript','javascript|http','(?^i:^([jh]))',' $1 =~ /^j/\n ? \"javascript\"\n : \"http\"\n ','What method windows should use to refresh themselves',' Many windows in Javascript need to refresh themselves to keep their information current. This option determines what method they should use to do this. Choosing \'javascript\' means that each window will have a short JavaScript statement in with a timer to prompt the refresh. This is the most compatible method. Choosing \'http\' means the refresh instruction is put in the HTTP header. This is a cleaner method but refreshes are interrupted or cancelled when a link in the window is clicked meaning that the window will no longer refresh and this would have to be done manually. ','hidden',0,''),(77,'ZM_WEB_RESIZE_CONSOLE','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Should the console window resize itself to fit',' Traditionally the main ZoneMinder web console window has resized itself to shrink to a size small enough to list only the monitors that are actually present. This is intended to make the window more unobtrusize but may not be to everyones tastes, especially if opened in a tab in browsers which support this kind if layout. Switch this option off to have the console window size left to the users preference ','web',0,''),(84,'ZM_WEB_SOUND_ON_ALARM','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Should the monitor window play a sound if an alarm occurs',' When viewing a live monitor stream you can specify whether you want the window to play a sound to alert you if an alarm occurs. ','web',0,''),(74,'ZM_WEB_TITLE_PREFIX','ZM','string','ZM','string','(?^:^(.+)$)',' $1 ','The title prefix displayed on each window',' If you have more than one installation of ZoneMinder it can be helpful to display different titles for each one. Changing this option allows you to customise the window titles to include further information to aid identification. ','web',0,''),(163,'ZM_WEB_USE_OBJECT_TAGS','1','boolean','yes','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Wrap embed in object tags for media content',' There are two methods of including media content in web pages. The most common way is use the EMBED tag which is able to give some indication of the type of content. However this is not a standard part of HTML. The official method is to use OBJECT tags which are able to give more information allowing the correct media viewers etc to be loaded. However these are less widely supported and content may be specifically tailored to a particular platform or player. This option controls whether media content is enclosed in EMBED tags only or whether, where appropriate, it is additionally wrapped in OBJECT tags. Currently OBJECT tags are only used in a limited number of circumstances but they may become more widespread in the future. It is suggested that you leave this option on unless you encounter problems playing some content. ','web',0,''),(142,'ZM_WEIGHTED_ALARM_CENTRES','0','boolean','no','yes|no','(?^i:^([yn]))',' ($1 =~ /^y/) ? \"yes\" : \"no\" ','Use a weighted algorithm to calculate the centre of an alarm',' ZoneMinder will always calculate the centre point of an alarm in a zone to give some indication of where on the screen it is. This can be used by the experimental motion tracking feature or your own custom extensions. In the alarmed or filtered pixels mode this is a simple midpoint between the extents of the detected pixels. However in the blob method this can instead be calculated using weighted pixel locations to give more accurate positioning for irregularly shaped blobs. This method, while more precise is also slower and so is turned off by default. ','config',0,''),(83,'ZM_X10_DB_RELOAD_INTERVAL','60','integer','60','integer','(?^:^(d+)$)',' $1 ','How often (in seconds) the X10 daemon reloads the monitors from the database',' The zmx10 daemon periodically checks the database to find out what X10 events trigger, or result from, alarms. This option determines how frequently this check occurs, unless you change this area frequently this can be a fairly large value. ','x10',0,'ZM_OPT_X10=1'),(81,'ZM_X10_DEVICE','/dev/ttyS0','string','/dev/ttyS0','/absolute/path/to/somewhere','(?^:^((?:/[^/]*)+?)/?$)',' $1 ','What device is your X10 controller connected on',' If you have an X10 controller device (e.g. XM10U) connected to your computer this option details which port it is connected on, the default of /dev/ttyS0 maps to serial or com port 1. ','x10',0,'ZM_OPT_X10=1'),(82,'ZM_X10_HOUSE_CODE','A','string','A','A-P','(?^i:^([A-P]))',' uc($1) ','What X10 house code should be used',' X10 devices are grouped together by identifying them as all belonging to one House Code. This option details what that is. It should be a single letter between A and P. ','x10',0,'ZM_OPT_X10=1'); -/*!40000 ALTER TABLE `Config` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `ControlPresets` --- - -DROP TABLE IF EXISTS `ControlPresets`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ControlPresets` ( - `MonitorId` int(10) unsigned NOT NULL DEFAULT '0', - `Preset` int(10) unsigned NOT NULL DEFAULT '0', - `Label` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`MonitorId`,`Preset`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `ControlPresets` --- - -LOCK TABLES `ControlPresets` WRITE; -/*!40000 ALTER TABLE `ControlPresets` DISABLE KEYS */; -/*!40000 ALTER TABLE `ControlPresets` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Controls` --- - -DROP TABLE IF EXISTS `Controls`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Controls` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `Name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Type` enum('Local','Remote','Ffmpeg','Libvlc','cURL') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Local', - `Protocol` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL, - `CanWake` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanSleep` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanReset` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanZoom` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanAutoZoom` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanZoomAbs` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanZoomRel` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanZoomCon` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinZoomRange` int(10) unsigned DEFAULT NULL, - `MaxZoomRange` int(10) unsigned DEFAULT NULL, - `MinZoomStep` int(10) unsigned DEFAULT NULL, - `MaxZoomStep` int(10) unsigned DEFAULT NULL, - `HasZoomSpeed` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinZoomSpeed` int(10) unsigned DEFAULT NULL, - `MaxZoomSpeed` int(10) unsigned DEFAULT NULL, - `CanFocus` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanAutoFocus` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanFocusAbs` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanFocusRel` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanFocusCon` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinFocusRange` int(10) unsigned DEFAULT NULL, - `MaxFocusRange` int(10) unsigned DEFAULT NULL, - `MinFocusStep` int(10) unsigned DEFAULT NULL, - `MaxFocusStep` int(10) unsigned DEFAULT NULL, - `HasFocusSpeed` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinFocusSpeed` int(10) unsigned DEFAULT NULL, - `MaxFocusSpeed` int(10) unsigned DEFAULT NULL, - `CanIris` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanAutoIris` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanIrisAbs` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanIrisRel` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanIrisCon` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinIrisRange` int(10) unsigned DEFAULT NULL, - `MaxIrisRange` int(10) unsigned DEFAULT NULL, - `MinIrisStep` int(10) unsigned DEFAULT NULL, - `MaxIrisStep` int(10) unsigned DEFAULT NULL, - `HasIrisSpeed` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinIrisSpeed` int(10) unsigned DEFAULT NULL, - `MaxIrisSpeed` int(10) unsigned DEFAULT NULL, - `CanGain` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanAutoGain` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanGainAbs` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanGainRel` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanGainCon` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinGainRange` int(10) unsigned DEFAULT NULL, - `MaxGainRange` int(10) unsigned DEFAULT NULL, - `MinGainStep` int(10) unsigned DEFAULT NULL, - `MaxGainStep` int(10) unsigned DEFAULT NULL, - `HasGainSpeed` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinGainSpeed` int(10) unsigned DEFAULT NULL, - `MaxGainSpeed` int(10) unsigned DEFAULT NULL, - `CanWhite` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanAutoWhite` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanWhiteAbs` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanWhiteRel` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanWhiteCon` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinWhiteRange` int(10) unsigned DEFAULT NULL, - `MaxWhiteRange` int(10) unsigned DEFAULT NULL, - `MinWhiteStep` int(10) unsigned DEFAULT NULL, - `MaxWhiteStep` int(10) unsigned DEFAULT NULL, - `HasWhiteSpeed` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinWhiteSpeed` int(10) unsigned DEFAULT NULL, - `MaxWhiteSpeed` int(10) unsigned DEFAULT NULL, - `HasPresets` tinyint(3) unsigned NOT NULL DEFAULT '0', - `NumPresets` tinyint(3) unsigned NOT NULL DEFAULT '0', - `HasHomePreset` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanSetPresets` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanMove` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanMoveDiag` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanMoveMap` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanMoveAbs` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanMoveRel` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanMoveCon` tinyint(3) unsigned NOT NULL DEFAULT '0', - `CanPan` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinPanRange` int(10) DEFAULT NULL, - `MaxPanRange` int(10) DEFAULT NULL, - `MinPanStep` int(10) DEFAULT NULL, - `MaxPanStep` int(10) DEFAULT NULL, - `HasPanSpeed` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinPanSpeed` int(10) DEFAULT NULL, - `MaxPanSpeed` int(10) DEFAULT NULL, - `HasTurboPan` tinyint(3) unsigned NOT NULL DEFAULT '0', - `TurboPanSpeed` int(10) DEFAULT NULL, - `CanTilt` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinTiltRange` int(10) DEFAULT NULL, - `MaxTiltRange` int(10) DEFAULT NULL, - `MinTiltStep` int(10) DEFAULT NULL, - `MaxTiltStep` int(10) DEFAULT NULL, - `HasTiltSpeed` tinyint(3) unsigned NOT NULL DEFAULT '0', - `MinTiltSpeed` int(10) DEFAULT NULL, - `MaxTiltSpeed` int(10) DEFAULT NULL, - `HasTurboTilt` tinyint(3) unsigned NOT NULL DEFAULT '0', - `TurboTiltSpeed` int(10) DEFAULT NULL, - `CanAutoScan` tinyint(3) unsigned NOT NULL DEFAULT '0', - `NumScanPaths` tinyint(3) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`Id`) -) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Controls` --- - -LOCK TABLES `Controls` WRITE; -/*!40000 ALTER TABLE `Controls` DISABLE KEYS */; -INSERT INTO `Controls` VALUES (1,'Pelco-D','Local','PelcoD',1,1,0,1,1,0,0,1,NULL,NULL,NULL,NULL,1,0,3,1,1,0,0,1,NULL,NULL,NULL,NULL,0,NULL,NULL,1,1,0,1,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,1,0,1,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,20,1,1,1,1,0,0,0,1,1,NULL,NULL,NULL,NULL,1,0,63,1,254,1,NULL,NULL,NULL,NULL,1,0,63,1,254,0,0),(2,'Pelco-P','Local','PelcoP',1,1,0,1,1,0,0,1,NULL,NULL,NULL,NULL,1,0,3,1,1,0,0,1,NULL,NULL,NULL,NULL,0,NULL,NULL,1,1,0,1,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,1,0,1,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,20,1,1,1,1,0,0,0,1,1,NULL,NULL,NULL,NULL,1,0,63,1,254,1,NULL,NULL,NULL,NULL,1,0,63,1,254,0,0),(3,'Sony VISCA','Local','Visca',1,1,0,1,0,0,0,1,0,16384,10,4000,1,1,6,1,1,1,0,1,0,1536,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,3,1,1,1,1,0,1,1,0,1,-15578,15578,100,10000,1,1,50,1,254,1,-7789,7789,100,5000,1,1,50,1,254,0,0),(4,'Axis API v2','Remote','AxisV2',0,0,0,1,0,0,1,0,0,9999,10,2500,0,NULL,NULL,1,1,0,1,0,0,9999,10,2500,0,NULL,NULL,1,1,0,1,0,0,9999,10,2500,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,12,1,1,1,1,1,0,1,0,1,-360,360,1,90,0,NULL,NULL,0,NULL,1,-360,360,1,90,0,NULL,NULL,0,NULL,0,0),(5,'Panasonic IP','Remote','PanasonicIP',0,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,8,1,1,1,0,1,0,0,1,1,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,0,0),(6,'Neu-Fusion NCS370','Remote','Ncs370',0,0,0,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,24,1,0,1,1,0,0,0,1,1,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,0,0),(7,'AirLink SkyIPCam 7xx','Remote','SkyIPCam7xx',0,0,1,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,8,1,1,1,0,1,0,1,0,1,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,1,NULL,NULL,NULL,NULL,0,NULL,NULL,0,NULL,0,0),(8,'Pelco-D','Ffmpeg','PelcoD',1,1,0,1,1,0,0,1,NULL,NULL,NULL,NULL,1,0,3,1,1,0,0,1,NULL,NULL,NULL,NULL,0,NULL,NULL,1,1,0,1,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,1,0,1,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,20,1,1,1,1,0,0,0,1,1,NULL,NULL,NULL,NULL,1,0,63,1,254,1,NULL,NULL,NULL,NULL,1,0,63,1,254,0,0),(9,'Pelco-P','Ffmpeg','PelcoP',1,1,0,1,1,0,0,1,NULL,NULL,NULL,NULL,1,0,3,1,1,0,0,1,NULL,NULL,NULL,NULL,0,NULL,NULL,1,1,0,1,0,NULL,NULL,NULL,NULL,0,NULL,NULL,0,0,0,0,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,1,0,1,0,NULL,NULL,NULL,NULL,0,NULL,NULL,1,20,1,1,1,1,0,0,0,1,1,NULL,NULL,NULL,NULL,1,0,63,1,254,1,NULL,NULL,NULL,NULL,1,0,63,1,254,0,0),(10,'Foscam FI8620','Ffmpeg','FI8620_Y2k',0,0,0,1,0,0,0,1,1,10,1,10,1,1,63,1,1,0,0,1,1,63,1,63,1,1,63,1,1,0,0,1,0,0,0,0,1,0,255,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0,255,1,8,0,1,1,1,0,0,0,1,1,1,360,1,360,1,1,63,0,0,1,1,90,1,90,1,1,63,0,0,0,0),(11,'Foscam FI8608W','Ffmpeg','FI8608W_Y2k',1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0,255,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0,255,1,8,0,1,1,1,0,0,0,1,1,0,0,0,0,1,1,128,0,0,1,0,0,0,0,1,1,128,0,0,0,0),(12,'Foscam FI8908W','Remote','FI8908W',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(13,'Foscam FI9821W','Ffmpeg','FI9821W_Y2k',1,0,1,1,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0,100,1,1,0,0,1,0,100,0,100,1,0,100,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,100,0,100,1,0,100,1,16,0,1,1,1,0,0,0,1,1,0,360,0,360,1,0,4,0,0,1,0,90,0,90,1,0,4,0,0,0,0),(14,'Loftek Sentinel','Remote','LoftekSentinel',0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,255,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,6,1,1,0,0,0,1,10,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(15,'Toshiba IK-WB11A','Remote','Toshiba_IK_WB11A',0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10,0,1,1,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(16,'WanscamPT','Remote','Wanscam',1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,16,0,0,0,0,0,1,16,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(17,'3S Domo N5071','Remote','3S',0,0,1,1,0,1,1,0,0,9999,0,9999,0,0,0,1,1,1,1,0,0,9999,20,9999,0,0,0,1,1,1,1,0,0,9999,1,9999,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,64,1,0,1,1,0,0,0,0,1,-180,180,40,100,1,40,100,0,0,1,-180,180,40,100,1,40,100,0,0,0,0),(18,'ONVIF Camera','Ffmpeg','onvif',0,0,1,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,255,16,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,6,1,1,0,0,0,1,10,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(19,'Foscam 9831W','Ffmpeg','FI9831W',0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,1,1,1,1,0,0,0,1,1,0,360,0,360,1,0,4,0,0,1,0,90,0,90,0,0,0,0,0,0,0),(20,'Foscam FI8918W','Ffmpeg','FI8918W',0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,1,1,1,0,0,0,1,1,0,360,0,360,1,0,4,0,0,1,0,90,0,90,1,0,4,0,0,0,0),(21,'SunEyes SP-P1802SWPTZ','Libvlc','SPP1802SWPTZ',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,8,0,1,1,0,0,0,0,1,1,0,0,0,0,1,0,64,0,0,1,0,0,0,0,1,0,64,0,0,0,0),(22,'Wanscam HW0025','Libvlc','WanscamHW0025',1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,1,1,1,1,0,1,1,0,1,0,350,0,0,1,0,10,0,0,1,0,0,0,0,1,0,10,0,0,0,0),(23,'IPCC 7210W','Libvlc','IPCC7210W',1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,16,1,1,1,1,0,1,1,0,1,0,350,0,0,1,0,10,0,0,1,0,0,0,0,1,0,10,0,0,0,0),(24,'Vivotek ePTZ','Remote','Vivotek_ePTZ',0,0,1,1,0,0,0,1,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,1,0,5,0,0,1,0,0,0,0,1,0,5,0,0,0,0),(25,'Netcat ONVIF','Ffmpeg','Netcat',0,0,1,1,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,100,5,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,100,5,5,0,0,0,1,255,1,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(26,'Keekoon','Remote','Keekoon',0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,6,0,1,1,1,0,0,0,1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0),(27,'HikVision','Local','',0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,1,1,1,1,0,0,0,1,1,0,0,0,0,1,1,100,0,0,1,0,0,0,0,1,1,100,1,0,0,0),(28,'Floureon 1080P','Ffmpeg','Floureon',0,0,0,1,0,0,0,1,1,18,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,1,1,1,0,0,0,1,1,0,0,0,0,1,1,8,0,0,1,0,0,0,0,1,1,8,0,0,0,0); -/*!40000 ALTER TABLE `Controls` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Devices` --- - -DROP TABLE IF EXISTS `Devices`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Devices` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `Name` tinytext COLLATE utf8_unicode_ci NOT NULL, - `Type` enum('X10') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'X10', - `KeyString` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - PRIMARY KEY (`Id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Devices` --- - -LOCK TABLES `Devices` WRITE; -/*!40000 ALTER TABLE `Devices` DISABLE KEYS */; -/*!40000 ALTER TABLE `Devices` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Events` --- - -DROP TABLE IF EXISTS `Events`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Events` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `MonitorId` int(10) unsigned NOT NULL DEFAULT '0', - `Name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Cause` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `StartTime` datetime DEFAULT NULL, - `EndTime` datetime DEFAULT NULL, - `Width` smallint(5) unsigned NOT NULL DEFAULT '0', - `Height` smallint(5) unsigned NOT NULL DEFAULT '0', - `Length` decimal(10,2) NOT NULL DEFAULT '0.00', - `Frames` int(10) unsigned DEFAULT NULL, - `AlarmFrames` int(10) unsigned DEFAULT NULL, - `TotScore` int(10) unsigned NOT NULL DEFAULT '0', - `AvgScore` smallint(5) unsigned DEFAULT '0', - `MaxScore` smallint(5) unsigned DEFAULT '0', - `Archived` tinyint(3) unsigned NOT NULL DEFAULT '0', - `Videoed` tinyint(3) unsigned NOT NULL DEFAULT '0', - `Uploaded` tinyint(3) unsigned NOT NULL DEFAULT '0', - `Emailed` tinyint(3) unsigned NOT NULL DEFAULT '0', - `Messaged` tinyint(3) unsigned NOT NULL DEFAULT '0', - `Executed` tinyint(3) unsigned NOT NULL DEFAULT '0', - `Notes` text COLLATE utf8_unicode_ci, - PRIMARY KEY (`Id`,`MonitorId`), - KEY `MonitorId` (`MonitorId`), - KEY `StartTime` (`StartTime`), - KEY `Frames` (`Frames`), - KEY `Archived` (`Archived`) -) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Events` --- - -LOCK TABLES `Events` WRITE; -/*!40000 ALTER TABLE `Events` DISABLE KEYS */; -INSERT INTO `Events` VALUES (9,1,'Event-9','Continuous','2017-11-16 12:02:23','2017-11-16 12:05:49',1980,1080,205.45,2055,77,760,9,34,0,0,0,0,0,0,'Motion: All'); -/*!40000 ALTER TABLE `Events` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Filters` --- - -DROP TABLE IF EXISTS `Filters`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Filters` ( - `Name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Query` text COLLATE utf8_unicode_ci NOT NULL, - `AutoArchive` tinyint(3) unsigned NOT NULL DEFAULT '0', - `AutoVideo` tinyint(3) unsigned NOT NULL DEFAULT '0', - `AutoUpload` tinyint(3) unsigned NOT NULL DEFAULT '0', - `AutoEmail` tinyint(3) unsigned NOT NULL DEFAULT '0', - `AutoMessage` tinyint(3) unsigned NOT NULL DEFAULT '0', - `AutoExecute` tinyint(3) unsigned NOT NULL DEFAULT '0', - `AutoExecuteCmd` tinytext COLLATE utf8_unicode_ci, - `AutoDelete` tinyint(3) unsigned NOT NULL DEFAULT '0', - `Background` tinyint(1) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`Name`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Filters` --- - -LOCK TABLES `Filters` WRITE; -/*!40000 ALTER TABLE `Filters` DISABLE KEYS */; -INSERT INTO `Filters` VALUES ('PurgeWhenFull','{\"sort_field\":\"Id\",\"terms\":[{\"val\":0,\"attr\":\"Archived\",\"op\":\"=\"},{\"cnj\":\"and\",\"val\":95,\"attr\":\"DiskPercent\",\"op\":\">=\"}],\"limit\":100,\"sort_asc\":1}',0,0,0,0,0,0,'',1,1); -/*!40000 ALTER TABLE `Filters` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Frames` --- - -DROP TABLE IF EXISTS `Frames`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Frames` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `EventId` int(10) unsigned NOT NULL DEFAULT '0', - `FrameId` int(10) unsigned NOT NULL DEFAULT '0', - `Type` enum('Normal','Bulk','Alarm') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Normal', - `TimeStamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, - `Delta` decimal(8,2) NOT NULL DEFAULT '0.00', - `Score` smallint(5) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`Id`), - KEY `EventId_idx` (`EventId`), - KEY `Type` (`Type`), - KEY `TimeStamp` (`TimeStamp`) -) ENGINE=InnoDB AUTO_INCREMENT=797 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Frames` --- - -LOCK TABLES `Frames` WRITE; -/*!40000 ALTER TABLE `Frames` DISABLE KEYS */; -INSERT INTO `Frames` VALUES (600,9,1,'Normal','2017-11-16 10:02:23',0.00,0),(601,9,2,'Normal','2017-11-16 10:02:24',0.17,0),(602,9,3,'Normal','2017-11-16 10:02:24',0.22,0),(603,9,4,'Normal','2017-11-16 10:02:24',0.34,0),(604,9,5,'Normal','2017-11-16 10:02:24',0.42,0),(605,9,6,'Normal','2017-11-16 10:02:24',0.53,0),(606,9,7,'Normal','2017-11-16 10:02:24',0.63,0),(607,9,8,'Normal','2017-11-16 10:02:24',0.76,0),(608,9,9,'Normal','2017-11-16 10:02:24',0.82,0),(609,9,10,'Normal','2017-11-16 10:02:24',0.95,0),(610,9,11,'Normal','2017-11-16 10:02:24',1.01,0),(611,9,12,'Normal','2017-11-16 10:02:25',1.16,0),(612,9,13,'Normal','2017-11-16 10:02:25',1.22,0),(613,9,14,'Normal','2017-11-16 10:02:25',1.36,0),(614,9,15,'Normal','2017-11-16 10:02:25',1.42,0),(615,9,16,'Normal','2017-11-16 10:02:25',1.56,0),(616,9,17,'Normal','2017-11-16 10:02:25',1.62,0),(617,9,18,'Normal','2017-11-16 10:02:25',1.75,0),(618,9,19,'Normal','2017-11-16 10:02:25',1.84,0),(619,9,20,'Normal','2017-11-16 10:02:25',1.94,0),(620,9,21,'Normal','2017-11-16 10:02:25',2.01,0),(621,9,22,'Normal','2017-11-16 10:02:26',2.14,0),(622,9,23,'Normal','2017-11-16 10:02:26',2.21,0),(623,9,24,'Normal','2017-11-16 10:02:26',2.37,0),(624,9,25,'Normal','2017-11-16 10:02:26',2.42,0),(625,9,100,'Bulk','2017-11-16 10:02:33',9.96,0),(626,9,200,'Bulk','2017-11-16 10:02:43',19.95,0),(627,9,300,'Bulk','2017-11-16 10:02:53',29.96,0),(628,9,400,'Bulk','2017-11-16 10:03:03',39.93,0),(629,9,500,'Bulk','2017-11-16 10:03:13',49.94,0),(630,9,600,'Bulk','2017-11-16 10:03:23',59.94,0),(631,9,700,'Bulk','2017-11-16 10:03:33',69.93,0),(632,9,800,'Bulk','2017-11-16 10:03:43',79.96,0),(633,9,900,'Bulk','2017-11-16 10:03:53',89.94,0),(634,9,1000,'Bulk','2017-11-16 10:04:03',99.97,0),(635,9,1022,'Alarm','2017-11-16 10:04:06',102.14,22),(636,9,1023,'Alarm','2017-11-16 10:04:06',102.21,33),(637,9,1024,'Alarm','2017-11-16 10:04:06',102.33,34),(638,9,1025,'Alarm','2017-11-16 10:04:06',102.43,29),(639,9,1026,'Alarm','2017-11-16 10:04:06',102.55,31),(640,9,1027,'Alarm','2017-11-16 10:04:06',102.61,27),(641,9,1028,'Alarm','2017-11-16 10:04:06',102.72,26),(642,9,1029,'Alarm','2017-11-16 10:04:06',102.84,22),(643,9,1030,'Alarm','2017-11-16 10:04:06',102.94,23),(644,9,1031,'Alarm','2017-11-16 10:04:06',103.00,19),(645,9,1032,'Alarm','2017-11-16 10:04:07',103.15,14),(646,9,1033,'Alarm','2017-11-16 10:04:07',103.21,9),(647,9,1034,'Alarm','2017-11-16 10:04:07',103.34,12),(648,9,1035,'Alarm','2017-11-16 10:04:07',103.41,15),(649,9,1036,'Alarm','2017-11-16 10:04:07',103.55,11),(650,9,1037,'Alarm','2017-11-16 10:04:07',103.62,6),(651,9,1038,'Alarm','2017-11-16 10:04:07',103.74,2),(652,9,1039,'Normal','2017-11-16 10:04:07',103.82,0),(653,9,1040,'Normal','2017-11-16 10:04:07',103.94,0),(654,9,1041,'Normal','2017-11-16 10:04:08',104.06,0),(655,9,1042,'Normal','2017-11-16 10:04:08',104.12,0),(656,9,1043,'Normal','2017-11-16 10:04:08',104.21,0),(657,9,1044,'Normal','2017-11-16 10:04:08',104.34,0),(658,9,1045,'Normal','2017-11-16 10:04:08',104.41,0),(659,9,1046,'Normal','2017-11-16 10:04:08',104.54,0),(660,9,1047,'Normal','2017-11-16 10:04:08',104.61,0),(661,9,1048,'Normal','2017-11-16 10:04:08',104.73,0),(662,9,1049,'Normal','2017-11-16 10:04:08',104.81,0),(663,9,1050,'Normal','2017-11-16 10:04:08',104.93,0),(664,9,1051,'Normal','2017-11-16 10:04:08',105.00,0),(665,9,1052,'Normal','2017-11-16 10:04:09',105.14,0),(666,9,1053,'Normal','2017-11-16 10:04:09',105.21,0),(667,9,1054,'Normal','2017-11-16 10:04:09',105.34,0),(668,9,1055,'Normal','2017-11-16 10:04:09',105.42,0),(669,9,1056,'Normal','2017-11-16 10:04:09',105.54,0),(670,9,1057,'Normal','2017-11-16 10:04:09',105.62,0),(671,9,1058,'Normal','2017-11-16 10:04:09',105.75,0),(672,9,1059,'Normal','2017-11-16 10:04:09',105.82,0),(673,9,1060,'Normal','2017-11-16 10:04:09',105.94,0),(674,9,1061,'Normal','2017-11-16 10:04:09',106.01,0),(675,9,1062,'Normal','2017-11-16 10:04:10',106.13,0),(676,9,1063,'Normal','2017-11-16 10:04:10',106.22,0),(677,9,1079,'Alarm','2017-11-16 10:04:11',107.83,21),(678,9,1080,'Alarm','2017-11-16 10:04:11',107.94,30),(679,9,1081,'Alarm','2017-11-16 10:04:11',108.02,29),(680,9,1082,'Alarm','2017-11-16 10:04:12',108.13,25),(681,9,1083,'Alarm','2017-11-16 10:04:12',108.21,24),(682,9,1084,'Alarm','2017-11-16 10:04:12',108.33,20),(683,9,1085,'Alarm','2017-11-16 10:04:12',108.45,16),(684,9,1086,'Alarm','2017-11-16 10:04:12',108.53,14),(685,9,1087,'Alarm','2017-11-16 10:04:12',108.61,15),(686,9,1088,'Alarm','2017-11-16 10:04:12',108.75,12),(687,9,1089,'Alarm','2017-11-16 10:04:12',108.81,10),(688,9,1090,'Alarm','2017-11-16 10:04:12',108.93,9),(689,9,1091,'Alarm','2017-11-16 10:04:13',109.14,4),(690,9,1092,'Alarm','2017-11-16 10:04:13',109.16,2),(691,9,1093,'Alarm','2017-11-16 10:04:13',109.21,2),(692,9,1094,'Alarm','2017-11-16 10:04:13',109.33,2),(693,9,1095,'Alarm','2017-11-16 10:04:13',109.40,2),(694,9,1096,'Normal','2017-11-16 10:04:13',109.53,0),(695,9,1097,'Normal','2017-11-16 10:04:13',109.61,0),(696,9,1098,'Normal','2017-11-16 10:04:13',109.74,0),(697,9,1099,'Normal','2017-11-16 10:04:13',109.81,0),(698,9,1100,'Normal','2017-11-16 10:04:13',109.94,0),(699,9,1101,'Normal','2017-11-16 10:04:13',110.01,0),(700,9,1102,'Normal','2017-11-16 10:04:14',110.17,0),(701,9,1103,'Normal','2017-11-16 10:04:14',110.21,0),(702,9,1104,'Normal','2017-11-16 10:04:14',110.34,0),(703,9,1105,'Normal','2017-11-16 10:04:14',110.41,0),(704,9,1106,'Normal','2017-11-16 10:04:14',110.54,0),(705,9,1107,'Normal','2017-11-16 10:04:14',110.62,0),(706,9,1108,'Normal','2017-11-16 10:04:14',110.74,0),(707,9,1109,'Normal','2017-11-16 10:04:14',110.82,0),(708,9,1110,'Normal','2017-11-16 10:04:14',110.97,0),(709,9,1111,'Normal','2017-11-16 10:04:14',111.02,0),(710,9,1112,'Normal','2017-11-16 10:04:15',111.16,0),(711,9,1113,'Normal','2017-11-16 10:04:15',111.21,0),(712,9,1114,'Normal','2017-11-16 10:04:15',111.35,0),(713,9,1115,'Normal','2017-11-16 10:04:15',111.42,0),(714,9,1116,'Normal','2017-11-16 10:04:15',111.54,0),(715,9,1117,'Normal','2017-11-16 10:04:15',111.62,0),(716,9,1118,'Normal','2017-11-16 10:04:15',111.74,0),(717,9,1119,'Normal','2017-11-16 10:04:15',111.83,0),(718,9,1120,'Normal','2017-11-16 10:04:15',111.94,0),(719,9,1200,'Bulk','2017-11-16 10:04:23',119.94,0),(720,9,1300,'Bulk','2017-11-16 10:04:33',129.95,0),(721,9,1400,'Bulk','2017-11-16 10:04:43',139.95,0),(722,9,1500,'Bulk','2017-11-16 10:04:53',149.93,0),(723,9,1600,'Bulk','2017-11-16 10:05:03',159.93,0),(724,9,1700,'Bulk','2017-11-16 10:05:13',169.94,0),(725,9,1800,'Bulk','2017-11-16 10:05:23',179.94,0),(726,9,1804,'Alarm','2017-11-16 10:05:24',180.33,2),(727,9,1805,'Alarm','2017-11-16 10:05:24',180.42,3),(728,9,1806,'Alarm','2017-11-16 10:05:24',180.54,3),(729,9,1807,'Alarm','2017-11-16 10:05:24',180.62,2),(730,9,1808,'Alarm','2017-11-16 10:05:24',180.74,2),(731,9,1809,'Alarm','2017-11-16 10:05:24',180.82,4),(732,9,1810,'Alarm','2017-11-16 10:05:24',180.94,4),(733,9,1811,'Alarm','2017-11-16 10:05:24',181.01,4),(734,9,1812,'Alarm','2017-11-16 10:05:25',181.13,4),(735,9,1813,'Alarm','2017-11-16 10:05:25',181.22,5),(736,9,1814,'Alarm','2017-11-16 10:05:25',181.34,5),(737,9,1815,'Alarm','2017-11-16 10:05:25',181.42,6),(738,9,1816,'Alarm','2017-11-16 10:05:25',181.54,6),(739,9,1817,'Alarm','2017-11-16 10:05:25',181.61,6),(740,9,1818,'Alarm','2017-11-16 10:05:25',181.73,6),(741,9,1819,'Alarm','2017-11-16 10:05:25',181.82,6),(742,9,1820,'Alarm','2017-11-16 10:05:25',181.95,5),(743,9,1821,'Alarm','2017-11-16 10:05:25',182.01,5),(744,9,1822,'Alarm','2017-11-16 10:05:26',182.14,5),(745,9,1823,'Alarm','2017-11-16 10:05:26',182.23,4),(746,9,1824,'Alarm','2017-11-16 10:05:26',182.34,2),(747,9,1825,'Alarm','2017-11-16 10:05:26',182.42,5),(748,9,1826,'Alarm','2017-11-16 10:05:26',182.54,5),(749,9,1827,'Alarm','2017-11-16 10:05:26',182.62,5),(750,9,1828,'Alarm','2017-11-16 10:05:26',182.74,6),(751,9,1829,'Alarm','2017-11-16 10:05:26',182.83,4),(752,9,1830,'Alarm','2017-11-16 10:05:26',182.93,5),(753,9,1831,'Alarm','2017-11-16 10:05:26',183.01,5),(754,9,1832,'Alarm','2017-11-16 10:05:27',183.14,6),(755,9,1833,'Alarm','2017-11-16 10:05:27',183.21,6),(756,9,1834,'Alarm','2017-11-16 10:05:27',183.35,6),(757,9,1835,'Alarm','2017-11-16 10:05:27',183.41,6),(758,9,1836,'Alarm','2017-11-16 10:05:27',183.53,6),(759,9,1837,'Alarm','2017-11-16 10:05:27',183.61,6),(760,9,1838,'Alarm','2017-11-16 10:05:27',183.73,6),(761,9,1839,'Alarm','2017-11-16 10:05:27',183.82,5),(762,9,1840,'Alarm','2017-11-16 10:05:27',183.93,5),(763,9,1841,'Alarm','2017-11-16 10:05:28',184.10,2),(764,9,1842,'Alarm','2017-11-16 10:05:28',184.12,2),(765,9,1843,'Alarm','2017-11-16 10:05:28',184.20,2),(766,9,1844,'Alarm','2017-11-16 10:05:28',184.32,2),(767,9,1845,'Alarm','2017-11-16 10:05:28',184.41,2),(768,9,1846,'Alarm','2017-11-16 10:05:28',184.53,2),(769,9,1847,'Normal','2017-11-16 10:05:28',184.61,0),(770,9,1848,'Normal','2017-11-16 10:05:28',184.72,0),(771,9,1849,'Normal','2017-11-16 10:05:28',184.80,0),(772,9,1850,'Normal','2017-11-16 10:05:28',184.93,0),(773,9,1851,'Normal','2017-11-16 10:05:28',185.00,0),(774,9,1852,'Normal','2017-11-16 10:05:29',185.13,0),(775,9,1853,'Normal','2017-11-16 10:05:29',185.22,0),(776,9,1854,'Normal','2017-11-16 10:05:29',185.33,0),(777,9,1855,'Normal','2017-11-16 10:05:29',185.41,0),(778,9,1856,'Normal','2017-11-16 10:05:29',185.54,0),(779,9,1857,'Normal','2017-11-16 10:05:29',185.61,0),(780,9,1858,'Normal','2017-11-16 10:05:29',185.73,0),(781,9,1859,'Normal','2017-11-16 10:05:29',185.81,0),(782,9,1860,'Normal','2017-11-16 10:05:29',185.93,0),(783,9,1861,'Normal','2017-11-16 10:05:29',186.01,0),(784,9,1862,'Normal','2017-11-16 10:05:30',186.12,0),(785,9,1863,'Normal','2017-11-16 10:05:30',186.21,0),(786,9,1864,'Normal','2017-11-16 10:05:30',186.35,0),(787,9,1865,'Normal','2017-11-16 10:05:30',186.42,0),(788,9,1866,'Normal','2017-11-16 10:05:30',186.55,0),(789,9,1867,'Normal','2017-11-16 10:05:30',186.62,0),(790,9,1868,'Normal','2017-11-16 10:05:30',186.74,0),(791,9,1869,'Normal','2017-11-16 10:05:30',186.81,0),(792,9,1870,'Normal','2017-11-16 10:05:30',186.94,0),(793,9,1871,'Normal','2017-11-16 10:05:30',187.00,0),(794,9,1900,'Bulk','2017-11-16 10:05:33',189.94,0),(795,9,2000,'Bulk','2017-11-16 10:05:43',199.94,0),(796,9,2055,'Normal','2017-11-16 10:05:49',205.45,0); -/*!40000 ALTER TABLE `Frames` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Groups` --- - -DROP TABLE IF EXISTS `Groups`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Groups` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `Name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `MonitorIds` tinytext COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`Id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Groups` --- - -LOCK TABLES `Groups` WRITE; -/*!40000 ALTER TABLE `Groups` DISABLE KEYS */; -/*!40000 ALTER TABLE `Groups` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Logs` --- - -DROP TABLE IF EXISTS `Logs`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Logs` ( - `TimeKey` decimal(16,6) NOT NULL, - `Component` varchar(32) COLLATE utf8_unicode_ci NOT NULL, - `ServerId` int(10) unsigned DEFAULT NULL, - `Pid` int(10) DEFAULT NULL, - `Level` tinyint(3) NOT NULL, - `Code` char(3) COLLATE utf8_unicode_ci NOT NULL, - `Message` text COLLATE utf8_unicode_ci NOT NULL, - `File` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `Line` smallint(5) unsigned DEFAULT NULL, - KEY `TimeKey` (`TimeKey`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Logs` --- - -LOCK TABLES `Logs` WRITE; -/*!40000 ALTER TABLE `Logs` DISABLE KEYS */; -INSERT INTO `Logs` VALUES (1510744400.095080,'zmpkg',NULL,4639,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510744400.099170,'zmpkg',NULL,4639,0,'INF','Command: start','zmpkg.pl',NULL),(1510744400.264190,'zmdc',NULL,4655,0,'INF','Server starting at 17/11/15 13:13:20','zmdc.pl',NULL),(1510744403.270210,'zmpkg',NULL,4639,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510744403.360860,'zmdc',NULL,4682,0,'INF','\'zmfilter.pl\' started at 17/11/15 13:13:23','zmdc.pl',NULL),(1510744403.360850,'zmdc',NULL,4655,0,'INF','\'zmfilter.pl\' starting at 17/11/15 13:13:23, pid = 4682','zmdc.pl',NULL),(1510744403.446790,'zmdc',NULL,4687,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 13:13:23','zmdc.pl',NULL),(1510744403.446780,'zmdc',NULL,4655,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 13:13:23, pid = 4687','zmdc.pl',NULL),(1510744403.499490,'zmfilter',NULL,4682,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510744403.534590,'zmdc',NULL,4655,0,'INF','\'zmwatch.pl\' starting at 17/11/15 13:13:23, pid = 4693','zmdc.pl',NULL),(1510744403.534600,'zmdc',NULL,4693,0,'INF','\'zmwatch.pl\' started at 17/11/15 13:13:23','zmdc.pl',NULL),(1510744403.611400,'zmwatch',NULL,4693,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510744403.614490,'zmwatch',NULL,4693,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510744403.620350,'zmdc',NULL,4701,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 13:13:23','zmdc.pl',NULL),(1510744403.620340,'zmdc',NULL,4655,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 13:13:23, pid = 4701','zmdc.pl',NULL),(1510744403.714800,'zmtelemetry',NULL,4701,0,'INF','Collecting data to send to ZoneMinder Telemetry server.','zmtelemetry.pl',NULL),(1510744404.576990,'zmtelemetry',NULL,4701,0,'INF','Sending data to ZoneMinder Telemetry server.','zmtelemetry.pl',NULL),(1510744405.230770,'zmtelemetry',NULL,4701,0,'INF','Telemetry data uploaded successfully.','zmtelemetry.pl',NULL),(1510744760.478304,'web_php',NULL,4959,-3,'FAT','ZoneMinder is not installed properly: php\'s date.timezone is not set to a valid timezone','/usr/share/zoneminder/www/index.php',74),(1510744932.672651,'web_php',NULL,5017,-1,'WAR','Unable to determine path for arp command, type -p arp returned \'127\' output is: -p: not found\narp is /usr/sbin/arp','/usr/share/zoneminder/www/skins/classic/views/monitorprobe.php',300),(1510745014.636465,'web_php',NULL,5006,-3,'FAT','SQL-ERR \'SQLSTATE[HY000]: General error: 1366 Incorrect integer value: \'\' for column \'ServerId\' at row 1\', statement was \'insert into Monitors set LinkedMonitors = \'\', Name = \'Monitor-1\', ServerId = \'\', Type = \'Remote\', Function = \'Monitor\', Enabled = \'1\', RefBlendPerc = \'6\', AlarmRefBlendPerc = \'6\', AnalysisFPS = \'\', MaxFPS = \'\', AlarmMaxFPS = \'\', Device = \'/dev/video0\', Channel = \'0\', Format = \'255\', Palette = \'0\', V4LMultiBuffer = \'\', V4LCapturesPerFrame = \'1\', Options = \'\', LabelFormat = \'%N - %Y-%m-%d %H:%M:%S %z\', LabelX = \'0\', LabelY = \'0\', LabelSize = \'1\', ImageBufferCount = \'50\', WarmupCount = \'25\', PreEventCount = \'25\', PostEventCount = \'25\', StreamReplayBuffer = \'1000\', AlarmFrameCount = \'1\', EventPrefix = \'Event-\', SectionLength = \'600\', FrameSkip = \'0\', MotionFrameSkip = \'0\', AnalysisUpdateDelay = \'0\', FPSReportInterval = \'1000\', DefaultView = \'Events\', DefaultRate = \'100\', DefaultScale = \'100\', WebColour = \'red\', Exif = \'\', SignalCheckColour = \'#0000c0\', Protocol = \'http\', Method = \'simple\', Host = \'10.42.0.10\', Port = \'80\', Path = \'\', Colours = \'3\', Width = \'1980\', Height = \'1080\', Orientation = \'0\', Deinterlacing = \'0\', Sequence = 1\'','/usr/share/zoneminder/www/includes/database.php',128),(1510745129.759203,'web_php',NULL,5017,-3,'FAT','SQL-ERR \'SQLSTATE[HY000]: General error: 1366 Incorrect integer value: \'\' for column \'V4LMultiBuffer\' at row 1\', statement was \'insert into Monitors set LinkedMonitors = \'\', Device = \'/dev/video0\', Channel = \'0\', Format = \'255\', Palette = \'0\', V4LMultiBuffer = \'\', V4LCapturesPerFrame = \'1\', Protocol = \'http\', Host = \'10.42.0.10\', Port = \'80\', Method = \'simple\', Options = \'\', Path = \'\', User = \'\', Pass = \'\', Colours = \'3\', Width = \'320\', Height = \'240\', Orientation = \'0\', Deinterlacing = \'0\', RTSPDescribe = \'\', LabelFormat = \'%N - %Y-%m-%d %H:%M:%S %z\', LabelX = \'0\', LabelY = \'0\', LabelSize = \'1\', ImageBufferCount = \'50\', WarmupCount = \'25\', PreEventCount = \'25\', PostEventCount = \'25\', StreamReplayBuffer = \'1000\', AlarmFrameCount = \'1\', EventPrefix = \'Event-\', SectionLength = \'600\', FrameSkip = \'0\', MotionFrameSkip = \'0\', AnalysisUpdateDelay = \'0\', FPSReportInterval = \'1000\', DefaultView = \'Events\', DefaultRate = \'100\', DefaultScale = \'100\', WebColour = \'red\', Exif = \'\', SignalCheckColour = \'#0000c0\', Name = \'Monitor-1\', ServerId = \'\', Type = \'Remote\', Function = \'Monitor\', Enabled = \'1\', AnalysisFPS = \'\', MaxFPS = \'\', AlarmMaxFPS = \'\', RefBlendPerc = \'6\', AlarmRefBlendPerc = \'6\', Sequence = 1\'','/usr/share/zoneminder/www/includes/database.php',128),(1510745183.710551,'web_php',NULL,5007,-3,'FAT','SQL-ERR \'SQLSTATE[HY000]: General error: 1366 Incorrect integer value: \'\' for column \'ServerId\' at row 1\', statement was \'insert into Monitors set LinkedMonitors = \'\', Name = \'Monitor-1\', ServerId = \'\', Type = \'Remote\', Function = \'Monitor\', Enabled = \'1\', RefBlendPerc = \'6\', AlarmRefBlendPerc = \'6\', AnalysisFPS = \'\', MaxFPS = \'\', AlarmMaxFPS = \'\', Device = \'/dev/video0\', Channel = \'0\', Format = \'255\', Palette = \'0\', V4LMultiBuffer = \'\', V4LCapturesPerFrame = \'1\', Options = \'\', LabelFormat = \'%N - %Y-%m-%d %H:%M:%S %z\', LabelX = \'0\', LabelY = \'0\', LabelSize = \'1\', ImageBufferCount = \'50\', WarmupCount = \'25\', PreEventCount = \'25\', PostEventCount = \'25\', StreamReplayBuffer = \'1000\', AlarmFrameCount = \'1\', EventPrefix = \'Event-\', SectionLength = \'600\', FrameSkip = \'0\', MotionFrameSkip = \'0\', AnalysisUpdateDelay = \'0\', FPSReportInterval = \'1000\', DefaultView = \'Events\', DefaultRate = \'100\', DefaultScale = \'100\', WebColour = \'red\', Exif = \'0\', SignalCheckColour = \'#0000c0\', Protocol = \'http\', Method = \'simple\', Host = \'10.42.0.10\', Port = \'80\', Path = \'\', Colours = \'3\', Width = \'320\', Height = \'240\', Orientation = \'0\', Deinterlacing = \'0\', Sequence = 1\'','/usr/share/zoneminder/www/includes/database.php',128),(1510745225.429565,'web_php',NULL,5015,-1,'WAR','Unable to determine path for arp command, type -p arp returned \'127\' output is: -p: not found\narp is /usr/sbin/arp','/usr/share/zoneminder/www/skins/classic/views/monitorprobe.php',300),(1510745303.543060,'zmaudit',NULL,4687,-3,'FAT','Can\'t execute: Expression #3 of SELECT list is not in GROUP BY clause and contains nonaggregated column \'zm.E.StartTime\' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by','zmaudit.pl',NULL),(1510745303.552340,'zmdc',NULL,4655,-2,'ERR','\'zmaudit.pl -c\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510745303.555930,'zmdc',NULL,4655,0,'INF','Starting pending process, zmaudit.pl -c','zmdc.pl',NULL),(1510745303.565730,'zmdc',NULL,4655,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 13:28:23, pid = 5144','zmdc.pl',NULL),(1510745303.565790,'zmdc',NULL,5144,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 13:28:23','zmdc.pl',NULL),(1510745441.116730,'web_php',NULL,5017,-3,'FAT','SQL-ERR \'SQLSTATE[HY000]: General error: 1366 Incorrect integer value: \'\' for column \'V4LMultiBuffer\' at row 1\', statement was \'insert into Monitors set LinkedMonitors = \'\', Device = \'/dev/video0\', Channel = \'0\', Format = \'255\', Palette = \'0\', V4LMultiBuffer = \'\', V4LCapturesPerFrame = \'1\', Protocol = \'http\', Host = \'10.42.0.10\', Port = \'80\', Method = \'simple\', Options = \'\', Path = \'\', User = \'\', Pass = \'\', Colours = \'3\', Width = \'320\', Height = \'240\', Orientation = \'0\', Deinterlacing = \'0\', RTSPDescribe = \'\', LabelFormat = \'%N - %Y-%m-%d %H:%M:%S %z\', LabelX = \'0\', LabelY = \'0\', LabelSize = \'1\', ImageBufferCount = \'50\', WarmupCount = \'25\', PreEventCount = \'25\', PostEventCount = \'25\', StreamReplayBuffer = \'1000\', AlarmFrameCount = \'1\', EventPrefix = \'Event-\', SectionLength = \'600\', FrameSkip = \'0\', MotionFrameSkip = \'0\', AnalysisUpdateDelay = \'0\', FPSReportInterval = \'1000\', DefaultView = \'Events\', DefaultRate = \'100\', DefaultScale = \'100\', WebColour = \'red\', Exif = \'0\', SignalCheckColour = \'#0000c0\', Name = \'Monitor-1\', ServerId = \'\', Type = \'Remote\', Function = \'Monitor\', Enabled = \'1\', AnalysisFPS = \'\', MaxFPS = \'\', AlarmMaxFPS = \'\', RefBlendPerc = \'6\', AlarmRefBlendPerc = \'6\', Sequence = 1\'','/usr/share/zoneminder/www/includes/database.php',128),(1510745473.448387,'web_php',NULL,5005,-3,'FAT','SQL-ERR \'SQLSTATE[HY000]: General error: 1366 Incorrect integer value: \'\' for column \'ServerId\' at row 1\', statement was \'insert into Monitors set LinkedMonitors = \'\', Name = \'Monitor-1\', ServerId = \'\', Type = \'Remote\', Function = \'Monitor\', Enabled = \'1\', RefBlendPerc = \'6\', AlarmRefBlendPerc = \'6\', AnalysisFPS = \'\', MaxFPS = \'\', AlarmMaxFPS = \'\', Device = \'/dev/video0\', Channel = \'0\', Format = \'255\', Palette = \'0\', V4LMultiBuffer = \'\', V4LCapturesPerFrame = \'1\', Options = \'\', LabelFormat = \'%N - %Y-%m-%d %H:%M:%S %z\', LabelX = \'0\', LabelY = \'0\', LabelSize = \'1\', ImageBufferCount = \'50\', WarmupCount = \'25\', PreEventCount = \'25\', PostEventCount = \'25\', StreamReplayBuffer = \'1000\', AlarmFrameCount = \'1\', EventPrefix = \'Event-\', SectionLength = \'600\', FrameSkip = \'0\', MotionFrameSkip = \'0\', AnalysisUpdateDelay = \'0\', FPSReportInterval = \'1000\', DefaultView = \'Events\', DefaultRate = \'100\', DefaultScale = \'100\', WebColour = \'red\', Exif = \'0\', SignalCheckColour = \'#0000c0\', Protocol = \'http\', Method = \'simple\', Host = \'10.42.0.10\', Port = \'80\', Path = \'\', Colours = \'3\', Width = \'320\', Height = \'240\', Orientation = \'0\', Deinterlacing = \'0\', Sequence = 1\'','/usr/share/zoneminder/www/includes/database.php',128),(1510745633.905060,'zmpkg',NULL,5287,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510745633.910010,'zmpkg',NULL,5287,0,'INF','Command: stop','zmpkg.pl',NULL),(1510745634.138550,'zmdc',NULL,4655,0,'INF','\'zmtelemetry.pl\' sending stop to pid 4701 at 17/11/15 13:33:54','zmdc.pl',NULL),(1510745634.144140,'zmdc',NULL,4655,0,'INF','\'zmaudit.pl -c\' sending stop to pid 5144 at 17/11/15 13:33:54','zmdc.pl',NULL),(1510745634.149650,'zmdc',NULL,4655,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510745634.154940,'zmdc',NULL,4655,0,'INF','\'zmfilter.pl\' sending stop to pid 4682 at 17/11/15 13:33:54','zmdc.pl',NULL),(1510745634.169500,'zmdc',NULL,4655,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510745634.174050,'zmdc',NULL,4655,0,'INF','\'zmwatch.pl\' sending stop to pid 4693 at 17/11/15 13:33:54','zmdc.pl',NULL),(1510745634.177000,'zmdc',NULL,4655,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510745634.182090,'zmdc',NULL,4655,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510745644.305140,'zmdc',NULL,4655,0,'INF','Server shutdown at 17/11/15 13:34:04','zmdc.pl',NULL),(1510745644.409930,'zmpkg',NULL,5324,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510745644.417030,'zmpkg',NULL,5324,0,'INF','Command: start','zmpkg.pl',NULL),(1510745644.596240,'zmdc',NULL,5339,0,'INF','Server starting at 17/11/15 13:34:04','zmdc.pl',NULL),(1510745647.602550,'zmpkg',NULL,5324,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510745647.692850,'zmdc',NULL,5365,0,'INF','\'zmfilter.pl\' started at 17/11/15 13:34:07','zmdc.pl',NULL),(1510745647.692850,'zmdc',NULL,5339,0,'INF','\'zmfilter.pl\' starting at 17/11/15 13:34:07, pid = 5365','zmdc.pl',NULL),(1510745647.786000,'zmdc',NULL,5339,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 13:34:07, pid = 5370','zmdc.pl',NULL),(1510745647.786010,'zmdc',NULL,5370,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 13:34:07','zmdc.pl',NULL),(1510745647.836800,'zmfilter',NULL,5365,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510745647.868190,'zmdc',NULL,5339,0,'INF','\'zmwatch.pl\' starting at 17/11/15 13:34:07, pid = 5375','zmdc.pl',NULL),(1510745647.868320,'zmdc',NULL,5375,0,'INF','\'zmwatch.pl\' started at 17/11/15 13:34:07','zmdc.pl',NULL),(1510745647.942680,'zmwatch',NULL,5375,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510745647.947290,'zmwatch',NULL,5375,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510745647.952190,'zmdc',NULL,5380,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 13:34:07','zmdc.pl',NULL),(1510745647.952190,'zmdc',NULL,5339,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 13:34:07, pid = 5380','zmdc.pl',NULL),(1510745663.833242,'web_php',NULL,5008,-3,'FAT','SQL-ERR \'SQLSTATE[HY000]: General error: 1366 Incorrect integer value: \'\' for column \'ServerId\' at row 1\', statement was \'insert into Monitors set LinkedMonitors = \'\', Name = \'Monitor-1\', ServerId = \'\', Type = \'Remote\', Function = \'Monitor\', Enabled = \'1\', RefBlendPerc = \'6\', AlarmRefBlendPerc = \'6\', AnalysisFPS = \'\', MaxFPS = \'\', AlarmMaxFPS = \'\', Device = \'/dev/video0\', Channel = \'0\', Format = \'255\', Palette = \'0\', V4LMultiBuffer = \'\', V4LCapturesPerFrame = \'1\', Options = \'\', LabelFormat = \'%N - %Y-%m-%d %H:%M:%S %z\', LabelX = \'0\', LabelY = \'0\', LabelSize = \'1\', ImageBufferCount = \'50\', WarmupCount = \'25\', PreEventCount = \'25\', PostEventCount = \'25\', StreamReplayBuffer = \'1000\', AlarmFrameCount = \'1\', EventPrefix = \'Event-\', SectionLength = \'600\', FrameSkip = \'0\', MotionFrameSkip = \'0\', AnalysisUpdateDelay = \'0\', FPSReportInterval = \'1000\', DefaultView = \'Events\', DefaultRate = \'100\', DefaultScale = \'100\', WebColour = \'red\', Exif = \'0\', SignalCheckColour = \'#0000c0\', Protocol = \'http\', Method = \'simple\', Host = \'10.42.0.10\', Port = \'80\', Path = \'\', Colours = \'3\', Width = \'320\', Height = \'240\', Orientation = \'0\', Deinterlacing = \'0\', Sequence = 1\'','/usr/share/zoneminder/www/includes/database.php',128),(1510746932.786333,'web_php',NULL,5489,-1,'WAR','Unable to determine path for arp command, type -p arp returned \'127\' output is: -p: not found\narp is /usr/sbin/arp','/usr/share/zoneminder/www/skins/classic/views/monitorprobe.php',300),(1510749185.749080,'zmpkg',NULL,6559,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510749185.752760,'zmpkg',NULL,6559,0,'INF','Command: start','zmpkg.pl',NULL),(1510749185.839810,'zmsystemctl',NULL,6565,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510749185.919890,'zmpkg',NULL,6570,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510749185.923720,'zmpkg',NULL,6570,0,'INF','Command: start','zmpkg.pl',NULL),(1510749186.091720,'zmdc',NULL,6587,0,'INF','Server starting at 17/11/15 14:33:06','zmdc.pl',NULL),(1510749189.097880,'zmpkg',NULL,6570,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510749189.185970,'zmdc',NULL,6587,0,'INF','\'zmc -m 1\' starting at 17/11/15 14:33:09, pid = 6614','zmdc.pl',NULL),(1510749189.186080,'zmdc',NULL,6614,0,'INF','\'zmc -m 1\' started at 17/11/15 14:33:09','zmdc.pl',NULL),(1510749189.229940,'zmdc',NULL,6587,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510749189.232770,'zmdc',NULL,6587,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510749189.235060,'zmdc',NULL,6587,0,'INF','\'zmc -m 1\' starting at 17/11/15 14:33:09, pid = 6619','zmdc.pl',NULL),(1510749189.235340,'zmdc',NULL,6619,0,'INF','\'zmc -m 1\' started at 17/11/15 14:33:09','zmdc.pl',NULL),(1510749189.276220,'zmdc',NULL,6587,0,'INF','\'zmfilter.pl\' starting at 17/11/15 14:33:09, pid = 6622','zmdc.pl',NULL),(1510749189.276280,'zmdc',NULL,6622,0,'INF','\'zmfilter.pl\' started at 17/11/15 14:33:09','zmdc.pl',NULL),(1510749189.364960,'zmdc',NULL,6587,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 14:33:09, pid = 6628','zmdc.pl',NULL),(1510749189.365050,'zmdc',NULL,6628,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 14:33:09','zmdc.pl',NULL),(1510749189.396181,'zmc_m1',0,6619,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510749189.434080,'zmfilter',NULL,6622,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510749189.467430,'zmdc',NULL,6587,0,'INF','\'zmwatch.pl\' starting at 17/11/15 14:33:09, pid = 6636','zmdc.pl',NULL),(1510749189.467440,'zmdc',NULL,6636,0,'INF','\'zmwatch.pl\' started at 17/11/15 14:33:09','zmdc.pl',NULL),(1510749189.542990,'zmwatch',NULL,6636,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510749189.548660,'zmwatch',NULL,6636,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510749189.555490,'zmdc',NULL,6587,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 14:33:09, pid = 6642','zmdc.pl',NULL),(1510749189.555520,'zmdc',NULL,6642,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 14:33:09','zmdc.pl',NULL),(1510749194.604639,'zms',0,6658,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510749194.609574,'zms',0,6658,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510749230.348807,'zmc_m1',0,6619,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510749238.755633,'zms',0,6658,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510749238.758652,'zms',0,6659,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510749238.761475,'zms',0,6659,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510749238.773330,'zms',0,6659,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510749238.798508,'zms',0,6659,-2,'ERR','Terminating, last frame sent time 1510749238.763991 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510749240.232150,'zms',0,6665,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510749240.237550,'zms',0,6665,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510749247.157594,'zms',0,6665,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510749270.354761,'zmc_m1',0,6619,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749310.348718,'zmc_m1',0,6619,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749350.349049,'zmc_m1',0,6619,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749390.347133,'zmc_m1',0,6619,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749406.329850,'zmpkg',NULL,6732,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510749406.333250,'zmpkg',NULL,6732,0,'INF','Command: restart','zmpkg.pl',NULL),(1510749406.421840,'zmsystemctl',NULL,6738,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510749406.501950,'zmpkg',NULL,6742,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510749406.505440,'zmpkg',NULL,6742,0,'INF','Command: stop','zmpkg.pl',NULL),(1510749406.677610,'zmdc',NULL,6587,0,'INF','\'zmfilter.pl\' sending stop to pid 6622 at 17/11/15 14:36:46','zmdc.pl',NULL),(1510749406.680560,'zmdc',NULL,6587,0,'INF','\'zmaudit.pl -c\' sending stop to pid 6628 at 17/11/15 14:36:46','zmdc.pl',NULL),(1510749406.682130,'zmdc',NULL,6587,0,'INF','\'zmwatch.pl\' sending stop to pid 6636 at 17/11/15 14:36:46','zmdc.pl',NULL),(1510749406.687510,'zmdc',NULL,6587,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510749406.692790,'zmdc',NULL,6587,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510749406.697840,'zmdc',NULL,6587,0,'INF','\'zmtelemetry.pl\' sending stop to pid 6642 at 17/11/15 14:36:46','zmdc.pl',NULL),(1510749406.712520,'zmdc',NULL,6587,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510749406.717400,'zmdc',NULL,6587,0,'INF','\'zmc -m 1\' sending stop to pid 6619 at 17/11/15 14:36:46','zmdc.pl',NULL),(1510749406.722340,'zmdc',NULL,6587,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510749406.725140,'zmc_m1',0,6619,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510749412.726130,'zmdc',NULL,6587,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 14:36:52. Sending KILL to pid 6619','zmdc.pl',NULL),(1510749412.741170,'zmdc',NULL,6587,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510749422.840970,'zmdc',NULL,6587,0,'INF','Server shutdown at 17/11/15 14:37:02','zmdc.pl',NULL),(1510749422.962510,'zmpkg',NULL,6779,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510749422.966700,'zmpkg',NULL,6779,0,'INF','Command: start','zmpkg.pl',NULL),(1510749423.162590,'zmdc',NULL,6793,0,'INF','Server starting at 17/11/15 14:37:03','zmdc.pl',NULL),(1510749426.168500,'zmpkg',NULL,6779,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510749426.271690,'zmdc',NULL,6819,0,'INF','\'zmc -m 1\' started at 17/11/15 14:37:06','zmdc.pl',NULL),(1510749426.271680,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 14:37:06, pid = 6819','zmdc.pl',NULL),(1510749426.309290,'zmdc',NULL,6793,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510749426.314680,'zmdc',NULL,6793,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510749426.321090,'zmdc',NULL,6823,0,'INF','\'zmc -m 1\' started at 17/11/15 14:37:06','zmdc.pl',NULL),(1510749426.321070,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 14:37:06, pid = 6823','zmdc.pl',NULL),(1510749426.359420,'zmdc',NULL,6825,0,'INF','\'zmfilter.pl\' started at 17/11/15 14:37:06','zmdc.pl',NULL),(1510749426.359420,'zmdc',NULL,6793,0,'INF','\'zmfilter.pl\' starting at 17/11/15 14:37:06, pid = 6825','zmdc.pl',NULL),(1510749426.448210,'zmdc',NULL,6793,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 14:37:06, pid = 6831','zmdc.pl',NULL),(1510749426.448240,'zmdc',NULL,6831,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 14:37:06','zmdc.pl',NULL),(1510749426.503929,'zmc_m1',0,6823,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510749426.508520,'zmfilter',NULL,6825,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510749426.531810,'zmdc',NULL,6793,0,'INF','\'zmwatch.pl\' starting at 17/11/15 14:37:06, pid = 6835','zmdc.pl',NULL),(1510749426.531890,'zmdc',NULL,6835,0,'INF','\'zmwatch.pl\' started at 17/11/15 14:37:06','zmdc.pl',NULL),(1510749426.606300,'zmwatch',NULL,6835,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510749426.609520,'zmwatch',NULL,6835,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510749426.614270,'zmdc',NULL,6843,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 14:37:06','zmdc.pl',NULL),(1510749426.614270,'zmdc',NULL,6793,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 14:37:06, pid = 6843','zmdc.pl',NULL),(1510749430.540640,'zms',0,6860,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510749430.545976,'zms',0,6860,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510749439.666835,'zms',0,6860,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510749467.508742,'zmc_m1',0,6823,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510749507.504892,'zmc_m1',0,6823,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749547.504979,'zmc_m1',0,6823,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749587.505945,'zmc_m1',0,6823,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749627.505594,'zmc_m1',0,6823,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749667.525282,'zmc_m1',0,6823,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749707.491521,'zmc_m1',0,6823,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749747.507368,'zmc_m1',0,6823,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749787.525961,'zmc_m1',0,6823,0,'INF','Monitor-1: 9000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749827.488602,'zmc_m1',0,6823,0,'INF','Monitor-1: 10000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749867.502028,'zmc_m1',0,6823,0,'INF','Monitor-1: 11000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749907.488363,'zmc_m1',0,6823,0,'INF','Monitor-1: 12000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749947.504606,'zmc_m1',0,6823,0,'INF','Monitor-1: 13000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510749987.497539,'zmc_m1',0,6823,0,'INF','Monitor-1: 14000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750027.503237,'zmc_m1',0,6823,0,'INF','Monitor-1: 15000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750067.501826,'zmc_m1',0,6823,0,'INF','Monitor-1: 16000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750107.498454,'zmc_m1',0,6823,0,'INF','Monitor-1: 17000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750147.485187,'zmc_m1',0,6823,0,'INF','Monitor-1: 18000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750187.499895,'zmc_m1',0,6823,0,'INF','Monitor-1: 19000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750227.483979,'zmc_m1',0,6823,0,'INF','Monitor-1: 20000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750267.495704,'zmc_m1',0,6823,0,'INF','Monitor-1: 21000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750307.493108,'zmc_m1',0,6823,0,'INF','Monitor-1: 22000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750347.481123,'zmc_m1',0,6823,0,'INF','Monitor-1: 23000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750387.481177,'zmc_m1',0,6823,0,'INF','Monitor-1: 24000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750427.484504,'zmc_m1',0,6823,0,'INF','Monitor-1: 25000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750467.479862,'zmc_m1',0,6823,0,'INF','Monitor-1: 26000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750507.480222,'zmc_m1',0,6823,0,'INF','Monitor-1: 27000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750547.481897,'zmc_m1',0,6823,0,'INF','Monitor-1: 28000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750587.481315,'zmc_m1',0,6823,0,'INF','Monitor-1: 29000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750627.479886,'zmc_m1',0,6823,0,'INF','Monitor-1: 30000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750667.480212,'zmc_m1',0,6823,0,'INF','Monitor-1: 31000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750707.489523,'zmc_m1',0,6823,0,'INF','Monitor-1: 32000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750747.486438,'zmc_m1',0,6823,0,'INF','Monitor-1: 33000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750787.478552,'zmc_m1',0,6823,0,'INF','Monitor-1: 34000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750827.477925,'zmc_m1',0,6823,0,'INF','Monitor-1: 35000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750867.478106,'zmc_m1',0,6823,0,'INF','Monitor-1: 36000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750907.485107,'zmc_m1',0,6823,0,'INF','Monitor-1: 37000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750947.482658,'zmc_m1',0,6823,0,'INF','Monitor-1: 38000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510750987.475487,'zmc_m1',0,6823,0,'INF','Monitor-1: 39000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751027.494199,'zmc_m1',0,6823,0,'INF','Monitor-1: 40000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751067.503373,'zmc_m1',0,6823,0,'INF','Monitor-1: 41000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751107.480580,'zmc_m1',0,6823,0,'INF','Monitor-1: 42000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751147.481340,'zmc_m1',0,6823,0,'INF','Monitor-1: 43000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751187.479352,'zmc_m1',0,6823,0,'INF','Monitor-1: 44000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751227.471725,'zmc_m1',0,6823,0,'INF','Monitor-1: 45000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751267.479072,'zmc_m1',0,6823,0,'INF','Monitor-1: 46000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751307.470742,'zmc_m1',0,6823,0,'INF','Monitor-1: 47000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751347.470865,'zmc_m1',0,6823,0,'INF','Monitor-1: 48000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751387.476949,'zmc_m1',0,6823,0,'INF','Monitor-1: 49000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751427.466092,'zmc_m1',0,6823,0,'INF','Monitor-1: 50000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751467.475909,'zmc_m1',0,6823,0,'INF','Monitor-1: 51000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751507.475039,'zmc_m1',0,6823,0,'INF','Monitor-1: 52000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751547.473975,'zmc_m1',0,6823,0,'INF','Monitor-1: 53000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751587.453535,'zmc_m1',0,6823,0,'INF','Monitor-1: 54000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751627.454102,'zmc_m1',0,6823,0,'INF','Monitor-1: 55000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751667.451790,'zmc_m1',0,6823,0,'INF','Monitor-1: 56000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751707.452111,'zmc_m1',0,6823,0,'INF','Monitor-1: 57000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751747.451014,'zmc_m1',0,6823,0,'INF','Monitor-1: 58000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751787.451043,'zmc_m1',0,6823,0,'INF','Monitor-1: 59000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751827.450478,'zmc_m1',0,6823,0,'INF','Monitor-1: 60000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751867.448861,'zmc_m1',0,6823,0,'INF','Monitor-1: 61000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751907.449425,'zmc_m1',0,6823,0,'INF','Monitor-1: 62000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751947.445513,'zmc_m1',0,6823,0,'INF','Monitor-1: 63000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510751987.445323,'zmc_m1',0,6823,0,'INF','Monitor-1: 64000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752027.446762,'zmc_m1',0,6823,0,'INF','Monitor-1: 65000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752067.461180,'zmc_m1',0,6823,0,'INF','Monitor-1: 66000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752107.445524,'zmc_m1',0,6823,0,'INF','Monitor-1: 67000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752147.441672,'zmc_m1',0,6823,0,'INF','Monitor-1: 68000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752187.444320,'zmc_m1',0,6823,0,'INF','Monitor-1: 69000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752227.443699,'zmc_m1',0,6823,0,'INF','Monitor-1: 70000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752267.442262,'zmc_m1',0,6823,0,'INF','Monitor-1: 71000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752307.442038,'zmc_m1',0,6823,0,'INF','Monitor-1: 72000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752347.440775,'zmc_m1',0,6823,0,'INF','Monitor-1: 73000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752387.450397,'zmc_m1',0,6823,0,'INF','Monitor-1: 74000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752427.439259,'zmc_m1',0,6823,0,'INF','Monitor-1: 75000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752467.452134,'zmc_m1',0,6823,0,'INF','Monitor-1: 76000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752507.450976,'zmc_m1',0,6823,0,'INF','Monitor-1: 77000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752547.436963,'zmc_m1',0,6823,0,'INF','Monitor-1: 78000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752587.437177,'zmc_m1',0,6823,0,'INF','Monitor-1: 79000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752627.447551,'zmc_m1',0,6823,0,'INF','Monitor-1: 80000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752667.435364,'zmc_m1',0,6823,0,'INF','Monitor-1: 81000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752707.435144,'zmc_m1',0,6823,0,'INF','Monitor-1: 82000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752747.433802,'zmc_m1',0,6823,0,'INF','Monitor-1: 83000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752787.433517,'zmc_m1',0,6823,0,'INF','Monitor-1: 84000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752827.432597,'zmc_m1',0,6823,0,'INF','Monitor-1: 85000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752867.433007,'zmc_m1',0,6823,0,'INF','Monitor-1: 86000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752907.432277,'zmc_m1',0,6823,0,'INF','Monitor-1: 87000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752947.432312,'zmc_m1',0,6823,0,'INF','Monitor-1: 88000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510752987.430956,'zmc_m1',0,6823,0,'INF','Monitor-1: 89000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753027.430358,'zmc_m1',0,6823,0,'INF','Monitor-1: 90000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753067.440131,'zmc_m1',0,6823,0,'INF','Monitor-1: 91000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753107.428755,'zmc_m1',0,6823,0,'INF','Monitor-1: 92000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753147.439518,'zmc_m1',0,6823,0,'INF','Monitor-1: 93000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753187.426712,'zmc_m1',0,6823,0,'INF','Monitor-1: 94000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753227.426119,'zmc_m1',0,6823,0,'INF','Monitor-1: 95000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753267.425298,'zmc_m1',0,6823,0,'INF','Monitor-1: 96000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753307.424778,'zmc_m1',0,6823,0,'INF','Monitor-1: 97000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753347.424434,'zmc_m1',0,6823,0,'INF','Monitor-1: 98000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753387.435830,'zmc_m1',0,6823,0,'INF','Monitor-1: 99000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753427.422950,'zmc_m1',0,6823,0,'INF','Monitor-1: 100000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753467.433393,'zmc_m1',0,6823,0,'INF','Monitor-1: 101000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753507.433340,'zmc_m1',0,6823,0,'INF','Monitor-1: 102000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753547.420696,'zmc_m1',0,6823,0,'INF','Monitor-1: 103000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753587.420611,'zmc_m1',0,6823,0,'INF','Monitor-1: 104000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753627.431466,'zmc_m1',0,6823,0,'INF','Monitor-1: 105000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753667.430297,'zmc_m1',0,6823,0,'INF','Monitor-1: 106000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753707.429255,'zmc_m1',0,6823,0,'INF','Monitor-1: 107000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753747.418002,'zmc_m1',0,6823,0,'INF','Monitor-1: 108000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753787.424669,'zmc_m1',0,6823,0,'INF','Monitor-1: 109000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753827.427382,'zmc_m1',0,6823,0,'INF','Monitor-1: 110000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753867.429209,'zmc_m1',0,6823,0,'INF','Monitor-1: 111000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753907.413639,'zmc_m1',0,6823,0,'INF','Monitor-1: 112000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753947.434400,'zmc_m1',0,6823,0,'INF','Monitor-1: 113000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510753987.443551,'zmc_m1',0,6823,0,'INF','Monitor-1: 114000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754027.413226,'zmc_m1',0,6823,0,'INF','Monitor-1: 115000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754067.429327,'zmc_m1',0,6823,0,'INF','Monitor-1: 116000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754107.426753,'zmc_m1',0,6823,0,'INF','Monitor-1: 117000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754147.411157,'zmc_m1',0,6823,0,'INF','Monitor-1: 118000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754187.446071,'zmc_m1',0,6823,0,'INF','Monitor-1: 119000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754227.424915,'zmc_m1',0,6823,0,'INF','Monitor-1: 120000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754267.424546,'zmc_m1',0,6823,0,'INF','Monitor-1: 121000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754307.425671,'zmc_m1',0,6823,0,'INF','Monitor-1: 122000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754347.420892,'zmc_m1',0,6823,0,'INF','Monitor-1: 123000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754387.404059,'zmc_m1',0,6823,0,'INF','Monitor-1: 124000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754427.418048,'zmc_m1',0,6823,0,'INF','Monitor-1: 125000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754467.420261,'zmc_m1',0,6823,0,'INF','Monitor-1: 126000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754507.420517,'zmc_m1',0,6823,0,'INF','Monitor-1: 127000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754547.421190,'zmc_m1',0,6823,0,'INF','Monitor-1: 128000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754587.419403,'zmc_m1',0,6823,0,'INF','Monitor-1: 129000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754627.403665,'zmc_m1',0,6823,0,'INF','Monitor-1: 130000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754667.403375,'zmc_m1',0,6823,0,'INF','Monitor-1: 131000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754707.415735,'zmc_m1',0,6823,0,'INF','Monitor-1: 132000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754747.403040,'zmc_m1',0,6823,0,'INF','Monitor-1: 133000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754787.403014,'zmc_m1',0,6823,0,'INF','Monitor-1: 134000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754827.402298,'zmc_m1',0,6823,0,'INF','Monitor-1: 135000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754867.434635,'zmc_m1',0,6823,0,'INF','Monitor-1: 136000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754907.415790,'zmc_m1',0,6823,0,'INF','Monitor-1: 137000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754947.407476,'zmc_m1',0,6823,0,'INF','Monitor-1: 138000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510754987.399879,'zmc_m1',0,6823,0,'INF','Monitor-1: 139000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755027.410156,'zmc_m1',0,6823,0,'INF','Monitor-1: 140000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755067.415352,'zmc_m1',0,6823,0,'INF','Monitor-1: 141000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755107.414207,'zmc_m1',0,6823,0,'INF','Monitor-1: 142000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755147.394899,'zmc_m1',0,6823,0,'INF','Monitor-1: 143000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755187.409507,'zmc_m1',0,6823,0,'INF','Monitor-1: 144000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755227.394640,'zmc_m1',0,6823,0,'INF','Monitor-1: 145000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755267.394215,'zmc_m1',0,6823,0,'INF','Monitor-1: 146000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755307.393477,'zmc_m1',0,6823,0,'INF','Monitor-1: 147000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755347.393171,'zmc_m1',0,6823,0,'INF','Monitor-1: 148000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755387.395019,'zmc_m1',0,6823,0,'INF','Monitor-1: 149000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755427.406487,'zmc_m1',0,6823,0,'INF','Monitor-1: 150000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755467.391371,'zmc_m1',0,6823,0,'INF','Monitor-1: 151000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755507.393554,'zmc_m1',0,6823,0,'INF','Monitor-1: 152000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755547.393410,'zmc_m1',0,6823,0,'INF','Monitor-1: 153000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755587.394888,'zmc_m1',0,6823,0,'INF','Monitor-1: 154000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755627.392309,'zmc_m1',0,6823,0,'INF','Monitor-1: 155000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755667.405366,'zmc_m1',0,6823,0,'INF','Monitor-1: 156000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755707.391776,'zmc_m1',0,6823,0,'INF','Monitor-1: 157000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755747.381743,'zmc_m1',0,6823,0,'INF','Monitor-1: 158000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755787.390145,'zmc_m1',0,6823,0,'INF','Monitor-1: 159000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755827.390583,'zmc_m1',0,6823,0,'INF','Monitor-1: 160000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755867.397117,'zmc_m1',0,6823,0,'INF','Monitor-1: 161000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755907.415626,'zmc_m1',0,6823,0,'INF','Monitor-1: 162000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755947.395132,'zmc_m1',0,6823,0,'INF','Monitor-1: 163000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510755987.394638,'zmc_m1',0,6823,0,'INF','Monitor-1: 164000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756027.393785,'zmc_m1',0,6823,0,'INF','Monitor-1: 165000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756067.386095,'zmc_m1',0,6823,0,'INF','Monitor-1: 166000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756107.396991,'zmc_m1',0,6823,0,'INF','Monitor-1: 167000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756147.412346,'zmc_m1',0,6823,0,'INF','Monitor-1: 168000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756187.384223,'zmc_m1',0,6823,0,'INF','Monitor-1: 169000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756227.382762,'zmc_m1',0,6823,0,'INF','Monitor-1: 170000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756267.399932,'zmc_m1',0,6823,0,'INF','Monitor-1: 171000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756307.390141,'zmc_m1',0,6823,0,'INF','Monitor-1: 172000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756347.385920,'zmc_m1',0,6823,0,'INF','Monitor-1: 173000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756387.383180,'zmc_m1',0,6823,0,'INF','Monitor-1: 174000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756427.380966,'zmc_m1',0,6823,0,'INF','Monitor-1: 175000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756467.387295,'zmc_m1',0,6823,0,'INF','Monitor-1: 176000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756507.389227,'zmc_m1',0,6823,0,'INF','Monitor-1: 177000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756547.385294,'zmc_m1',0,6823,0,'INF','Monitor-1: 178000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756587.365452,'zmc_m1',0,6823,0,'INF','Monitor-1: 179000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756627.364403,'zmc_m1',0,6823,0,'INF','Monitor-1: 180000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756667.363627,'zmc_m1',0,6823,0,'INF','Monitor-1: 181000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756707.385336,'zmc_m1',0,6823,0,'INF','Monitor-1: 182000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756747.362360,'zmc_m1',0,6823,0,'INF','Monitor-1: 183000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756787.380989,'zmc_m1',0,6823,0,'INF','Monitor-1: 184000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756827.361307,'zmc_m1',0,6823,0,'INF','Monitor-1: 185000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756867.392818,'zmc_m1',0,6823,0,'INF','Monitor-1: 186000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756907.374024,'zmc_m1',0,6823,0,'INF','Monitor-1: 187000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756947.379686,'zmc_m1',0,6823,0,'INF','Monitor-1: 188000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510756987.358651,'zmc_m1',0,6823,0,'INF','Monitor-1: 189000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757027.357526,'zmc_m1',0,6823,0,'INF','Monitor-1: 190000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757067.369124,'zmc_m1',0,6823,0,'INF','Monitor-1: 191000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757107.356765,'zmc_m1',0,6823,0,'INF','Monitor-1: 192000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757147.355605,'zmc_m1',0,6823,0,'INF','Monitor-1: 193000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757187.353725,'zmc_m1',0,6823,0,'INF','Monitor-1: 194000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757190.772591,'zms',0,8936,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510757190.777732,'zms',0,8936,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510757225.504938,'zms',0,8936,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510757227.376472,'zmc_m1',0,6823,0,'INF','Monitor-1: 195000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757267.354707,'zmc_m1',0,6823,0,'INF','Monitor-1: 196000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757307.351225,'zmc_m1',0,6823,0,'INF','Monitor-1: 197000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757347.354005,'zmc_m1',0,6823,0,'INF','Monitor-1: 198000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757387.353759,'zmc_m1',0,6823,0,'INF','Monitor-1: 199000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757427.364506,'zmc_m1',0,6823,0,'INF','Monitor-1: 200000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757467.383972,'zmc_m1',0,6823,0,'INF','Monitor-1: 201000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757507.351586,'zmc_m1',0,6823,0,'INF','Monitor-1: 202000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757512.488900,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510757512.574720,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510757512.653500,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 6823 at 17/11/15 16:51:52','zmdc.pl',NULL),(1510757512.658999,'zmc_m1',0,6823,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510757518.660070,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 16:51:58. Sending KILL to pid 6823','zmdc.pl',NULL),(1510757518.673830,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510757518.769420,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 16:51:58, pid = 9035','zmdc.pl',NULL),(1510757518.769430,'zmdc',NULL,9035,0,'INF','\'zmc -m 1\' started at 17/11/15 16:51:58','zmdc.pl',NULL),(1510757518.867530,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510757518.912840,'zmc_m1',0,9035,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510757518.944280,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510757523.108693,'zms',0,9057,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510757523.114106,'zms',0,9057,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510757540.422710,'zmcontrol',NULL,9060,0,'INF','Starting control server 1/onvif','zmcontrol.pl',NULL),(1510757540.489910,'zmcontrol',NULL,9062,0,'INF','Control server 1/onvif starting at 17/11/15 16:52:20','zmcontrol.pl',NULL),(1510757540.950910,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757541.505560,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757542.146240,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757542.320500,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757548.776780,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757549.214130,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757549.408270,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757549.590710,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757549.745780,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757550.278160,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757550.471380,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757550.851550,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757553.734500,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757553.903170,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757554.052450,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757554.642170,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757554.771740,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757554.918370,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757555.029200,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757555.625100,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757555.806660,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757555.931540,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757556.428150,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757556.597780,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757556.734610,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757557.988420,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757558.007820,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757558.135600,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757558.933250,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757559.082130,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757559.921725,'zmc_m1',0,9035,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510757566.614020,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757566.765740,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757567.131220,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757567.145070,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757567.306880,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757567.321520,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757567.867730,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757568.001920,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757568.822390,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757568.837580,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757568.985060,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757569.001640,'zmcontrol',NULL,9062,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757594.442220,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510757594.536760,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510757594.627020,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 9035 at 17/11/15 16:53:14','zmdc.pl',NULL),(1510757594.632576,'zmc_m1',0,9035,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510757600.633610,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 16:53:20. Sending KILL to pid 9035','zmdc.pl',NULL),(1510757600.647090,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510757600.735630,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 16:53:20, pid = 9095','zmdc.pl',NULL),(1510757600.735680,'zmdc',NULL,9095,0,'INF','\'zmc -m 1\' started at 17/11/15 16:53:20','zmdc.pl',NULL),(1510757600.838070,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510757600.884502,'zmc_m1',0,9095,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510757600.923330,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510757600.928704,'web_php',NULL,6857,-2,'ERR','socket_bind( /var/run/zm/zms-976269w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510757601.012153,'web_js',NULL,5016,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-976269w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510757601.049666,'zms',0,9103,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510757601.052411,'zms',0,9103,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510757601.553603,'zms',0,9103,-2,'ERR','Terminating, last frame sent time 1510757601.053537 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510757603.231754,'web_php',NULL,5500,-2,'ERR','socket_bind( /var/run/zm/zms-976269w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510757603.254830,'web_js',NULL,5500,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-976269w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510757603.294218,'zms',0,9115,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510757603.296786,'zms',0,9115,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510757603.400693,'zms',0,9115,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510757603.987155,'zms',0,9115,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510757604.123984,'zms',0,9116,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510757604.129240,'zms',0,9116,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510757604.129470,'web_php',NULL,6403,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-976269s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510757606.393446,'web_php',NULL,6542,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-976269s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510757607.974890,'zmcontrol',NULL,9118,0,'INF','Starting control server 1/onvif','zmcontrol.pl',NULL),(1510757607.996450,'zmcontrol',NULL,9120,0,'INF','Control server 1/onvif starting at 17/11/15 16:53:27','zmcontrol.pl',NULL),(1510757608.309130,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757608.436680,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757609.007740,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757609.080070,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757609.210420,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757609.366150,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757609.521110,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757609.670070,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757610.369460,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757610.878060,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757611.044930,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757611.853500,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757611.989830,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757613.310290,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757613.601360,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757615.487510,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757615.891610,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757617.309610,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757617.785940,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757618.142080,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757621.145830,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757621.162210,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757621.931350,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757622.103120,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757622.239670,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757622.385440,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757622.544180,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757622.935950,'zmcontrol',NULL,9120,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510757632.029680,'zms',0,9116,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510757641.908724,'zmc_m1',0,9095,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510757681.908332,'zmc_m1',0,9095,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757689.777940,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510757689.853370,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510757689.933690,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 9095 at 17/11/15 16:54:49','zmdc.pl',NULL),(1510757689.936635,'zmc_m1',0,9095,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510757695.937590,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 16:54:55. Sending KILL to pid 9095','zmdc.pl',NULL),(1510757695.954770,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510757696.043780,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 16:54:56, pid = 9160','zmdc.pl',NULL),(1510757696.043880,'zmdc',NULL,9160,0,'INF','\'zmc -m 1\' started at 17/11/15 16:54:56','zmdc.pl',NULL),(1510757696.134120,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510757696.178648,'zmc_m1',0,9160,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510757696.208650,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510757737.228165,'zmc_m1',0,9160,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510757777.227308,'zmc_m1',0,9160,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757817.223840,'zmc_m1',0,9160,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757857.223229,'zmc_m1',0,9160,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757897.225276,'zmc_m1',0,9160,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757937.224468,'zmc_m1',0,9160,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510757938.859730,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510757938.939830,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510757939.016930,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 9160 at 17/11/15 16:58:59','zmdc.pl',NULL),(1510757939.022357,'zmc_m1',0,9160,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510757945.023630,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 16:59:05. Sending KILL to pid 9160','zmdc.pl',NULL),(1510757945.040400,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510757945.136320,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 16:59:05, pid = 9293','zmdc.pl',NULL),(1510757945.136320,'zmdc',NULL,9293,0,'INF','\'zmc -m 1\' started at 17/11/15 16:59:05','zmdc.pl',NULL),(1510757945.225840,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510757945.265635,'zmc_m1',0,9293,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510757945.305220,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510757947.647564,'zms',0,9315,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510757947.652667,'zms',0,9315,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510757955.974200,'zmcontrol',NULL,9319,0,'INF','Starting control server 1/onvif','zmcontrol.pl',NULL),(1510757956.003270,'zmcontrol',NULL,9321,0,'INF','Control server 1/onvif starting at 17/11/15 16:59:15','zmcontrol.pl',NULL),(1510757964.673133,'zms',0,9315,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510757985.003780,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510757985.090200,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510757985.174450,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 9293 at 17/11/15 16:59:45','zmdc.pl',NULL),(1510757985.179937,'zmc_m1',0,9293,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510757991.180980,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 16:59:51. Sending KILL to pid 9293','zmdc.pl',NULL),(1510757991.195170,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510757991.306990,'zmdc',NULL,9342,0,'INF','\'zmc -m 1\' started at 17/11/15 16:59:51','zmdc.pl',NULL),(1510757991.306990,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 16:59:51, pid = 9342','zmdc.pl',NULL),(1510757991.391610,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510757991.434807,'zmc_m1',0,9342,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510757991.470150,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510757994.264457,'zms',0,9363,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510757994.267357,'zms',0,9363,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510757997.759870,'zmcontrol',NULL,9365,0,'INF','Starting control server 1/onvif','zmcontrol.pl',NULL),(1510757997.781330,'zmcontrol',NULL,9367,0,'INF','Control server 1/onvif starting at 17/11/15 16:59:57','zmcontrol.pl',NULL),(1510758013.915044,'web_js',NULL,5751,-2,'ERR','TypeError: $(...).preset.getValue is not a function','zm/skins/classic/views/js/controlpreset.js',3),(1510758029.703238,'zms',0,9363,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510758032.473628,'zmc_m1',0,9342,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510758072.460917,'zmc_m1',0,9342,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758112.474898,'zmc_m1',0,9342,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758152.458418,'zmc_m1',0,9342,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758167.960980,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510758168.043000,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510758168.121710,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 9342 at 17/11/15 17:02:48','zmdc.pl',NULL),(1510758168.127103,'zmc_m1',0,9342,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510758174.128070,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:02:54. Sending KILL to pid 9342','zmdc.pl',NULL),(1510758174.131970,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' exited normally','zmdc.pl',NULL),(1510758174.220680,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:02:54, pid = 9421','zmdc.pl',NULL),(1510758174.220780,'zmdc',NULL,9421,0,'INF','\'zmc -m 1\' started at 17/11/15 17:02:54','zmdc.pl',NULL),(1510758174.280310,'zmdc',NULL,6793,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510758174.286250,'zmdc',NULL,6793,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510758174.292390,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:02:54, pid = 9425','zmdc.pl',NULL),(1510758174.292710,'zmdc',NULL,9425,0,'INF','\'zmc -m 1\' started at 17/11/15 17:02:54','zmdc.pl',NULL),(1510758174.325510,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510758174.409680,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510758174.462527,'zmc_m1',0,9425,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510758176.346657,'zms',0,9453,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510758176.352397,'zms',0,9453,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510758186.264060,'zmcontrol',NULL,9458,0,'INF','Starting control server 1/onvif','zmcontrol.pl',NULL),(1510758186.287470,'zmcontrol',NULL,9460,0,'INF','Control server 1/onvif starting at 17/11/15 17:03:06','zmcontrol.pl',NULL),(1510758193.080593,'zms',0,9453,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510758215.438550,'zmc_m1',0,9425,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510758255.422367,'zmc_m1',0,9425,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758295.429102,'zmc_m1',0,9425,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758335.418251,'zmc_m1',0,9425,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758375.428577,'zmc_m1',0,9425,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758411.124630,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510758411.202450,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510758411.285500,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 9425 at 17/11/15 17:06:51','zmdc.pl',NULL),(1510758411.291049,'zmc_m1',0,9425,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510758417.292020,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:06:57. Sending KILL to pid 9425','zmdc.pl',NULL),(1510758417.313320,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510758417.317970,'zmwatch',NULL,6835,0,'INF','Restarting capture daemon for Monitor-1, time since last capture 6 seconds (1510758417-1510758411)','zmwatch.pl',NULL),(1510758417.427780,'zmdc',NULL,9537,0,'INF','\'zmc -m 1\' started at 17/11/15 17:06:57','zmdc.pl',NULL),(1510758417.427780,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:06:57, pid = 9537','zmdc.pl',NULL),(1510758417.438660,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' already running at 17/11/15 17:06:57, pid = 9537','zmdc.pl',NULL),(1510758417.523600,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510758417.559909,'zmc_m1',0,9537,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510758417.603380,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510758420.333022,'zms',0,9568,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510758420.336055,'zms',0,9568,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510758424.329080,'zmcontrol',NULL,9570,0,'INF','Starting control server 1/onvif','zmcontrol.pl',NULL),(1510758424.354670,'zmcontrol',NULL,9572,0,'INF','Control server 1/onvif starting at 17/11/15 17:07:04','zmcontrol.pl',NULL),(1510758458.547986,'zmc_m1',0,9537,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510758492.971163,'zms',0,9568,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510758498.553689,'zmc_m1',0,9537,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758538.544345,'zmc_m1',0,9537,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758578.547700,'zmc_m1',0,9537,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758618.558747,'zmc_m1',0,9537,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758658.544275,'zmc_m1',0,9537,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758676.028250,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510758676.107520,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510758676.182230,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 9537 at 17/11/15 17:11:16','zmdc.pl',NULL),(1510758676.188213,'zmc_m1',0,9537,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510758682.189270,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:11:22. Sending KILL to pid 9537','zmdc.pl',NULL),(1510758682.203850,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510758682.287890,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:11:22, pid = 9707','zmdc.pl',NULL),(1510758682.287940,'zmdc',NULL,9707,0,'INF','\'zmc -m 1\' started at 17/11/15 17:11:22','zmdc.pl',NULL),(1510758682.371050,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510758682.414469,'zmc_m1',0,9707,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510758682.449460,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510758685.675166,'zms',0,9729,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510758685.680400,'zms',0,9729,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510758689.035410,'zmcontrol',NULL,9731,0,'INF','Starting control server 1/onvif','zmcontrol.pl',NULL),(1510758689.060050,'zmcontrol',NULL,9733,0,'INF','Control server 1/onvif starting at 17/11/15 17:11:29','zmcontrol.pl',NULL),(1510758689.320130,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758689.874040,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758690.019400,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758690.070820,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758690.480590,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758690.631350,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758691.289740,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758691.420180,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758701.271270,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758701.820940,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758701.960820,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758702.491090,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758702.645880,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758723.384560,'zmc_m1',0,9707,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510758763.373156,'zmc_m1',0,9707,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758784.582230,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758785.033220,'zmcontrol',NULL,9733,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510758803.380886,'zmc_m1',0,9707,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758843.409318,'zmc_m1',0,9707,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758883.385166,'zmc_m1',0,9707,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758923.376242,'zmc_m1',0,9707,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758940.936016,'zms',0,9729,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510758963.381414,'zmc_m1',0,9707,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510758974.702190,'zmc_m1',0,9724,-1,'WAR','Packet in sequence, gap 175','zm_rtp_source.cpp',127),(1510758974.705773,'zmc_m1',0,9724,-1,'WAR','Discarding partial frame 7556, 2872 bytes','zm_rtp_source.cpp',345),(1510758974.708465,'zmc_m1',0,9724,-1,'WAR','Discarding incomplete frame 7556, 0 bytes','zm_rtp_source.cpp',336),(1510759004.085460,'zmc_m1',0,9707,0,'INF','Monitor-1: 8000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510759016.054290,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510759016.146980,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510759016.225620,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 9707 at 17/11/15 17:16:56','zmdc.pl',NULL),(1510759016.231348,'zmc_m1',0,9707,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510759022.232460,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:17:02. Sending KILL to pid 9707','zmdc.pl',NULL),(1510759022.249980,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510759022.346140,'zmdc',NULL,9855,0,'INF','\'zmc -m 1\' started at 17/11/15 17:17:02','zmdc.pl',NULL),(1510759022.346040,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:17:02, pid = 9855','zmdc.pl',NULL),(1510759022.449990,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510759022.496719,'zmc_m1',0,9855,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510759022.531790,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510759032.844295,'zms',0,9880,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510759032.849576,'zms',0,9880,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510759035.760890,'zmcontrol',NULL,9882,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759035.777810,'zmcontrol',NULL,9884,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:15','zmcontrol.pl',NULL),(1510759036.196630,'zmcontrol',NULL,9886,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759036.213430,'zmcontrol',NULL,9888,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:16','zmcontrol.pl',NULL),(1510759036.736840,'zmcontrol',NULL,9891,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759036.751190,'zmcontrol',NULL,9894,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:16','zmcontrol.pl',NULL),(1510759036.865100,'zmcontrol',NULL,9897,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759036.880750,'zmcontrol',NULL,9900,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:16','zmcontrol.pl',NULL),(1510759037.021790,'zmcontrol',NULL,9903,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759037.036520,'zmcontrol',NULL,9906,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:17','zmcontrol.pl',NULL),(1510759037.489800,'zmcontrol',NULL,9909,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759037.507990,'zmcontrol',NULL,9913,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:17','zmcontrol.pl',NULL),(1510759037.667600,'zmcontrol',NULL,9915,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759037.685490,'zmcontrol',NULL,9919,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:17','zmcontrol.pl',NULL),(1510759037.857350,'zmcontrol',NULL,9922,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759037.875640,'zmcontrol',NULL,9925,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:17','zmcontrol.pl',NULL),(1510759038.205740,'zmcontrol',NULL,9928,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759038.222710,'zmcontrol',NULL,9931,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:18','zmcontrol.pl',NULL),(1510759038.347410,'zmcontrol',NULL,9934,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759038.362070,'zmcontrol',NULL,9937,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:18','zmcontrol.pl',NULL),(1510759039.164660,'zmcontrol',NULL,9942,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759039.180490,'zmcontrol',NULL,9945,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:19','zmcontrol.pl',NULL),(1510759040.453140,'zmcontrol',NULL,9952,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759040.468700,'zmcontrol',NULL,9955,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:20','zmcontrol.pl',NULL),(1510759041.064090,'zmcontrol',NULL,9966,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759041.079180,'zmcontrol',NULL,9969,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:21','zmcontrol.pl',NULL),(1510759041.542710,'zmcontrol',NULL,9972,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759041.557320,'zmcontrol',NULL,9975,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:21','zmcontrol.pl',NULL),(1510759041.753190,'zmcontrol',NULL,9978,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759041.770430,'zmcontrol',NULL,9982,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:21','zmcontrol.pl',NULL),(1510759042.284910,'zmcontrol',NULL,9984,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759042.301480,'zmcontrol',NULL,9987,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:22','zmcontrol.pl',NULL),(1510759045.778750,'zmcontrol',NULL,9882,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759045.784353,'web_php',NULL,5509,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=46 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759046.214540,'zmcontrol',NULL,9886,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759046.220404,'web_php',NULL,6424,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=46 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759046.752210,'zmcontrol',NULL,9891,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759046.760388,'web_php',NULL,9874,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=41 --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759046.881710,'zmcontrol',NULL,9897,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759046.889861,'web_php',NULL,6452,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=41 --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759047.037950,'zmcontrol',NULL,9903,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759047.046296,'web_php',NULL,9179,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=41 --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759047.509580,'zmcontrol',NULL,9909,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759047.517562,'web_php',NULL,6542,-2,'ERR','/usr/bin/zmcontrol.pl --command=focusConNear --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759047.686570,'zmcontrol',NULL,9915,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759047.692461,'web_php',NULL,6518,-2,'ERR','/usr/bin/zmcontrol.pl --command=focusConNear --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759047.877100,'zmcontrol',NULL,9922,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759047.883118,'web_php',NULL,5751,-2,'ERR','/usr/bin/zmcontrol.pl --command=focusConNear --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759048.223800,'zmcontrol',NULL,9928,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759048.230058,'web_php',NULL,9054,-2,'ERR','/usr/bin/zmcontrol.pl --command=focusConFar --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759048.363150,'zmcontrol',NULL,9934,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759048.368811,'web_php',NULL,9918,-2,'ERR','/usr/bin/zmcontrol.pl --command=focusConFar --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759049.182760,'zmcontrol',NULL,9942,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759049.189092,'web_php',NULL,9940,-2,'ERR','/usr/bin/zmcontrol.pl --speed=2 --autostop --command=zoomConWide --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759050.469990,'zmcontrol',NULL,9952,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759050.478417,'web_php',NULL,9939,-2,'ERR','/usr/bin/zmcontrol.pl --step=0 --command=whiteRelIn --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759051.080250,'zmcontrol',NULL,9966,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759051.087974,'web_php',NULL,9947,-2,'ERR','/usr/bin/zmcontrol.pl --step=0 --command=whiteRelOut --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759051.477680,'zmcontrol',NULL,9990,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759051.492550,'zmcontrol',NULL,9992,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:31','zmcontrol.pl',NULL),(1510759051.558590,'zmcontrol',NULL,9972,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759051.564102,'web_php',NULL,9948,-2,'ERR','/usr/bin/zmcontrol.pl --step=0 --command=irisRelOpen --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759051.771270,'zmcontrol',NULL,9978,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759051.776853,'web_php',NULL,9949,-2,'ERR','/usr/bin/zmcontrol.pl --step=0 --command=irisRelOpen --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759051.818640,'zmcontrol',NULL,9994,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759051.833060,'zmcontrol',NULL,9996,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:31','zmcontrol.pl',NULL),(1510759052.042320,'zmcontrol',NULL,9998,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759052.060350,'zmcontrol',NULL,10000,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:32','zmcontrol.pl',NULL),(1510759052.303320,'zmcontrol',NULL,9984,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759052.313770,'web_php',NULL,9950,-2,'ERR','/usr/bin/zmcontrol.pl --step=0 --command=irisRelClose --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759052.839940,'zmcontrol',NULL,10002,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759052.863840,'zmcontrol',NULL,10004,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:32','zmcontrol.pl',NULL),(1510759053.000630,'zmcontrol',NULL,10006,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510759053.017180,'zmcontrol',NULL,10008,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:17:33','zmcontrol.pl',NULL),(1510759061.493540,'zmcontrol',NULL,9990,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759061.503349,'web_php',NULL,9957,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=55 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759061.834850,'zmcontrol',NULL,9994,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759061.844484,'web_php',NULL,9963,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=48 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759062.061450,'zmcontrol',NULL,9998,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759062.067471,'web_php',NULL,9964,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=46 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759062.865560,'zmcontrol',NULL,10002,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759062.872051,'web_php',NULL,5509,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=43 --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759063.018100,'zmcontrol',NULL,10006,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510759063.023663,'web_php',NULL,9874,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=43 --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510759063.460197,'zmc_m1',0,9855,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510759103.459727,'zmc_m1',0,9855,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759143.454121,'zmc_m1',0,9855,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759183.444882,'zmc_m1',0,9855,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759223.458152,'zmc_m1',0,9855,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759263.443682,'zmc_m1',0,9855,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759303.456366,'zmc_m1',0,9855,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759343.455067,'zmc_m1',0,9855,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759383.441081,'zmc_m1',0,9855,0,'INF','Monitor-1: 9000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759423.453602,'zmc_m1',0,9855,0,'INF','Monitor-1: 10000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759463.453236,'zmc_m1',0,9855,0,'INF','Monitor-1: 11000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759503.441445,'zmc_m1',0,9855,0,'INF','Monitor-1: 12000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759543.439718,'zmc_m1',0,9855,0,'INF','Monitor-1: 13000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759583.442575,'zmc_m1',0,9855,0,'INF','Monitor-1: 14000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759623.441076,'zmc_m1',0,9855,0,'INF','Monitor-1: 15000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759663.470365,'zmc_m1',0,9855,0,'INF','Monitor-1: 16000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759703.450295,'zmc_m1',0,9855,0,'INF','Monitor-1: 17000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759743.450655,'zmc_m1',0,9855,0,'INF','Monitor-1: 18000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759783.449741,'zmc_m1',0,9855,0,'INF','Monitor-1: 19000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759823.436569,'zmc_m1',0,9855,0,'INF','Monitor-1: 20000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759863.446008,'zmc_m1',0,9855,0,'INF','Monitor-1: 21000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759903.433726,'zmc_m1',0,9855,0,'INF','Monitor-1: 22000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759943.447718,'zmc_m1',0,9855,0,'INF','Monitor-1: 23000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510759983.469755,'zmc_m1',0,9855,0,'INF','Monitor-1: 24000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760023.444179,'zmc_m1',0,9855,0,'INF','Monitor-1: 25000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760063.432181,'zmc_m1',0,9855,0,'INF','Monitor-1: 26000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760103.432340,'zmc_m1',0,9855,0,'INF','Monitor-1: 27000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760127.110012,'zms',0,9880,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760127.262967,'zms',0,12619,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510760127.265964,'zms',0,12619,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510760143.443461,'zmc_m1',0,9855,0,'INF','Monitor-1: 28000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760151.816270,'zmcontrol',NULL,12626,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760151.832860,'zmcontrol',NULL,12628,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:35:51','zmcontrol.pl',NULL),(1510760152.415700,'zmcontrol',NULL,12630,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760152.430350,'zmcontrol',NULL,12632,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:35:52','zmcontrol.pl',NULL),(1510760152.924580,'zmcontrol',NULL,12634,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760152.947000,'zmcontrol',NULL,12637,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:35:52','zmcontrol.pl',NULL),(1510760161.834330,'zmcontrol',NULL,12626,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760161.840682,'web_php',NULL,9947,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=50 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760162.431880,'zmcontrol',NULL,12630,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760162.440248,'web_php',NULL,9957,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=46 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760162.948370,'zmcontrol',NULL,12634,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760162.957005,'web_php',NULL,9964,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=44 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760174.548945,'zms',0,12619,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760183.432721,'zmc_m1',0,9855,0,'INF','Monitor-1: 29000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760223.430866,'zmc_m1',0,9855,0,'INF','Monitor-1: 30000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760263.430560,'zmc_m1',0,9855,0,'INF','Monitor-1: 31000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760303.427390,'zmc_m1',0,9855,0,'INF','Monitor-1: 32000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760334.293591,'zms',0,12688,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510760334.296493,'zms',0,12688,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510760343.427472,'zmc_m1',0,9855,0,'INF','Monitor-1: 33000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760383.426506,'zmc_m1',0,9855,0,'INF','Monitor-1: 34000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760423.425979,'zmc_m1',0,9855,0,'INF','Monitor-1: 35000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760427.043442,'zms',0,12688,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760463.427899,'zmc_m1',0,9855,0,'INF','Monitor-1: 36000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760488.832150,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760488.915770,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760488.998200,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 9855 at 17/11/15 17:41:28','zmdc.pl',NULL),(1510760489.002631,'zmc_m1',0,9855,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760495.003640,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:41:35. Sending KILL to pid 9855','zmdc.pl',NULL),(1510760495.025540,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510760495.127020,'zmdc',NULL,13891,0,'INF','\'zmc -m 1\' started at 17/11/15 17:41:35','zmdc.pl',NULL),(1510760495.127010,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:41:35, pid = 13891','zmdc.pl',NULL),(1510760495.237760,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760495.282403,'zmc_m1',0,13891,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510760495.314250,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760497.951089,'zms',0,13914,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510760497.953885,'zms',0,13914,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510760507.487020,'zmcontrol',NULL,13916,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760507.506520,'zmcontrol',NULL,13918,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:41:47','zmcontrol.pl',NULL),(1510760508.413790,'zmcontrol',NULL,13920,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760508.430740,'zmcontrol',NULL,13923,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:41:48','zmcontrol.pl',NULL),(1510760514.192770,'zmcontrol',NULL,13928,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760514.212600,'zmcontrol',NULL,13931,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:41:54','zmcontrol.pl',NULL),(1510760514.372650,'zmcontrol',NULL,13934,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760514.395120,'zmcontrol',NULL,13940,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:41:54','zmcontrol.pl',NULL),(1510760514.481310,'zmcontrol',NULL,13939,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760514.497430,'zmcontrol',NULL,13943,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:41:54','zmcontrol.pl',NULL),(1510760517.130035,'zms',0,13914,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760517.507840,'zmcontrol',NULL,13916,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760517.515993,'web_php',NULL,9947,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=40 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760518.432120,'zmcontrol',NULL,13920,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760518.443509,'web_php',NULL,6403,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=40 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760524.213550,'zmcontrol',NULL,13928,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760524.221409,'web_php',NULL,5509,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=26 --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760524.396480,'zmcontrol',NULL,13934,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760524.406969,'web_php',NULL,9949,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=26 --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760524.498470,'zmcontrol',NULL,13939,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760524.504583,'web_php',NULL,6452,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=26 --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760536.349400,'zmc_m1',0,13891,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510760576.354600,'zmc_m1',0,13891,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760600.847200,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760600.925730,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760601.004890,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 13891 at 17/11/15 17:43:20','zmdc.pl',NULL),(1510760601.011685,'zmc_m1',0,13891,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760607.012640,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:43:27. Sending KILL to pid 13891','zmdc.pl',NULL),(1510760607.028940,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510760607.116950,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:43:27, pid = 13983','zmdc.pl',NULL),(1510760607.117050,'zmdc',NULL,13983,0,'INF','\'zmc -m 1\' started at 17/11/15 17:43:27','zmdc.pl',NULL),(1510760607.213870,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760607.259264,'zmc_m1',0,13983,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510760607.300520,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760648.268285,'zmc_m1',0,13983,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510760676.481570,'zms',0,14018,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510760676.486767,'zms',0,14018,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510760679.471750,'zmcontrol',NULL,14021,0,'INF','Starting control server 1/onvif','zmcontrol.pl',NULL),(1510760679.501670,'zmcontrol',NULL,14023,0,'INF','Control server 1/onvif starting at 17/11/15 17:44:39','zmcontrol.pl',NULL),(1510760679.931710,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760680.175020,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760680.516150,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760680.726840,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760680.895030,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760688.265206,'zmc_m1',0,13983,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760690.093660,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760690.759750,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760690.969720,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760691.453450,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760691.592850,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760691.767650,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760700.910340,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760701.454600,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760702.406400,'zmcontrol',NULL,14023,-2,'ERR','Error check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760710.930338,'zms',0,14018,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760728.284940,'zmc_m1',0,13983,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760728.517700,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760728.607640,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760728.716100,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 13983 at 17/11/15 17:45:28','zmdc.pl',NULL),(1510760728.719167,'zmc_m1',0,13983,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760734.720220,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:45:34. Sending KILL to pid 13983','zmdc.pl',NULL),(1510760734.737410,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510760734.836580,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:45:34, pid = 14058','zmdc.pl',NULL),(1510760734.836580,'zmdc',NULL,14058,0,'INF','\'zmc -m 1\' started at 17/11/15 17:45:34','zmdc.pl',NULL),(1510760734.931350,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760734.977727,'zmc_m1',0,14058,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510760735.011860,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760737.311403,'zms',0,14080,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510760737.316481,'zms',0,14080,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510760741.016990,'zmcontrol',NULL,14082,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760741.035360,'zmcontrol',NULL,14084,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:45:41','zmcontrol.pl',NULL),(1510760746.590000,'zmcontrol',NULL,14090,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760746.608940,'zmcontrol',NULL,14092,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:45:46','zmcontrol.pl',NULL),(1510760747.086680,'zmcontrol',NULL,14095,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760747.103980,'zmcontrol',NULL,14098,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:45:47','zmcontrol.pl',NULL),(1510760749.808850,'zmcontrol',NULL,14101,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760749.824000,'zmcontrol',NULL,14104,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:45:49','zmcontrol.pl',NULL),(1510760750.313510,'zmcontrol',NULL,14107,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760750.328500,'zmcontrol',NULL,14110,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:45:50','zmcontrol.pl',NULL),(1510760751.036440,'zmcontrol',NULL,14082,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760751.042805,'web_php',NULL,13945,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=46 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760753.958810,'zmcontrol',NULL,14115,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760753.973950,'zmcontrol',NULL,14117,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:45:53','zmcontrol.pl',NULL),(1510760754.380960,'zmcontrol',NULL,14119,0,'INF','Starting control server 1/PelcoD','zmcontrol.pl',NULL),(1510760754.396080,'zmcontrol',NULL,14122,0,'INF','Control server 1/PelcoD starting at 17/11/15 17:45:54','zmcontrol.pl',NULL),(1510760756.609950,'zmcontrol',NULL,14090,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760756.616272,'web_php',NULL,14002,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=53 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760757.105130,'zmcontrol',NULL,14095,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760757.110424,'web_php',NULL,6403,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=53 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760759.305450,'zms',0,14080,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760759.825320,'zmcontrol',NULL,14101,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760759.830724,'web_php',NULL,9950,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=50 --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760760.329530,'zmcontrol',NULL,14107,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760760.335521,'web_php',NULL,13908,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=44 --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760763.974970,'zmcontrol',NULL,14115,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760763.980821,'web_php',NULL,14077,-2,'ERR','/usr/bin/zmcontrol.pl --speed=2 --autostop --command=zoomConTele --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760764.398450,'zmcontrol',NULL,14119,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510760764.404201,'web_php',NULL,9949,-2,'ERR','/usr/bin/zmcontrol.pl --command=focusConNear --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760776.018983,'zmc_m1',0,14058,0,'INF','Monitor-1: 1000 - Capturing at 23.81 fps','zm_monitor.cpp',3125),(1510760801.974650,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760802.053510,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760802.138780,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 14058 at 17/11/15 17:46:42','zmdc.pl',NULL),(1510760802.145425,'zmc_m1',0,14058,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760808.146480,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:46:48. Sending KILL to pid 14058','zmdc.pl',NULL),(1510760808.161490,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510760808.253950,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:46:48, pid = 14155','zmdc.pl',NULL),(1510760808.254050,'zmdc',NULL,14155,0,'INF','\'zmc -m 1\' started at 17/11/15 17:46:48','zmdc.pl',NULL),(1510760808.349820,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760808.398803,'zmc_m1',0,14155,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510760808.431450,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760811.455729,'zms',0,14176,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510760811.458476,'zms',0,14176,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510760814.619470,'zmcontrol',NULL,14180,0,'INF','Starting control server 1/Netcat','zmcontrol.pl',NULL),(1510760814.643470,'zmcontrol',NULL,14182,0,'INF','Control server 1/Netcat starting at 17/11/15 17:46:54','zmcontrol.pl',NULL),(1510760815.705000,'zmcontrol',NULL,14182,-2,'ERR','After sending PTZ command, camera returned the following error:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760819.705700,'zmcontrol',NULL,14182,-2,'ERR','After sending PTZ command, camera returned the following error:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760820.124040,'zmcontrol',NULL,14182,-2,'ERR','After sending PTZ command, camera returned the following error:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510760829.485941,'zms',0,14176,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760849.350651,'zmc_m1',0,14155,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510760873.211180,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760873.297020,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760873.374890,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 14155 at 17/11/15 17:47:53','zmdc.pl',NULL),(1510760873.378150,'zmc_m1',0,14155,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760879.379240,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:47:59. Sending KILL to pid 14155','zmdc.pl',NULL),(1510760879.405440,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510760879.502270,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:47:59, pid = 14225','zmdc.pl',NULL),(1510760879.502280,'zmdc',NULL,14225,0,'INF','\'zmc -m 1\' started at 17/11/15 17:47:59','zmdc.pl',NULL),(1510760879.592430,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760879.638206,'zmc_m1',0,14225,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510760879.672930,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760881.346781,'zms',0,14246,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510760881.351946,'zms',0,14246,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510760890.362880,'zmcontrol',NULL,14249,0,'INF','Starting control server 1/Netcat','zmcontrol.pl',NULL),(1510760890.387400,'zmcontrol',NULL,14251,0,'INF','Control server 1/Netcat starting at 17/11/15 17:48:10','zmcontrol.pl',NULL),(1510760890.846730,'zmcontrol',NULL,14251,-2,'ERR','After sending PTZ command, camera returned the following error:\'400 Bad Request\'','zmcontrol.pl',NULL),(1510760891.403560,'zmcontrol',NULL,14251,-2,'ERR','After sending PTZ command, camera returned the following error:\'400 Bad Request\'','zmcontrol.pl',NULL),(1510760896.635460,'zmcontrol',NULL,14251,-2,'ERR','After sending PTZ command, camera returned the following error:\'400 Bad Request\'','zmcontrol.pl',NULL),(1510760897.291840,'zmcontrol',NULL,14251,-2,'ERR','After sending PTZ command, camera returned the following error:\'400 Bad Request\'','zmcontrol.pl',NULL),(1510760920.628821,'zmc_m1',0,14225,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510760933.129303,'zms',0,14246,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760960.625387,'zmc_m1',0,14225,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510760978.394600,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760978.470540,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760978.552610,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 14225 at 17/11/15 17:49:38','zmdc.pl',NULL),(1510760978.559404,'zmc_m1',0,14225,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510760984.560490,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:49:44. Sending KILL to pid 14225','zmdc.pl',NULL),(1510760984.575100,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510760984.659990,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:49:44, pid = 14288','zmdc.pl',NULL),(1510760984.660020,'zmdc',NULL,14288,0,'INF','\'zmc -m 1\' started at 17/11/15 17:49:44','zmdc.pl',NULL),(1510760984.749740,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510760984.795653,'zmc_m1',0,14288,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510760984.829750,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510760986.383086,'zms',0,14309,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510760986.388211,'zms',0,14309,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510760989.218900,'zmcontrol',NULL,14311,0,'INF','Starting control server 1/','zmcontrol.pl',NULL),(1510760989.222790,'zmcontrol',NULL,14311,-3,'FAT','Can\'t load ZoneMinder::Control::','zmcontrol.pl',NULL),(1510760989.227556,'web_php',NULL,14002,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=77 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510760996.239140,'zmcontrol',NULL,14318,0,'INF','Starting control server 1/','zmcontrol.pl',NULL),(1510760996.246430,'zmcontrol',NULL,14318,-3,'FAT','Can\'t load ZoneMinder::Control::','zmcontrol.pl',NULL),(1510760996.254953,'web_php',NULL,14002,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=49 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510761003.452120,'zmcontrol',NULL,14321,0,'INF','Starting control server 1/','zmcontrol.pl',NULL),(1510761003.455990,'zmcontrol',NULL,14321,-3,'FAT','Can\'t load ZoneMinder::Control::','zmcontrol.pl',NULL),(1510761003.460489,'web_php',NULL,14002,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=56 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510761010.931059,'zms',0,14309,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510761025.827245,'zmc_m1',0,14288,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510761049.968880,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510761050.058430,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510761050.142080,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 14288 at 17/11/15 17:50:50','zmdc.pl',NULL),(1510761050.148533,'zmc_m1',0,14288,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510761056.149260,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:50:56. Sending KILL to pid 14288','zmdc.pl',NULL),(1510761056.155450,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510761056.243680,'zmdc',NULL,14357,0,'INF','\'zmc -m 1\' started at 17/11/15 17:50:56','zmdc.pl',NULL),(1510761056.243670,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:50:56, pid = 14357','zmdc.pl',NULL),(1510761056.289230,'zmdc',NULL,6793,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510761056.294300,'zmdc',NULL,6793,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510761056.300570,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:50:56, pid = 14361','zmdc.pl',NULL),(1510761056.300580,'zmdc',NULL,14361,0,'INF','\'zmc -m 1\' started at 17/11/15 17:50:56','zmdc.pl',NULL),(1510761056.337060,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510761056.419930,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510761056.470754,'zmc_m1',0,14361,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510761063.327016,'zms',0,14382,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510761063.332546,'zms',0,14382,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510761066.481340,'zmcontrol',NULL,14384,0,'INF','Starting control server 1/PelcoP','zmcontrol.pl',NULL),(1510761066.500870,'zmcontrol',NULL,14386,0,'INF','Control server 1/PelcoP starting at 17/11/15 17:51:06','zmcontrol.pl',NULL),(1510761071.858710,'zmcontrol',NULL,14390,0,'INF','Starting control server 1/PelcoP','zmcontrol.pl',NULL),(1510761071.886800,'zmcontrol',NULL,14393,0,'INF','Control server 1/PelcoP starting at 17/11/15 17:51:11','zmcontrol.pl',NULL),(1510761076.501840,'zmcontrol',NULL,14384,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510761076.507741,'web_php',NULL,9949,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=38 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510761078.627190,'zmcontrol',NULL,14397,0,'INF','Starting control server 1/PelcoP','zmcontrol.pl',NULL),(1510761078.643750,'zmcontrol',NULL,14399,0,'INF','Control server 1/PelcoP starting at 17/11/15 17:51:18','zmcontrol.pl',NULL),(1510761078.775390,'zmcontrol',NULL,14401,0,'INF','Starting control server 1/PelcoP','zmcontrol.pl',NULL),(1510761078.791940,'zmcontrol',NULL,14404,0,'INF','Control server 1/PelcoP starting at 17/11/15 17:51:18','zmcontrol.pl',NULL),(1510761079.071840,'zmcontrol',NULL,14407,0,'INF','Starting control server 1/PelcoP','zmcontrol.pl',NULL),(1510761079.091330,'zmcontrol',NULL,14413,0,'INF','Control server 1/PelcoP starting at 17/11/15 17:51:19','zmcontrol.pl',NULL),(1510761079.183900,'zmcontrol',NULL,14412,0,'INF','Starting control server 1/PelcoP','zmcontrol.pl',NULL),(1510761079.212860,'zmcontrol',NULL,14418,0,'INF','Control server 1/PelcoP starting at 17/11/15 17:51:19','zmcontrol.pl',NULL),(1510761079.306960,'zmcontrol',NULL,14420,0,'INF','Starting control server 1/PelcoP','zmcontrol.pl',NULL),(1510761079.323580,'zmcontrol',NULL,14422,0,'INF','Control server 1/PelcoP starting at 17/11/15 17:51:19','zmcontrol.pl',NULL),(1510761081.887900,'zmcontrol',NULL,14390,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510761081.896096,'web_php',NULL,14242,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=38 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510761084.931909,'zms',0,14382,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510761088.645080,'zmcontrol',NULL,14397,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510761088.650929,'web_php',NULL,14125,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=25 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510761088.793710,'zmcontrol',NULL,14401,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510761088.799635,'web_php',NULL,9947,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=27 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510761089.092200,'zmcontrol',NULL,14407,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510761089.098054,'web_php',NULL,14126,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=27 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510761089.213940,'zmcontrol',NULL,14412,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510761089.222104,'web_php',NULL,14378,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=27 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510761089.324710,'zmcontrol',NULL,14420,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510761089.332598,'web_php',NULL,14002,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=27 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510761097.385997,'zmc_m1',0,14361,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510761137.385161,'zmc_m1',0,14361,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761177.385245,'zmc_m1',0,14361,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761217.377603,'zmc_m1',0,14361,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761257.380839,'zmc_m1',0,14361,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761297.382689,'zmc_m1',0,14361,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761337.375433,'zmc_m1',0,14361,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761377.381523,'zmc_m1',0,14361,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761380.462940,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510761380.543160,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510761380.626300,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 14361 at 17/11/15 17:56:20','zmdc.pl',NULL),(1510761380.629884,'zmc_m1',0,14361,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510761386.630720,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 17:56:26. Sending KILL to pid 14361','zmdc.pl',NULL),(1510761386.651580,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510761386.741290,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 17:56:26, pid = 14534','zmdc.pl',NULL),(1510761386.741290,'zmdc',NULL,14534,0,'INF','\'zmc -m 1\' started at 17/11/15 17:56:26','zmdc.pl',NULL),(1510761386.833150,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510761386.880927,'zmc_m1',0,14534,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510761386.912730,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510761392.812865,'zms',0,14555,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510761392.815706,'zms',0,14555,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510761401.080410,'zmcontrol',NULL,14557,0,'INF','Starting control server 1/FI8918W','zmcontrol.pl',NULL),(1510761401.104490,'zmcontrol',NULL,14559,0,'INF','Control server 1/FI8918W starting at 17/11/15 17:56:41','zmcontrol.pl',NULL),(1510761402.157050,'zmcontrol',NULL,14559,-2,'ERR','Error REALLY check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510761402.162800,'zmcontrol',NULL,14559,-2,'ERR','Cmd:HTTP::Request=HASH(0x562d72d211e0)','zmcontrol.pl',NULL),(1510761406.464740,'zmcontrol',NULL,14559,-2,'ERR','Error REALLY check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510761406.467830,'zmcontrol',NULL,14559,-2,'ERR','Cmd:HTTP::Request=HASH(0x562d729af6e0)','zmcontrol.pl',NULL),(1510761407.016720,'zmcontrol',NULL,14559,-2,'ERR','Error REALLY check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510761407.022190,'zmcontrol',NULL,14559,-2,'ERR','Cmd:HTTP::Request=HASH(0x562d729af848)','zmcontrol.pl',NULL),(1510761415.351825,'zms',0,14555,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510761427.933040,'zmc_m1',0,14534,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510761467.940680,'zmc_m1',0,14534,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761507.919784,'zmc_m1',0,14534,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761547.918126,'zmc_m1',0,14534,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761587.918022,'zmc_m1',0,14534,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761627.916820,'zmc_m1',0,14534,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761667.916318,'zmc_m1',0,14534,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761707.916439,'zmc_m1',0,14534,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761747.915137,'zmc_m1',0,14534,0,'INF','Monitor-1: 9000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761787.914516,'zmc_m1',0,14534,0,'INF','Monitor-1: 10000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761827.912979,'zmc_m1',0,14534,0,'INF','Monitor-1: 11000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761867.913847,'zmc_m1',0,14534,0,'INF','Monitor-1: 12000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761907.913713,'zmc_m1',0,14534,0,'INF','Monitor-1: 13000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761947.912087,'zmc_m1',0,14534,0,'INF','Monitor-1: 14000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510761987.911892,'zmc_m1',0,14534,0,'INF','Monitor-1: 15000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762027.910794,'zmc_m1',0,14534,0,'INF','Monitor-1: 16000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762067.911036,'zmc_m1',0,14534,0,'INF','Monitor-1: 17000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762107.927837,'zmc_m1',0,14534,0,'INF','Monitor-1: 18000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762147.909132,'zmc_m1',0,14534,0,'INF','Monitor-1: 19000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762187.905403,'zmc_m1',0,14534,0,'INF','Monitor-1: 20000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762227.907584,'zmc_m1',0,14534,0,'INF','Monitor-1: 21000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762267.927033,'zmc_m1',0,14534,0,'INF','Monitor-1: 22000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762307.906176,'zmc_m1',0,14534,0,'INF','Monitor-1: 23000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762347.923935,'zmc_m1',0,14534,0,'INF','Monitor-1: 24000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762387.905739,'zmc_m1',0,14534,0,'INF','Monitor-1: 25000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762427.905795,'zmc_m1',0,14534,0,'INF','Monitor-1: 26000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762467.904524,'zmc_m1',0,14534,0,'INF','Monitor-1: 27000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762507.916678,'zmc_m1',0,14534,0,'INF','Monitor-1: 28000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762547.903386,'zmc_m1',0,14534,0,'INF','Monitor-1: 29000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762587.903081,'zmc_m1',0,14534,0,'INF','Monitor-1: 30000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762627.903463,'zmc_m1',0,14534,0,'INF','Monitor-1: 31000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762667.901957,'zmc_m1',0,14534,0,'INF','Monitor-1: 32000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762707.901969,'zmc_m1',0,14534,0,'INF','Monitor-1: 33000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762747.900966,'zmc_m1',0,14534,0,'INF','Monitor-1: 34000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762787.900590,'zmc_m1',0,14534,0,'INF','Monitor-1: 35000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762827.912359,'zmc_m1',0,14534,0,'INF','Monitor-1: 36000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762867.899228,'zmc_m1',0,14534,0,'INF','Monitor-1: 37000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762907.898673,'zmc_m1',0,14534,0,'INF','Monitor-1: 38000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762947.911671,'zmc_m1',0,14534,0,'INF','Monitor-1: 39000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510762987.909488,'zmc_m1',0,14534,0,'INF','Monitor-1: 40000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763027.908799,'zmc_m1',0,14534,0,'INF','Monitor-1: 41000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763067.896791,'zmc_m1',0,14534,0,'INF','Monitor-1: 42000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763107.897299,'zmc_m1',0,14534,0,'INF','Monitor-1: 43000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763147.895763,'zmc_m1',0,14534,0,'INF','Monitor-1: 44000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763187.908211,'zmc_m1',0,14534,0,'INF','Monitor-1: 45000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763207.127500,'zmcontrol',NULL,14559,0,'INF','Control server 1/FI8918W exiting at 17/11/15 18:26:47','zmcontrol.pl',NULL),(1510763227.904547,'zmc_m1',0,14534,0,'INF','Monitor-1: 46000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763267.905933,'zmc_m1',0,14534,0,'INF','Monitor-1: 47000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763307.912224,'zmc_m1',0,14534,0,'INF','Monitor-1: 48000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763347.901191,'zmc_m1',0,14534,0,'INF','Monitor-1: 49000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763387.889813,'zmc_m1',0,14534,0,'INF','Monitor-1: 50000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763427.904469,'zmc_m1',0,14534,0,'INF','Monitor-1: 51000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763467.902911,'zmc_m1',0,14534,0,'INF','Monitor-1: 52000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763507.902943,'zmc_m1',0,14534,0,'INF','Monitor-1: 53000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763547.889796,'zmc_m1',0,14534,0,'INF','Monitor-1: 54000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763587.902914,'zmc_m1',0,14534,0,'INF','Monitor-1: 55000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763627.890015,'zmc_m1',0,14534,0,'INF','Monitor-1: 56000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763667.901167,'zmc_m1',0,14534,0,'INF','Monitor-1: 57000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763707.898764,'zmc_m1',0,14534,0,'INF','Monitor-1: 58000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763747.898634,'zmc_m1',0,14534,0,'INF','Monitor-1: 59000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763787.895470,'zmc_m1',0,14534,0,'INF','Monitor-1: 60000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763804.023330,'zmc_m1',0,14551,-1,'WAR','Packet in sequence, gap 25','zm_rtp_source.cpp',127),(1510763804.026511,'zmc_m1',0,14551,-1,'WAR','Discarding partial frame 62818, 71704 bytes','zm_rtp_source.cpp',345),(1510763804.029278,'zmc_m1',0,14551,-1,'WAR','Discarding incomplete frame 62818, 0 bytes','zm_rtp_source.cpp',336),(1510763828.029067,'zmc_m1',0,14534,0,'INF','Monitor-1: 61000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510763868.023371,'zmc_m1',0,14534,0,'INF','Monitor-1: 62000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763908.026579,'zmc_m1',0,14534,0,'INF','Monitor-1: 63000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763948.015960,'zmc_m1',0,14534,0,'INF','Monitor-1: 64000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510763988.011349,'zmc_m1',0,14534,0,'INF','Monitor-1: 65000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764028.018414,'zmc_m1',0,14534,0,'INF','Monitor-1: 66000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764068.011564,'zmc_m1',0,14534,0,'INF','Monitor-1: 67000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764108.011360,'zmc_m1',0,14534,0,'INF','Monitor-1: 68000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764148.836090,'zmc_m1',0,14551,-1,'WAR','Packet in sequence, gap 256','zm_rtp_source.cpp',127),(1510764148.846411,'zmc_m1',0,14551,-1,'WAR','Discarding partial frame 71759, 94648 bytes','zm_rtp_source.cpp',345),(1510764148.853384,'zmc_m1',0,14551,-1,'WAR','Discarding incomplete frame 71759, 0 bytes','zm_rtp_source.cpp',336),(1510764148.976210,'zmc_m1',0,14534,0,'INF','Monitor-1: 69000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764188.987273,'zmc_m1',0,14534,0,'INF','Monitor-1: 70000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764228.971174,'zmc_m1',0,14534,0,'INF','Monitor-1: 71000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764268.970638,'zmc_m1',0,14534,0,'INF','Monitor-1: 72000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764308.958366,'zmc_m1',0,14534,0,'INF','Monitor-1: 73000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764348.972278,'zmc_m1',0,14534,0,'INF','Monitor-1: 74000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764388.970684,'zmc_m1',0,14534,0,'INF','Monitor-1: 75000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764428.970602,'zmc_m1',0,14534,0,'INF','Monitor-1: 76000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764468.954772,'zmc_m1',0,14534,0,'INF','Monitor-1: 77000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764508.966495,'zmc_m1',0,14534,0,'INF','Monitor-1: 78000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764548.966800,'zmc_m1',0,14534,0,'INF','Monitor-1: 79000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764588.963862,'zmc_m1',0,14534,0,'INF','Monitor-1: 80000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764589.081190,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510764589.165870,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510764589.251260,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 14534 at 17/11/15 18:49:49','zmdc.pl',NULL),(1510764589.257204,'zmc_m1',0,14534,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510764595.258220,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 18:49:55. Sending KILL to pid 14534','zmdc.pl',NULL),(1510764595.282020,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510764595.379250,'zmdc',NULL,15611,0,'INF','\'zmc -m 1\' started at 17/11/15 18:49:55','zmdc.pl',NULL),(1510764595.379250,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' starting at 17/11/15 18:49:55, pid = 15611','zmdc.pl',NULL),(1510764595.473870,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510764595.524898,'zmc_m1',0,15611,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510764595.559260,'zmdc',NULL,6793,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510764597.746752,'zms',0,15635,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510764597.749738,'zms',0,15635,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510764600.147830,'zmcontrol',NULL,15637,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764600.172620,'zmcontrol',NULL,15639,0,'INF','Control server 1/Floureon starting at 17/11/15 18:50:00','zmcontrol.pl',NULL),(1510764600.769730,'zmcontrol',NULL,15641,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764600.799300,'zmcontrol',NULL,15644,0,'INF','Control server 1/Floureon starting at 17/11/15 18:50:00','zmcontrol.pl',NULL),(1510764601.341610,'zmcontrol',NULL,15647,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764601.367800,'zmcontrol',NULL,15650,0,'INF','Control server 1/Floureon starting at 17/11/15 18:50:01','zmcontrol.pl',NULL),(1510764606.387410,'zmcontrol',NULL,15654,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764606.409410,'zmcontrol',NULL,15657,0,'INF','Control server 1/Floureon starting at 17/11/15 18:50:06','zmcontrol.pl',NULL),(1510764607.193740,'zmcontrol',NULL,15660,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764607.217090,'zmcontrol',NULL,15663,0,'INF','Control server 1/Floureon starting at 17/11/15 18:50:07','zmcontrol.pl',NULL),(1510764610.174140,'zmcontrol',NULL,15637,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764610.183778,'web_php',NULL,15269,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764610.800550,'zmcontrol',NULL,15641,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764610.808578,'web_php',NULL,14242,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764611.369120,'zmcontrol',NULL,15647,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764611.375982,'web_php',NULL,6452,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764612.672230,'zmcontrol',NULL,15668,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764612.696440,'zmcontrol',NULL,15670,0,'INF','Control server 1/Floureon starting at 17/11/15 18:50:12','zmcontrol.pl',NULL),(1510764613.222630,'zmcontrol',NULL,15672,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764613.246790,'zmcontrol',NULL,15674,0,'INF','Control server 1/Floureon starting at 17/11/15 18:50:13','zmcontrol.pl',NULL),(1510764616.411370,'zmcontrol',NULL,15654,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764616.419675,'web_php',NULL,14126,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764617.218110,'zmcontrol',NULL,15660,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764617.227344,'web_php',NULL,14425,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764622.697490,'zmcontrol',NULL,15668,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764622.703651,'web_php',NULL,14125,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764623.248320,'zmcontrol',NULL,15672,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764623.259150,'web_php',NULL,15628,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConRight --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764635.216400,'zmcontrol',NULL,15676,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764635.245410,'zmcontrol',NULL,15678,0,'INF','Control server 1/Floureon starting at 17/11/15 18:50:35','zmcontrol.pl',NULL),(1510764636.474518,'zmc_m1',0,15611,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510764639.004439,'web_php',NULL,13908,-2,'ERR','Invalid control parameter: Near','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510764639.105470,'zmcontrol',NULL,15680,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764639.128290,'zmcontrol',NULL,15682,0,'INF','Control server 1/Floureon starting at 17/11/15 18:50:39','zmcontrol.pl',NULL),(1510764640.645533,'web_php',NULL,15269,-2,'ERR','Invalid control parameter: Tele','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510764640.761820,'zmcontrol',NULL,15684,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764640.789120,'zmcontrol',NULL,15687,0,'INF','Control server 1/Floureon starting at 17/11/15 18:50:40','zmcontrol.pl',NULL),(1510764645.247140,'zmcontrol',NULL,15676,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764645.253211,'web_php',NULL,15665,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764649.129470,'zmcontrol',NULL,15680,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764649.137718,'web_php',NULL,13908,-2,'ERR','/usr/bin/zmcontrol.pl --command=Near --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764650.790110,'zmcontrol',NULL,15684,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764650.798604,'web_php',NULL,15269,-2,'ERR','/usr/bin/zmcontrol.pl --command=Tele --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764676.473632,'zmc_m1',0,15611,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764694.288420,'zmpkg',NULL,15717,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510764694.292380,'zmpkg',NULL,15717,0,'INF','Command: restart','zmpkg.pl',NULL),(1510764694.397100,'zmsystemctl',NULL,15723,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510764694.476930,'zmpkg',NULL,15727,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510764694.482660,'zmpkg',NULL,15727,0,'INF','Command: stop','zmpkg.pl',NULL),(1510764694.660930,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' sending stop to pid 15611 at 17/11/15 18:51:34','zmdc.pl',NULL),(1510764694.666300,'zmc_m1',0,15611,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510764694.666360,'zmdc',NULL,6793,0,'INF','\'zmfilter.pl\' sending stop to pid 6825 at 17/11/15 18:51:34','zmdc.pl',NULL),(1510764694.676270,'zmdc',NULL,6793,0,'INF','\'zmtelemetry.pl\' sending stop to pid 6843 at 17/11/15 18:51:34','zmdc.pl',NULL),(1510764694.681670,'zmdc',NULL,6793,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510764694.685610,'zmdc',NULL,6793,0,'INF','\'zmaudit.pl -c\' sending stop to pid 6831 at 17/11/15 18:51:34','zmdc.pl',NULL),(1510764694.688240,'zmdc',NULL,6793,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510764694.689460,'zmdc',NULL,6793,0,'INF','\'zmwatch.pl\' sending stop to pid 6835 at 17/11/15 18:51:34','zmdc.pl',NULL),(1510764694.691940,'zmdc',NULL,6793,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510764694.694010,'zmdc',NULL,6793,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510764699.697780,'zmdc',NULL,6793,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 18:51:39. Sending KILL to pid 15611','zmdc.pl',NULL),(1510764699.713370,'zmdc',NULL,6793,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510764704.707132,'zms',0,15635,-2,'ERR','Terminating, last frame sent time 10.003722 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510764709.777240,'zmdc',NULL,6793,0,'INF','Server shutdown at 17/11/15 18:51:49','zmdc.pl',NULL),(1510764709.902740,'zmpkg',NULL,15763,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510764709.906260,'zmpkg',NULL,15763,0,'INF','Command: start','zmpkg.pl',NULL),(1510764710.089150,'zmdc',NULL,15778,0,'INF','Server starting at 17/11/15 18:51:50','zmdc.pl',NULL),(1510764713.096590,'zmpkg',NULL,15763,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510764713.195030,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' starting at 17/11/15 18:51:53, pid = 15804','zmdc.pl',NULL),(1510764713.195170,'zmdc',NULL,15804,0,'INF','\'zmc -m 1\' started at 17/11/15 18:51:53','zmdc.pl',NULL),(1510764713.240320,'zmdc',NULL,15778,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510764713.243000,'zmdc',NULL,15778,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510764713.246810,'zmdc',NULL,15808,0,'INF','\'zmc -m 1\' started at 17/11/15 18:51:53','zmdc.pl',NULL),(1510764713.246810,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' starting at 17/11/15 18:51:53, pid = 15808','zmdc.pl',NULL),(1510764713.287810,'zmdc',NULL,15811,0,'INF','\'zmfilter.pl\' started at 17/11/15 18:51:53','zmdc.pl',NULL),(1510764713.287810,'zmdc',NULL,15778,0,'INF','\'zmfilter.pl\' starting at 17/11/15 18:51:53, pid = 15811','zmdc.pl',NULL),(1510764713.374680,'zmdc',NULL,15816,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 18:51:53','zmdc.pl',NULL),(1510764713.374660,'zmdc',NULL,15778,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 18:51:53, pid = 15816','zmdc.pl',NULL),(1510764713.404735,'zmc_m1',0,15808,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510764713.426420,'zmfilter',NULL,15811,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510764713.460870,'zmdc',NULL,15821,0,'INF','\'zmwatch.pl\' started at 17/11/15 18:51:53','zmdc.pl',NULL),(1510764713.460860,'zmdc',NULL,15778,0,'INF','\'zmwatch.pl\' starting at 17/11/15 18:51:53, pid = 15821','zmdc.pl',NULL),(1510764713.536280,'zmwatch',NULL,15821,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510764713.542210,'zmwatch',NULL,15821,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510764713.548550,'zmdc',NULL,15778,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 18:51:53, pid = 15828','zmdc.pl',NULL),(1510764713.548570,'zmdc',NULL,15828,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 18:51:53','zmdc.pl',NULL),(1510764715.394011,'zms',0,15842,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510764715.399065,'zms',0,15842,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510764717.810352,'zms',0,15842,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510764717.952284,'zms',0,15845,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510764717.957881,'zms',0,15845,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510764730.497450,'zmcontrol',NULL,15848,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764730.522410,'zmcontrol',NULL,15850,0,'INF','Control server 1/Floureon starting at 17/11/15 18:52:10','zmcontrol.pl',NULL),(1510764735.559340,'zmcontrol',NULL,15853,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764735.581050,'zmcontrol',NULL,15855,0,'INF','Control server 1/Floureon starting at 17/11/15 18:52:15','zmcontrol.pl',NULL),(1510764736.264360,'zmcontrol',NULL,15858,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764736.288890,'zmcontrol',NULL,15861,0,'INF','Control server 1/Floureon starting at 17/11/15 18:52:16','zmcontrol.pl',NULL),(1510764737.172780,'zmcontrol',NULL,15864,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510764737.198970,'zmcontrol',NULL,15867,0,'INF','Control server 1/Floureon starting at 17/11/15 18:52:17','zmcontrol.pl',NULL),(1510764740.524270,'zmcontrol',NULL,15848,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764740.532794,'web_php',NULL,15269,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764744.792384,'zms',0,15845,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510764745.582080,'zmcontrol',NULL,15853,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764745.596699,'web_php',NULL,6452,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764746.290300,'zmcontrol',NULL,15858,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764746.296418,'web_php',NULL,14242,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764747.200160,'zmcontrol',NULL,15864,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764747.208548,'web_php',NULL,14378,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConRight --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764754.432304,'zmc_m1',0,15808,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510764794.428564,'zmc_m1',0,15808,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764798.346580,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510764798.424550,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510764798.501860,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' sending stop to pid 15808 at 17/11/15 18:53:18','zmdc.pl',NULL),(1510764798.504968,'zmc_m1',0,15808,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510764804.505990,'zmdc',NULL,15778,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 18:53:24. Sending KILL to pid 15808','zmdc.pl',NULL),(1510764804.524800,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510764804.623310,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' starting at 17/11/15 18:53:24, pid = 15904','zmdc.pl',NULL),(1510764804.623520,'zmdc',NULL,15904,0,'INF','\'zmc -m 1\' started at 17/11/15 18:53:24','zmdc.pl',NULL),(1510764804.716810,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510764804.765244,'zmc_m1',0,15904,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510764804.795970,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510764810.999442,'zms',0,15926,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510764811.005285,'zms',0,15926,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510764814.709740,'zmcontrol',NULL,15928,0,'INF','Starting control server 1/FI9831W','zmcontrol.pl',NULL),(1510764814.735750,'zmcontrol',NULL,15930,0,'INF','Control server 1/FI9831W starting at 17/11/15 18:53:34','zmcontrol.pl',NULL),(1510764815.745910,'zmcontrol',NULL,15930,-3,'FAT','Missing mandatory parameter \'tiltspeed\'','zmcontrol.pl',NULL),(1510764819.868080,'zmcontrol',NULL,15935,0,'INF','Starting control server 1/FI9831W','zmcontrol.pl',NULL),(1510764819.896820,'zmcontrol',NULL,15937,0,'INF','Control server 1/FI9831W starting at 17/11/15 18:53:39','zmcontrol.pl',NULL),(1510764820.514400,'zmcontrol',NULL,15937,-3,'FAT','Missing mandatory parameter \'tiltspeed\'','zmcontrol.pl',NULL),(1510764829.898020,'zmcontrol',NULL,15935,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510764829.907179,'web_php',NULL,15888,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510764834.708325,'zms',0,15926,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510764845.791199,'zmc_m1',0,15904,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510764885.801435,'zmc_m1',0,15904,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764925.796329,'zmc_m1',0,15904,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510764965.800932,'zmc_m1',0,15904,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765005.806255,'zmc_m1',0,15904,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765045.796937,'zmc_m1',0,15904,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765085.790602,'zmc_m1',0,15904,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765107.126310,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510765107.204890,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510765107.283860,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' sending stop to pid 15904 at 17/11/15 18:58:27','zmdc.pl',NULL),(1510765107.289647,'zmc_m1',0,15904,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510765113.290740,'zmdc',NULL,15778,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 18:58:33. Sending KILL to pid 15904','zmdc.pl',NULL),(1510765113.306730,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510765113.393270,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' starting at 17/11/15 18:58:33, pid = 16016','zmdc.pl',NULL),(1510765113.393300,'zmdc',NULL,16016,0,'INF','\'zmc -m 1\' started at 17/11/15 18:58:33','zmdc.pl',NULL),(1510765113.490420,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510765113.538251,'zmc_m1',0,16016,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510765113.572540,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510765116.000950,'zms',0,16047,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510765116.005995,'zms',0,16047,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510765119.026980,'zmcontrol',NULL,16051,0,'INF','Starting control server 1/FI8918W','zmcontrol.pl',NULL),(1510765119.051590,'zmcontrol',NULL,16053,0,'INF','Control server 1/FI8918W starting at 17/11/15 18:58:39','zmcontrol.pl',NULL),(1510765120.116240,'zmcontrol',NULL,16053,-2,'ERR','Error REALLY check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510765120.119420,'zmcontrol',NULL,16053,-2,'ERR','Cmd:HTTP::Request=HASH(0x561083fb2eb0)','zmcontrol.pl',NULL),(1510765123.443060,'zmcontrol',NULL,16053,-2,'ERR','Error REALLY check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510765123.446160,'zmcontrol',NULL,16053,-2,'ERR','Cmd:HTTP::Request=HASH(0x561083fb2e08)','zmcontrol.pl',NULL),(1510765124.110900,'zmcontrol',NULL,16053,-2,'ERR','Error REALLY check failed:\'404 Site or Page Not Found\'','zmcontrol.pl',NULL),(1510765124.114180,'zmcontrol',NULL,16053,-2,'ERR','Cmd:HTTP::Request=HASH(0x561083fb2ee0)','zmcontrol.pl',NULL),(1510765131.694099,'zms',0,16047,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510765154.614100,'zmc_m1',0,16016,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510765154.938040,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510765155.018040,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510765155.095370,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' sending stop to pid 16016 at 17/11/15 18:59:15','zmdc.pl',NULL),(1510765155.098604,'zmc_m1',0,16016,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510765161.099710,'zmdc',NULL,15778,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 18:59:21. Sending KILL to pid 16016','zmdc.pl',NULL),(1510765161.118240,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510765161.223120,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' starting at 17/11/15 18:59:21, pid = 16079','zmdc.pl',NULL),(1510765161.223220,'zmdc',NULL,16079,0,'INF','\'zmc -m 1\' started at 17/11/15 18:59:21','zmdc.pl',NULL),(1510765161.316190,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510765161.366510,'zmc_m1',0,16079,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510765161.404830,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510765164.355358,'zms',0,16100,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510765164.358377,'zms',0,16100,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510765171.164550,'zmcontrol',NULL,16104,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510765171.199200,'zmcontrol',NULL,16106,0,'INF','Control server 1/Floureon starting at 17/11/15 18:59:31','zmcontrol.pl',NULL),(1510765171.675670,'zmcontrol',NULL,16108,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510765171.702710,'zmcontrol',NULL,16110,0,'INF','Control server 1/Floureon starting at 17/11/15 18:59:31','zmcontrol.pl',NULL),(1510765174.920020,'zmcontrol',NULL,16113,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510765174.945730,'zmcontrol',NULL,16116,0,'INF','Control server 1/Floureon starting at 17/11/15 18:59:34','zmcontrol.pl',NULL),(1510765175.327199,'web_php',NULL,9947,-2,'ERR','Invalid control parameter: Near','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510765175.431200,'zmcontrol',NULL,16119,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510765175.454040,'zmcontrol',NULL,16122,0,'INF','Control server 1/Floureon starting at 17/11/15 18:59:35','zmcontrol.pl',NULL),(1510765181.200580,'zmcontrol',NULL,16104,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510765181.207040,'web_php',NULL,6452,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510765181.703800,'zmcontrol',NULL,16108,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510765181.709950,'web_php',NULL,14378,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510765184.946710,'zmcontrol',NULL,16113,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510765184.952714,'web_php',NULL,14126,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510765185.455380,'zmcontrol',NULL,16119,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510765185.461050,'web_php',NULL,9947,-2,'ERR','/usr/bin/zmcontrol.pl --command=Near --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510765202.430251,'zmc_m1',0,16079,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510765242.425615,'zmc_m1',0,16079,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765282.428087,'zmc_m1',0,16079,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765322.424777,'zmc_m1',0,16079,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765362.428949,'zmc_m1',0,16079,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765402.426756,'zmc_m1',0,16079,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765442.427030,'zmc_m1',0,16079,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765482.434725,'zmc_m1',0,16079,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765509.575080,'zms',0,16100,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510765522.423579,'zmc_m1',0,16079,0,'INF','Monitor-1: 9000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765562.425213,'zmc_m1',0,16079,0,'INF','Monitor-1: 10000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765602.423339,'zmc_m1',0,16079,0,'INF','Monitor-1: 11000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765642.430167,'zmc_m1',0,16079,0,'INF','Monitor-1: 12000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765682.423580,'zmc_m1',0,16079,0,'INF','Monitor-1: 13000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765722.427988,'zmc_m1',0,16079,0,'INF','Monitor-1: 14000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765762.428023,'zmc_m1',0,16079,0,'INF','Monitor-1: 15000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765799.558140,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510765799.636840,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510765799.717550,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' sending stop to pid 16079 at 17/11/15 19:09:59','zmdc.pl',NULL),(1510765799.723688,'zmc_m1',0,16079,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510765805.724720,'zmdc',NULL,15778,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 19:10:05. Sending KILL to pid 16079','zmdc.pl',NULL),(1510765805.742660,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510765805.836880,'zmdc',NULL,16358,0,'INF','\'zmc -m 1\' started at 17/11/15 19:10:05','zmdc.pl',NULL),(1510765805.836880,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' starting at 17/11/15 19:10:05, pid = 16358','zmdc.pl',NULL),(1510765805.924570,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510765805.968112,'zmc_m1',0,16358,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510765806.000460,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510765812.617093,'zms',0,16381,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510765812.623079,'zms',0,16381,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510765828.492070,'zmcontrol',NULL,16385,0,'INF','Starting control server 1/FI8918W','zmcontrol.pl',NULL),(1510765828.514510,'zmcontrol',NULL,16387,0,'INF','Control server 1/FI8918W starting at 17/11/15 19:10:28','zmcontrol.pl',NULL),(1510765846.972656,'zmc_m1',0,16358,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510765869.406959,'zms',0,16381,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510765886.986337,'zmc_m1',0,16358,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765926.986429,'zmc_m1',0,16358,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510765966.978371,'zmc_m1',0,16358,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766006.982357,'zmc_m1',0,16358,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766046.977386,'zmc_m1',0,16358,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766063.232630,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510766063.317130,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510766063.396530,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' sending stop to pid 16358 at 17/11/15 19:14:23','zmdc.pl',NULL),(1510766063.401260,'zmc_m1',0,16358,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510766069.402350,'zmdc',NULL,15778,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 19:14:29. Sending KILL to pid 16358','zmdc.pl',NULL),(1510766069.420710,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510766069.509630,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' starting at 17/11/15 19:14:29, pid = 16479','zmdc.pl',NULL),(1510766069.509630,'zmdc',NULL,16479,0,'INF','\'zmc -m 1\' started at 17/11/15 19:14:29','zmdc.pl',NULL),(1510766069.593580,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510766069.649242,'zmc_m1',0,16479,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510766069.680990,'zmdc',NULL,15778,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510766110.703505,'zmc_m1',0,16479,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510766128.841564,'zms',0,16505,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510766128.844220,'zms',0,16505,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510766144.932990,'zmcontrol',NULL,16519,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766144.957800,'zmcontrol',NULL,16521,0,'INF','Control server 1/Floureon starting at 17/11/15 19:15:44','zmcontrol.pl',NULL),(1510766150.702675,'zmc_m1',0,16479,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766153.583880,'zmcontrol',NULL,16525,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766153.606220,'zmcontrol',NULL,16527,0,'INF','Control server 1/Floureon starting at 17/11/15 19:15:53','zmcontrol.pl',NULL),(1510766154.888280,'zmcontrol',NULL,16530,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766154.911140,'zmcontrol',NULL,16533,0,'INF','Control server 1/Floureon starting at 17/11/15 19:15:54','zmcontrol.pl',NULL),(1510766154.958710,'zmcontrol',NULL,16519,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766154.964320,'web_php',NULL,13908,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766163.607210,'zmcontrol',NULL,16525,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766163.614084,'web_php',NULL,14378,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766164.912320,'zmcontrol',NULL,16530,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766164.920531,'web_php',NULL,15269,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766169.557714,'zmc_m1',0,16496,-1,'WAR','Packet in sequence, gap 742','zm_rtp_source.cpp',127),(1510766169.561188,'zmc_m1',0,16496,-1,'WAR','Discarding frame 2506','zm_rtp_source.cpp',349),(1510766169.564457,'zmc_m1',0,16496,-1,'WAR','Discarding incomplete frame 2506, 0 bytes','zm_rtp_source.cpp',336),(1510766186.730577,'zmc_m1',0,16496,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766186.736928,'zmc_m1',0,16496,-1,'WAR','Discarding partial frame 2952, 43024 bytes','zm_rtp_source.cpp',345),(1510766186.743606,'zmc_m1',0,16496,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766186.750602,'zmc_m1',0,16496,-1,'WAR','Discarding frame 2952','zm_rtp_source.cpp',349),(1510766186.757599,'zmc_m1',0,16496,-1,'WAR','Discarding incomplete frame 2952, 0 bytes','zm_rtp_source.cpp',336),(1510766187.151985,'zmc_m1',0,16496,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766187.155094,'zmc_m1',0,16496,-1,'WAR','Discarding partial frame 2962, 7174 bytes','zm_rtp_source.cpp',345),(1510766187.157718,'zmc_m1',0,16496,-1,'WAR','Discarding incomplete frame 2962, 0 bytes','zm_rtp_source.cpp',336),(1510766188.616392,'web_php',NULL,16375,-2,'ERR','Invalid control parameter: Near','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510766188.712580,'zmcontrol',NULL,16540,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766188.733820,'zmcontrol',NULL,16542,0,'INF','Control server 1/Floureon starting at 17/11/15 19:16:28','zmcontrol.pl',NULL),(1510766193.178877,'web_php',NULL,6452,-2,'ERR','Invalid control parameter: Tele','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510766193.278800,'zmcontrol',NULL,16553,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766193.299780,'zmcontrol',NULL,16555,0,'INF','Control server 1/Floureon starting at 17/11/15 19:16:33','zmcontrol.pl',NULL),(1510766193.374031,'zmc_m1',0,16479,0,'INF','Monitor-1: 3000 - Capturing at 23.26 fps','zm_monitor.cpp',3125),(1510766193.394691,'zmc_m1',0,16496,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766193.397311,'zmc_m1',0,16496,-1,'WAR','Discarding partial frame 3123, 12910 bytes','zm_rtp_source.cpp',345),(1510766193.399905,'zmc_m1',0,16496,-1,'WAR','Discarding incomplete frame 3123, 0 bytes','zm_rtp_source.cpp',336),(1510766195.899475,'zms',0,16505,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510766198.734820,'zmcontrol',NULL,16540,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766198.743757,'web_php',NULL,16375,-2,'ERR','/usr/bin/zmcontrol.pl --command=Near --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766203.301410,'zmcontrol',NULL,16553,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766203.307323,'web_php',NULL,6452,-2,'ERR','/usr/bin/zmcontrol.pl --command=Tele --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766220.113954,'zmc_m1',0,16496,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766220.119312,'zmc_m1',0,16496,-1,'WAR','Discarding partial frame 3816, 2872 bytes','zm_rtp_source.cpp',345),(1510766220.121369,'zmc_m1',0,16496,-1,'WAR','Discarding incomplete frame 3816, 0 bytes','zm_rtp_source.cpp',336),(1510766226.954531,'zmc_m1',0,16496,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766226.959088,'zmc_m1',0,16496,-1,'WAR','Discarding partial frame 3994, 12910 bytes','zm_rtp_source.cpp',345),(1510766226.965318,'zmc_m1',0,16496,-1,'WAR','Discarding incomplete frame 3994, 0 bytes','zm_rtp_source.cpp',336),(1510766233.495161,'zmc_m1',0,16479,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766254.992934,'zmc_m1',0,16496,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766254.999261,'zmc_m1',0,16496,-1,'WAR','Discarding partial frame 4722, 7174 bytes','zm_rtp_source.cpp',345),(1510766255.005779,'zmc_m1',0,16496,-1,'WAR','Discarding incomplete frame 4722, 0 bytes','zm_rtp_source.cpp',336),(1510766258.406030,'zmpkg',NULL,16586,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510766258.413760,'zmpkg',NULL,16586,0,'INF','Command: restart','zmpkg.pl',NULL),(1510766258.504650,'zmsystemctl',NULL,16592,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510766258.586770,'zmpkg',NULL,16596,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510766258.594680,'zmpkg',NULL,16596,0,'INF','Command: stop','zmpkg.pl',NULL),(1510766258.782200,'zmdc',NULL,15778,0,'INF','\'zmaudit.pl -c\' sending stop to pid 15816 at 17/11/15 19:17:38','zmdc.pl',NULL),(1510766258.786170,'zmdc',NULL,15778,0,'INF','\'zmtelemetry.pl\' sending stop to pid 15828 at 17/11/15 19:17:38','zmdc.pl',NULL),(1510766258.789370,'zmdc',NULL,15778,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510766258.792470,'zmdc',NULL,15778,0,'INF','\'zmwatch.pl\' sending stop to pid 15821 at 17/11/15 19:17:38','zmdc.pl',NULL),(1510766258.793940,'zmdc',NULL,15778,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510766258.796820,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' sending stop to pid 16479 at 17/11/15 19:17:38','zmdc.pl',NULL),(1510766258.798310,'zmdc',NULL,15778,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510766258.801125,'zmc_m1',0,16479,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510766258.801150,'zmdc',NULL,15778,0,'INF','\'zmfilter.pl\' sending stop to pid 15811 at 17/11/15 19:17:38','zmdc.pl',NULL),(1510766258.806520,'zmdc',NULL,15778,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510766263.812530,'zmdc',NULL,15778,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 19:17:43. Sending KILL to pid 16479','zmdc.pl',NULL),(1510766263.826080,'zmdc',NULL,15778,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510766273.945650,'zmdc',NULL,15778,0,'INF','Server shutdown at 17/11/15 19:17:53','zmdc.pl',NULL),(1510766274.079500,'zmpkg',NULL,16632,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510766274.084070,'zmpkg',NULL,16632,0,'INF','Command: start','zmpkg.pl',NULL),(1510766274.325430,'zmdc',NULL,16646,0,'INF','Server starting at 17/11/15 19:17:54','zmdc.pl',NULL),(1510766277.331240,'zmpkg',NULL,16632,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510766277.444780,'zmdc',NULL,16646,0,'INF','\'zmc -m 1\' starting at 17/11/15 19:17:57, pid = 16672','zmdc.pl',NULL),(1510766277.444780,'zmdc',NULL,16672,0,'INF','\'zmc -m 1\' started at 17/11/15 19:17:57','zmdc.pl',NULL),(1510766277.486200,'zmdc',NULL,16646,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510766277.490260,'zmdc',NULL,16646,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510766277.496400,'zmdc',NULL,16646,0,'INF','\'zmc -m 1\' starting at 17/11/15 19:17:57, pid = 16676','zmdc.pl',NULL),(1510766277.496400,'zmdc',NULL,16676,0,'INF','\'zmc -m 1\' started at 17/11/15 19:17:57','zmdc.pl',NULL),(1510766277.536860,'zmdc',NULL,16646,0,'INF','\'zmfilter.pl\' starting at 17/11/15 19:17:57, pid = 16678','zmdc.pl',NULL),(1510766277.536880,'zmdc',NULL,16678,0,'INF','\'zmfilter.pl\' started at 17/11/15 19:17:57','zmdc.pl',NULL),(1510766277.640310,'zmdc',NULL,16646,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 19:17:57, pid = 16684','zmdc.pl',NULL),(1510766277.640310,'zmdc',NULL,16684,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 19:17:57','zmdc.pl',NULL),(1510766277.675646,'zmc_m1',0,16676,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510766277.709320,'zmfilter',NULL,16678,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510766277.736250,'zmdc',NULL,16646,0,'INF','\'zmwatch.pl\' starting at 17/11/15 19:17:57, pid = 16689','zmdc.pl',NULL),(1510766277.736600,'zmdc',NULL,16689,0,'INF','\'zmwatch.pl\' started at 17/11/15 19:17:57','zmdc.pl',NULL),(1510766277.819810,'zmwatch',NULL,16689,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510766277.822850,'zmwatch',NULL,16689,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510766277.828990,'zmdc',NULL,16696,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 19:17:57','zmdc.pl',NULL),(1510766277.828990,'zmdc',NULL,16646,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 19:17:57, pid = 16696','zmdc.pl',NULL),(1510766290.503171,'zms',0,16717,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510766290.506961,'zms',0,16717,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510766294.636050,'zmcontrol',NULL,16719,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766294.659760,'zmcontrol',NULL,16721,0,'INF','Control server 1/Floureon starting at 17/11/15 19:18:14','zmcontrol.pl',NULL),(1510766299.270530,'zmcontrol',NULL,16723,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766299.299260,'zmcontrol',NULL,16725,0,'INF','Control server 1/Floureon starting at 17/11/15 19:18:19','zmcontrol.pl',NULL),(1510766300.638300,'zmcontrol',NULL,16728,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766300.660950,'zmcontrol',NULL,16731,0,'INF','Control server 1/Floureon starting at 17/11/15 19:18:20','zmcontrol.pl',NULL),(1510766304.661180,'zmcontrol',NULL,16719,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766304.670797,'web_php',NULL,6452,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766307.876530,'zmcontrol',NULL,16734,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766307.901280,'zmcontrol',NULL,16736,0,'INF','Control server 1/Floureon starting at 17/11/15 19:18:27','zmcontrol.pl',NULL),(1510766308.399836,'zmc_m1',0,16708,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766308.405145,'zmc_m1',0,16708,-1,'WAR','Discarding partial frame 773, 12910 bytes','zm_rtp_source.cpp',345),(1510766308.410063,'zmc_m1',0,16708,-1,'WAR','Discarding incomplete frame 773, 0 bytes','zm_rtp_source.cpp',336),(1510766309.129169,'web_js',NULL,15888,-2,'ERR','TypeError: $(...).preset.getValue is not a function','zm/skins/classic/views/js/controlpreset.js',3),(1510766309.300290,'zmcontrol',NULL,16723,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766309.308961,'web_php',NULL,15921,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766310.662220,'zmcontrol',NULL,16728,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766310.671188,'web_php',NULL,16712,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766314.122180,'zmcontrol',NULL,16741,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766314.148640,'zmcontrol',NULL,16743,0,'INF','Control server 1/Floureon starting at 17/11/15 19:18:34','zmcontrol.pl',NULL),(1510766317.902410,'zmcontrol',NULL,16734,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766317.911918,'web_php',NULL,16124,-2,'ERR','/usr/bin/zmcontrol.pl --preset=1 --command=presetGoto --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766318.740613,'zmc_m1',0,16676,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510766318.888740,'zmcontrol',NULL,16748,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766318.910570,'zmcontrol',NULL,16750,0,'INF','Control server 1/Floureon starting at 17/11/15 19:18:38','zmcontrol.pl',NULL),(1510766319.681800,'zmcontrol',NULL,16752,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766319.706030,'zmcontrol',NULL,16754,0,'INF','Control server 1/Floureon starting at 17/11/15 19:18:39','zmcontrol.pl',NULL),(1510766319.974640,'zmcontrol',NULL,16756,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766320.001720,'zmcontrol',NULL,16759,0,'INF','Control server 1/Floureon starting at 17/11/15 19:18:39','zmcontrol.pl',NULL),(1510766320.407945,'web_php',NULL,14125,-2,'ERR','Invalid control parameter: Tele','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510766320.525460,'zmcontrol',NULL,16762,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766320.547350,'zmcontrol',NULL,16765,0,'INF','Control server 1/Floureon starting at 17/11/15 19:18:40','zmcontrol.pl',NULL),(1510766324.149900,'zmcontrol',NULL,16741,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766324.159612,'web_php',NULL,15888,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766328.911930,'zmcontrol',NULL,16748,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766328.919400,'web_php',NULL,13908,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766329.038690,'zms',0,16717,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510766329.707190,'zmcontrol',NULL,16752,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766329.715776,'web_php',NULL,15269,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766330.002760,'zmcontrol',NULL,16756,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766330.011502,'web_php',NULL,14378,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766330.548720,'zmcontrol',NULL,16762,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766330.557705,'web_php',NULL,14125,-2,'ERR','/usr/bin/zmcontrol.pl --command=Tele --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766358.738954,'zmc_m1',0,16676,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766363.431091,'zmc_m1',0,16708,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766363.436649,'zmc_m1',0,16708,-1,'WAR','Discarding partial frame 2204, 4306 bytes','zm_rtp_source.cpp',345),(1510766363.439815,'zmc_m1',0,16708,-1,'WAR','Discarding incomplete frame 2204, 0 bytes','zm_rtp_source.cpp',336),(1510766370.157787,'zmc_m1',0,16708,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766370.163639,'zmc_m1',0,16708,-1,'WAR','Discarding partial frame 2376, 15778 bytes','zm_rtp_source.cpp',345),(1510766370.169206,'zmc_m1',0,16708,-1,'WAR','Discarding incomplete frame 2376, 0 bytes','zm_rtp_source.cpp',336),(1510766398.852270,'zmc_m1',0,16676,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766411.151267,'zmc_m1',0,16708,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766411.154921,'zmc_m1',0,16708,-1,'WAR','Discarding partial frame 3442, 5740 bytes','zm_rtp_source.cpp',345),(1510766411.157630,'zmc_m1',0,16708,-1,'WAR','Discarding incomplete frame 3442, 0 bytes','zm_rtp_source.cpp',336),(1510766430.676339,'zmc_m1',0,16708,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766430.682140,'zmc_m1',0,16708,-1,'WAR','Discarding partial frame 3949, 32986 bytes','zm_rtp_source.cpp',345),(1510766430.685111,'zmc_m1',0,16708,-1,'WAR','Discarding incomplete frame 3949, 0 bytes','zm_rtp_source.cpp',336),(1510766431.536273,'zmc_m1',0,16708,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766431.539278,'zmc_m1',0,16708,-1,'WAR','Discarding partial frame 3970, 2872 bytes','zm_rtp_source.cpp',345),(1510766431.541929,'zmc_m1',0,16708,-1,'WAR','Discarding incomplete frame 3970, 0 bytes','zm_rtp_source.cpp',336),(1510766438.958652,'zmc_m1',0,16676,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766478.958706,'zmc_m1',0,16676,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766480.751740,'zmpkg',NULL,16859,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510766480.758230,'zmpkg',NULL,16859,0,'INF','Command: stop','zmpkg.pl',NULL),(1510766480.939060,'zmdc',NULL,16646,0,'INF','\'zmtelemetry.pl\' sending stop to pid 16696 at 17/11/15 19:21:20','zmdc.pl',NULL),(1510766480.942680,'zmdc',NULL,16646,0,'INF','\'zmaudit.pl -c\' sending stop to pid 16684 at 17/11/15 19:21:20','zmdc.pl',NULL),(1510766480.945320,'zmdc',NULL,16646,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510766480.948120,'zmdc',NULL,16646,0,'INF','\'zmfilter.pl\' sending stop to pid 16678 at 17/11/15 19:21:20','zmdc.pl',NULL),(1510766480.949340,'zmdc',NULL,16646,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510766480.951850,'zmdc',NULL,16646,0,'INF','\'zmc -m 1\' sending stop to pid 16676 at 17/11/15 19:21:20','zmdc.pl',NULL),(1510766480.953095,'zmc_m1',0,16676,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510766480.953200,'zmdc',NULL,16646,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510766480.953140,'zmdc',NULL,16646,0,'INF','\'zmwatch.pl\' sending stop to pid 16689 at 17/11/15 19:21:20','zmdc.pl',NULL),(1510766480.963290,'zmdc',NULL,16646,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510766485.968740,'zmdc',NULL,16646,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 19:21:25. Sending KILL to pid 16676','zmdc.pl',NULL),(1510766485.985570,'zmdc',NULL,16646,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510766496.014390,'zmdc',NULL,16646,0,'INF','Server shutdown at 17/11/15 19:21:36','zmdc.pl',NULL),(1510766554.291940,'zmpkg',NULL,1306,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510766554.300790,'zmpkg',NULL,1306,0,'INF','Command: start','zmpkg.pl',NULL),(1510766554.476590,'zmdc',NULL,1333,0,'INF','Server starting at 17/11/15 19:22:34','zmdc.pl',NULL),(1510766557.479170,'zmpkg',NULL,1306,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510766557.559680,'zmdc',NULL,1333,0,'INF','\'zmc -m 1\' starting at 17/11/15 19:22:37, pid = 1674','zmdc.pl',NULL),(1510766557.559680,'zmdc',NULL,1674,0,'INF','\'zmc -m 1\' started at 17/11/15 19:22:37','zmdc.pl',NULL),(1510766557.615540,'zmdc',NULL,1333,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510766557.621260,'zmdc',NULL,1333,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510766557.628260,'zmdc',NULL,1701,0,'INF','\'zmc -m 1\' started at 17/11/15 19:22:37','zmdc.pl',NULL),(1510766557.628260,'zmdc',NULL,1333,0,'INF','\'zmc -m 1\' starting at 17/11/15 19:22:37, pid = 1701','zmdc.pl',NULL),(1510766557.667140,'zmdc',NULL,1704,0,'INF','\'zmfilter.pl\' started at 17/11/15 19:22:37','zmdc.pl',NULL),(1510766557.667100,'zmdc',NULL,1333,0,'INF','\'zmfilter.pl\' starting at 17/11/15 19:22:37, pid = 1704','zmdc.pl',NULL),(1510766557.763690,'zmdc',NULL,1333,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 19:22:37, pid = 1710','zmdc.pl',NULL),(1510766557.764150,'zmdc',NULL,1710,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 19:22:37','zmdc.pl',NULL),(1510766557.805999,'zmc_m1',0,1701,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510766557.852000,'zmfilter',NULL,1704,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510766557.869470,'zmdc',NULL,1719,0,'INF','\'zmwatch.pl\' started at 17/11/15 19:22:37','zmdc.pl',NULL),(1510766557.869460,'zmdc',NULL,1333,0,'INF','\'zmwatch.pl\' starting at 17/11/15 19:22:37, pid = 1719','zmdc.pl',NULL),(1510766557.956180,'zmdc',NULL,1731,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 19:22:37','zmdc.pl',NULL),(1510766557.956170,'zmdc',NULL,1333,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 19:22:37, pid = 1731','zmdc.pl',NULL),(1510766557.960300,'zmwatch',NULL,1719,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510766557.966700,'zmwatch',NULL,1719,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510766567.155705,'zmc_m1',0,1767,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766567.158382,'zmc_m1',0,1767,-1,'WAR','Discarding partial frame 218, 12910 bytes','zm_rtp_source.cpp',345),(1510766567.161051,'zmc_m1',0,1767,-1,'WAR','Discarding incomplete frame 218, 0 bytes','zm_rtp_source.cpp',336),(1510766567.238170,'zmc_m1',0,1767,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766567.240963,'zmc_m1',0,1767,-1,'WAR','Discarding partial frame 219, 11476 bytes','zm_rtp_source.cpp',345),(1510766567.242253,'zmc_m1',0,1767,-1,'WAR','Discarding incomplete frame 219, 0 bytes','zm_rtp_source.cpp',336),(1510766587.457952,'zmc_m1',0,1767,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766587.464022,'zmc_m1',0,1767,-1,'WAR','Discarding partial frame 747, 10042 bytes','zm_rtp_source.cpp',345),(1510766587.470788,'zmc_m1',0,1767,-1,'WAR','Discarding incomplete frame 747, 0 bytes','zm_rtp_source.cpp',336),(1510766588.119781,'zmc_m1',0,1767,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766588.122442,'zmc_m1',0,1767,-1,'WAR','Discarding partial frame 763, 4306 bytes','zm_rtp_source.cpp',345),(1510766588.124849,'zmc_m1',0,1767,-1,'WAR','Discarding incomplete frame 763, 0 bytes','zm_rtp_source.cpp',336),(1510766588.431995,'zmc_m1',0,1767,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766588.437393,'zmc_m1',0,1767,-1,'WAR','Discarding partial frame 770, 10042 bytes','zm_rtp_source.cpp',345),(1510766588.442267,'zmc_m1',0,1767,-1,'WAR','Discarding incomplete frame 770, 0 bytes','zm_rtp_source.cpp',336),(1510766598.753195,'zmc_m1',0,1701,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510766617.740295,'zms',0,2963,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510766617.743301,'zms',0,2963,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510766621.282210,'zmcontrol',NULL,2970,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766621.306250,'zmcontrol',NULL,2974,0,'INF','Control server 1/Floureon starting at 17/11/15 19:23:41','zmcontrol.pl',NULL),(1510766623.274680,'zmcontrol',NULL,2979,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766623.297470,'zmcontrol',NULL,2982,0,'INF','Control server 1/Floureon starting at 17/11/15 19:23:43','zmcontrol.pl',NULL),(1510766624.159540,'zmcontrol',NULL,2986,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766624.193240,'zmcontrol',NULL,2989,0,'INF','Control server 1/Floureon starting at 17/11/15 19:23:44','zmcontrol.pl',NULL),(1510766631.307340,'zmcontrol',NULL,2970,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766631.316295,'web_php',NULL,1209,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766632.491180,'zms',0,2963,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510766633.298470,'zmcontrol',NULL,2979,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766633.307823,'web_php',NULL,1210,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766634.194450,'zmcontrol',NULL,2986,-3,'FAT','Can\'t connect: No such file or directory after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510766634.200854,'web_php',NULL,1211,-2,'ERR','/usr/bin/zmcontrol.pl --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510766635.814076,'zmc_m1',0,1767,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766635.819725,'zmc_m1',0,1767,-1,'WAR','Discarding partial frame 2006, 14344 bytes','zm_rtp_source.cpp',345),(1510766638.773966,'zmc_m1',0,1701,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766669.107164,'zmc_m1',0,1767,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766669.113119,'zmc_m1',0,1767,-1,'WAR','Discarding partial frame 2871, 2872 bytes','zm_rtp_source.cpp',345),(1510766669.116673,'zmc_m1',0,1767,-1,'WAR','Discarding incomplete frame 2871, 0 bytes','zm_rtp_source.cpp',336),(1510766674.988017,'zmc_m1',0,1767,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766674.994270,'zmc_m1',0,1767,-1,'WAR','Discarding partial frame 3023, 10042 bytes','zm_rtp_source.cpp',345),(1510766674.999787,'zmc_m1',0,1767,-1,'WAR','Discarding incomplete frame 3023, 0 bytes','zm_rtp_source.cpp',336),(1510766678.834834,'zmc_m1',0,1701,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766718.834361,'zmc_m1',0,1701,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766737.053490,'zmc_m1',0,1767,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766737.058941,'zmc_m1',0,1767,-1,'WAR','Discarding frame 4636','zm_rtp_source.cpp',349),(1510766737.064446,'zmc_m1',0,1767,-1,'WAR','Discarding incomplete frame 4636, 0 bytes','zm_rtp_source.cpp',336),(1510766753.467310,'zmpkg',NULL,3115,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510766753.470920,'zmpkg',NULL,3115,0,'INF','Command: restart','zmpkg.pl',NULL),(1510766753.570910,'zmsystemctl',NULL,3121,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510766753.646690,'zmpkg',NULL,3125,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510766753.652550,'zmpkg',NULL,3125,0,'INF','Command: stop','zmpkg.pl',NULL),(1510766753.819540,'zmdc',NULL,1333,0,'INF','\'zmaudit.pl -c\' sending stop to pid 1710 at 17/11/15 19:25:53','zmdc.pl',NULL),(1510766753.825490,'zmdc',NULL,1333,0,'INF','\'zmc -m 1\' sending stop to pid 1701 at 17/11/15 19:25:53','zmdc.pl',NULL),(1510766753.830520,'zmdc',NULL,1333,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510766753.836022,'zmc_m1',0,1701,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510766753.836050,'zmdc',NULL,1333,0,'INF','\'zmtelemetry.pl\' sending stop to pid 1731 at 17/11/15 19:25:53','zmdc.pl',NULL),(1510766753.847010,'zmdc',NULL,1333,0,'INF','\'zmfilter.pl\' sending stop to pid 1704 at 17/11/15 19:25:53','zmdc.pl',NULL),(1510766753.851710,'zmdc',NULL,1333,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510766753.855250,'zmdc',NULL,1333,0,'INF','\'zmwatch.pl\' sending stop to pid 1719 at 17/11/15 19:25:53','zmdc.pl',NULL),(1510766753.858630,'zmdc',NULL,1333,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510766753.863810,'zmdc',NULL,1333,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510766758.868040,'zmdc',NULL,1333,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 19:25:58. Sending KILL to pid 1701','zmdc.pl',NULL),(1510766758.889060,'zmdc',NULL,1333,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510766768.954320,'zmdc',NULL,1333,0,'INF','Server shutdown at 17/11/15 19:26:08','zmdc.pl',NULL),(1510766769.057130,'zmpkg',NULL,3161,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510766769.061080,'zmpkg',NULL,3161,0,'INF','Command: start','zmpkg.pl',NULL),(1510766769.225050,'zmdc',NULL,3175,0,'INF','Server starting at 17/11/15 19:26:09','zmdc.pl',NULL),(1510766772.231350,'zmpkg',NULL,3161,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510766772.317650,'zmdc',NULL,3201,0,'INF','\'zmc -m 1\' started at 17/11/15 19:26:12','zmdc.pl',NULL),(1510766772.317640,'zmdc',NULL,3175,0,'INF','\'zmc -m 1\' starting at 17/11/15 19:26:12, pid = 3201','zmdc.pl',NULL),(1510766772.361430,'zmdc',NULL,3175,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510766772.364170,'zmdc',NULL,3175,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510766772.374340,'zmdc',NULL,3175,0,'INF','\'zmc -m 1\' starting at 17/11/15 19:26:12, pid = 3205','zmdc.pl',NULL),(1510766772.374340,'zmdc',NULL,3205,0,'INF','\'zmc -m 1\' started at 17/11/15 19:26:12','zmdc.pl',NULL),(1510766772.406880,'zmdc',NULL,3175,0,'INF','\'zmfilter.pl\' starting at 17/11/15 19:26:12, pid = 3207','zmdc.pl',NULL),(1510766772.406900,'zmdc',NULL,3207,0,'INF','\'zmfilter.pl\' started at 17/11/15 19:26:12','zmdc.pl',NULL),(1510766772.496760,'zmdc',NULL,3175,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 19:26:12, pid = 3213','zmdc.pl',NULL),(1510766772.496760,'zmdc',NULL,3213,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 19:26:12','zmdc.pl',NULL),(1510766772.535063,'zmc_m1',0,3205,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510766772.549470,'zmfilter',NULL,3207,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510766772.594310,'zmdc',NULL,3218,0,'INF','\'zmwatch.pl\' started at 17/11/15 19:26:12','zmdc.pl',NULL),(1510766772.594310,'zmdc',NULL,3175,0,'INF','\'zmwatch.pl\' starting at 17/11/15 19:26:12, pid = 3218','zmdc.pl',NULL),(1510766772.665320,'zmwatch',NULL,3218,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510766772.668400,'zmwatch',NULL,3218,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510766772.673790,'zmdc',NULL,3175,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 19:26:12, pid = 3225','zmdc.pl',NULL),(1510766772.673790,'zmdc',NULL,3225,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 19:26:12','zmdc.pl',NULL),(1510766777.097541,'zms',0,3242,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510766777.102707,'zms',0,3242,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510766780.315830,'zmcontrol',NULL,3245,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766780.339070,'zmcontrol',NULL,3247,0,'INF','Control server 1/Floureon starting at 17/11/15 19:26:20','zmcontrol.pl',NULL),(1510766803.212797,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766803.215788,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 771, 12910 bytes','zm_rtp_source.cpp',345),(1510766803.412793,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766803.416010,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 775, 11476 bytes','zm_rtp_source.cpp',345),(1510766803.418505,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 775, 0 bytes','zm_rtp_source.cpp',336),(1510766808.112858,'web_php',NULL,1210,-2,'ERR','Invalid control parameter: Tele','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510766808.116130,'zmcontrol',NULL,3247,-3,'FAT','Can\'t access Tele member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510766811.235845,'web_php',NULL,1210,-2,'ERR','Invalid control parameter: Near','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510766811.362000,'zmcontrol',NULL,3249,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766811.385570,'zmcontrol',NULL,3251,0,'INF','Control server 1/Floureon starting at 17/11/15 19:26:51','zmcontrol.pl',NULL),(1510766812.403290,'zmcontrol',NULL,3251,-3,'FAT','Can\'t access Near member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510766813.111430,'zmcontrol',NULL,3254,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766813.135350,'zmcontrol',NULL,3256,0,'INF','Control server 1/Floureon starting at 17/11/15 19:26:53','zmcontrol.pl',NULL),(1510766813.686468,'zmc_m1',0,3205,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510766814.144130,'zmcontrol',NULL,3256,-3,'FAT','Can\'t access focusAuto member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510766814.748340,'zmcontrol',NULL,3258,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766814.773290,'zmcontrol',NULL,3260,0,'INF','Control server 1/Floureon starting at 17/11/15 19:26:54','zmcontrol.pl',NULL),(1510766850.864985,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766850.870406,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 2008, 5740 bytes','zm_rtp_source.cpp',345),(1510766850.875760,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 2008, 0 bytes','zm_rtp_source.cpp',336),(1510766851.705745,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766851.711729,'zmc_m1',0,3237,-1,'WAR','Discarding frame 2030','zm_rtp_source.cpp',349),(1510766851.718500,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 2030, 0 bytes','zm_rtp_source.cpp',336),(1510766853.769370,'zmc_m1',0,3205,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766884.858423,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766884.861050,'zmc_m1',0,3237,-1,'WAR','Discarding frame 2890','zm_rtp_source.cpp',349),(1510766884.869253,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 2890, 0 bytes','zm_rtp_source.cpp',336),(1510766891.579082,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766891.582163,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 3065, 68836 bytes','zm_rtp_source.cpp',345),(1510766891.587775,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 3065, 0 bytes','zm_rtp_source.cpp',336),(1510766893.845873,'zmc_m1',0,3205,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766898.505736,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766898.511060,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 3243, 12910 bytes','zm_rtp_source.cpp',345),(1510766898.516674,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 3243, 0 bytes','zm_rtp_source.cpp',336),(1510766926.645017,'web_php',NULL,2976,-2,'ERR','Invalid control parameter: Open','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510766926.648020,'zmcontrol',NULL,3260,-3,'FAT','Can\'t access Open member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510766928.019333,'web_php',NULL,2976,-2,'ERR','Invalid control parameter: Open','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510766928.122440,'zmcontrol',NULL,3290,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510766928.148620,'zmcontrol',NULL,3292,0,'INF','Control server 1/Floureon starting at 17/11/15 19:28:48','zmcontrol.pl',NULL),(1510766929.156830,'zmcontrol',NULL,3292,-3,'FAT','Can\'t access Open member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510766933.871524,'zmc_m1',0,3205,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766946.450692,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766946.453903,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 4489, 1438 bytes','zm_rtp_source.cpp',345),(1510766946.456911,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 4489, 0 bytes','zm_rtp_source.cpp',336),(1510766948.167777,'zms',0,3242,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510766952.330100,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766952.332829,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 4641, 1438 bytes','zm_rtp_source.cpp',345),(1510766952.337715,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 4641, 0 bytes','zm_rtp_source.cpp',336),(1510766953.290690,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766953.294215,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 4664, 10042 bytes','zm_rtp_source.cpp',345),(1510766953.297262,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 4664, 0 bytes','zm_rtp_source.cpp',336),(1510766973.988251,'zmc_m1',0,3205,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510766986.491579,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766986.496054,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 5526, 12910 bytes','zm_rtp_source.cpp',345),(1510766986.501496,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 5526, 0 bytes','zm_rtp_source.cpp',336),(1510766993.053833,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510766993.056836,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 5695, 4306 bytes','zm_rtp_source.cpp',345),(1510766993.059708,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 5695, 0 bytes','zm_rtp_source.cpp',336),(1510767006.851285,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767006.854516,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 6053, 20080 bytes','zm_rtp_source.cpp',345),(1510767006.857079,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 6053, 0 bytes','zm_rtp_source.cpp',336),(1510767013.571741,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767013.577090,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 6228, 5740 bytes','zm_rtp_source.cpp',345),(1510767013.581309,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 6228, 0 bytes','zm_rtp_source.cpp',336),(1510767014.189656,'zmc_m1',0,3205,0,'INF','Monitor-1: 6000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510767054.204062,'zmc_m1',0,3205,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767062.170144,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767062.173673,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 7490, 5740 bytes','zm_rtp_source.cpp',345),(1510767062.175404,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 7490, 0 bytes','zm_rtp_source.cpp',336),(1510767082.290659,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767082.293894,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 8012, 12910 bytes','zm_rtp_source.cpp',345),(1510767088.408836,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767088.413929,'zmc_m1',0,3237,-1,'WAR','Discarding frame 8170','zm_rtp_source.cpp',349),(1510767088.416627,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 8170, 0 bytes','zm_rtp_source.cpp',336),(1510767094.310730,'zmc_m1',0,3205,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767134.309659,'zmc_m1',0,3205,0,'INF','Monitor-1: 9000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767136.449027,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767136.452084,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 9418, 10042 bytes','zm_rtp_source.cpp',345),(1510767136.455150,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 9418, 0 bytes','zm_rtp_source.cpp',336),(1510767156.021676,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767156.027196,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 9926, 5740 bytes','zm_rtp_source.cpp',345),(1510767156.032986,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 9926, 0 bytes','zm_rtp_source.cpp',336),(1510767163.782562,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767163.786021,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 10127, 5740 bytes','zm_rtp_source.cpp',345),(1510767163.789389,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 10127, 0 bytes','zm_rtp_source.cpp',336),(1510767169.449258,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767169.452775,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 10272, 11476 bytes','zm_rtp_source.cpp',345),(1510767169.455659,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 10272, 0 bytes','zm_rtp_source.cpp',336),(1510767170.009070,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767170.012192,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 10287, 11476 bytes','zm_rtp_source.cpp',345),(1510767170.014827,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 10287, 0 bytes','zm_rtp_source.cpp',336),(1510767174.532306,'zmc_m1',0,3205,0,'INF','Monitor-1: 10000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767176.847867,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767176.853064,'zmc_m1',0,3237,-1,'WAR','Discarding frame 10463','zm_rtp_source.cpp',349),(1510767176.858407,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 10463, 0 bytes','zm_rtp_source.cpp',336),(1510767203.661563,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767203.665930,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 11160, 11476 bytes','zm_rtp_source.cpp',345),(1510767203.668636,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 11160, 0 bytes','zm_rtp_source.cpp',336),(1510767214.599895,'zmc_m1',0,3205,0,'INF','Monitor-1: 11000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767218.047932,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767218.051186,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 11533, 10042 bytes','zm_rtp_source.cpp',345),(1510767218.054383,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 11533, 0 bytes','zm_rtp_source.cpp',336),(1510767254.629187,'zmc_m1',0,3205,0,'INF','Monitor-1: 12000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767258.300886,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767258.303801,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 12578, 11476 bytes','zm_rtp_source.cpp',345),(1510767258.306651,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 12578, 0 bytes','zm_rtp_source.cpp',336),(1510767271.447708,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767271.450740,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 12918, 4306 bytes','zm_rtp_source.cpp',345),(1510767271.453413,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 12918, 0 bytes','zm_rtp_source.cpp',336),(1510767292.857768,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767292.861010,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 13474, 5740 bytes','zm_rtp_source.cpp',345),(1510767292.863706,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 13474, 0 bytes','zm_rtp_source.cpp',336),(1510767294.768544,'zmc_m1',0,3205,0,'INF','Monitor-1: 13000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767305.779320,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767305.785177,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 13809, 14344 bytes','zm_rtp_source.cpp',345),(1510767305.790494,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 13809, 0 bytes','zm_rtp_source.cpp',336),(1510767312.565924,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767312.571212,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 13984, 2872 bytes','zm_rtp_source.cpp',345),(1510767312.576524,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 13984, 0 bytes','zm_rtp_source.cpp',336),(1510767319.806068,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767319.811130,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 14172, 1438 bytes','zm_rtp_source.cpp',345),(1510767319.816429,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 14172, 0 bytes','zm_rtp_source.cpp',336),(1510767334.906699,'zmc_m1',0,3205,0,'INF','Monitor-1: 14000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767347.246431,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767347.250716,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 14883, 1438 bytes','zm_rtp_source.cpp',345),(1510767347.255920,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 14883, 0 bytes','zm_rtp_source.cpp',336),(1510767374.946399,'zmc_m1',0,3205,0,'INF','Monitor-1: 15000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767414.946984,'zmc_m1',0,3205,0,'INF','Monitor-1: 16000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767449.817043,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767449.820096,'zmc_m1',0,3237,-1,'WAR','Discarding frame 17550','zm_rtp_source.cpp',349),(1510767449.821687,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767449.823117,'zmc_m1',0,3237,-1,'WAR','Discarding frame 17550','zm_rtp_source.cpp',349),(1510767449.826178,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 17550, 0 bytes','zm_rtp_source.cpp',336),(1510767454.985281,'zmc_m1',0,3205,0,'INF','Monitor-1: 17000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767455.579624,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767455.582508,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 17699, 17212 bytes','zm_rtp_source.cpp',345),(1510767455.594115,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 17699, 0 bytes','zm_rtp_source.cpp',336),(1510767469.178338,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767469.181609,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 18050, 11476 bytes','zm_rtp_source.cpp',345),(1510767469.182991,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 18050, 0 bytes','zm_rtp_source.cpp',336),(1510767476.645613,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767476.648968,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 18244, 11476 bytes','zm_rtp_source.cpp',345),(1510767476.652315,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 18244, 0 bytes','zm_rtp_source.cpp',336),(1510767495.105985,'zmc_m1',0,3205,0,'INF','Monitor-1: 18000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510767504.485891,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767504.491398,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 18966, 14344 bytes','zm_rtp_source.cpp',345),(1510767504.496767,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 18966, 0 bytes','zm_rtp_source.cpp',336),(1510767535.185773,'zmc_m1',0,3205,0,'INF','Monitor-1: 19000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767538.735325,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767538.740507,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 19855, 1438 bytes','zm_rtp_source.cpp',345),(1510767538.745813,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 19855, 0 bytes','zm_rtp_source.cpp',336),(1510767575.236821,'zmc_m1',0,3205,0,'INF','Monitor-1: 20000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767615.224330,'zmc_m1',0,3205,0,'INF','Monitor-1: 21000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767626.562111,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767626.569308,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 22138, 5740 bytes','zm_rtp_source.cpp',345),(1510767626.574362,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 22138, 0 bytes','zm_rtp_source.cpp',336),(1510767646.962021,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767646.965139,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 22667, 11476 bytes','zm_rtp_source.cpp',345),(1510767646.966926,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 22667, 0 bytes','zm_rtp_source.cpp',336),(1510767655.302318,'zmc_m1',0,3205,0,'INF','Monitor-1: 22000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767688.932461,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767688.937899,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 23757, 10042 bytes','zm_rtp_source.cpp',345),(1510767688.942799,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 23757, 0 bytes','zm_rtp_source.cpp',336),(1510767695.341404,'zmc_m1',0,3205,0,'INF','Monitor-1: 23000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767730.679659,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767730.685213,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 24842, 2872 bytes','zm_rtp_source.cpp',345),(1510767730.690531,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 24842, 0 bytes','zm_rtp_source.cpp',336),(1510767735.380069,'zmc_m1',0,3205,0,'INF','Monitor-1: 24000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767737.039321,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767737.046162,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 25006, 2872 bytes','zm_rtp_source.cpp',345),(1510767737.053197,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 25006, 0 bytes','zm_rtp_source.cpp',336),(1510767750.570671,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767750.576039,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 25357, 5740 bytes','zm_rtp_source.cpp',345),(1510767750.581284,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 25357, 0 bytes','zm_rtp_source.cpp',336),(1510767751.591976,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767751.595437,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 25383, 8608 bytes','zm_rtp_source.cpp',345),(1510767751.603283,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 25383, 0 bytes','zm_rtp_source.cpp',336),(1510767758.090789,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767758.094272,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 25551, 7174 bytes','zm_rtp_source.cpp',345),(1510767758.098901,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 25551, 0 bytes','zm_rtp_source.cpp',336),(1510767775.538939,'zmc_m1',0,3205,0,'INF','Monitor-1: 25000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767805.808582,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767805.811428,'zmc_m1',0,3237,-1,'WAR','Discarding frame 26791','zm_rtp_source.cpp',349),(1510767805.812760,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 26791, 0 bytes','zm_rtp_source.cpp',336),(1510767815.602081,'zmc_m1',0,3205,0,'INF','Monitor-1: 26000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767819.769149,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767819.774257,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 27153, 11476 bytes','zm_rtp_source.cpp',345),(1510767819.779322,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 27153, 0 bytes','zm_rtp_source.cpp',336),(1510767827.038881,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767827.044880,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 27340, 12910 bytes','zm_rtp_source.cpp',345),(1510767833.479905,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767833.485980,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 27506, 5740 bytes','zm_rtp_source.cpp',345),(1510767833.492151,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 27506, 0 bytes','zm_rtp_source.cpp',336),(1510767855.697285,'zmc_m1',0,3205,0,'INF','Monitor-1: 27000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767889.574767,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767889.580418,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 28965, 61666 bytes','zm_rtp_source.cpp',345),(1510767889.591156,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 28965, 0 bytes','zm_rtp_source.cpp',336),(1510767895.748028,'zmc_m1',0,3205,0,'INF','Monitor-1: 28000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767896.596319,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767896.599338,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 29146, 2872 bytes','zm_rtp_source.cpp',345),(1510767896.602133,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 29146, 0 bytes','zm_rtp_source.cpp',336),(1510767903.886241,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767903.889440,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 29334, 12910 bytes','zm_rtp_source.cpp',345),(1510767903.891456,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 29334, 0 bytes','zm_rtp_source.cpp',336),(1510767935.856504,'zmc_m1',0,3205,0,'INF','Monitor-1: 29000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767975.851765,'zmc_m1',0,3205,0,'INF','Monitor-1: 30000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510767985.592607,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767985.595621,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 31458, 4306 bytes','zm_rtp_source.cpp',345),(1510767985.598027,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 31458, 0 bytes','zm_rtp_source.cpp',336),(1510767993.596968,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767993.600195,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 31664, 114724 bytes','zm_rtp_source.cpp',345),(1510767993.603382,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767993.606579,'zmc_m1',0,3237,-1,'WAR','Discarding frame 31664','zm_rtp_source.cpp',349),(1510767993.609800,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 31664, 0 bytes','zm_rtp_source.cpp',336),(1510767993.726879,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510767993.732852,'zmc_m1',0,3237,-1,'WAR','Discarding frame 31667','zm_rtp_source.cpp',349),(1510767993.737723,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 31667, 0 bytes','zm_rtp_source.cpp',336),(1510768015.975125,'zmc_m1',0,3205,0,'INF','Monitor-1: 31000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768035.325232,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768035.331039,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 32746, 4306 bytes','zm_rtp_source.cpp',345),(1510768035.336374,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 32746, 0 bytes','zm_rtp_source.cpp',336),(1510768041.586652,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768041.589519,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 32909, 113290 bytes','zm_rtp_source.cpp',345),(1510768041.590834,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 32909, 0 bytes','zm_rtp_source.cpp',336),(1510768056.045511,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768056.048838,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 33284, 11476 bytes','zm_rtp_source.cpp',345),(1510768056.133714,'zmc_m1',0,3205,0,'INF','Monitor-1: 32000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510768076.725131,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768076.728116,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 33820, 5740 bytes','zm_rtp_source.cpp',345),(1510768076.732053,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 33820, 0 bytes','zm_rtp_source.cpp',336),(1510768096.134141,'zmc_m1',0,3205,0,'INF','Monitor-1: 33000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768103.607586,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768103.613275,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 34518, 107554 bytes','zm_rtp_source.cpp',345),(1510768103.618880,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 34518, 0 bytes','zm_rtp_source.cpp',336),(1510768136.174246,'zmc_m1',0,3205,0,'INF','Monitor-1: 34000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768144.711900,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768144.715189,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 35586, 1438 bytes','zm_rtp_source.cpp',345),(1510768144.718582,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 35586, 0 bytes','zm_rtp_source.cpp',336),(1510768151.590328,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768151.593736,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 35764, 73138 bytes','zm_rtp_source.cpp',345),(1510768151.596085,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 35764, 0 bytes','zm_rtp_source.cpp',336),(1510768158.911844,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768158.914983,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 35953, 4306 bytes','zm_rtp_source.cpp',345),(1510768158.917621,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 35953, 0 bytes','zm_rtp_source.cpp',336),(1510768165.671798,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768165.677472,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 36129, 4306 bytes','zm_rtp_source.cpp',345),(1510768165.682644,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 36129, 0 bytes','zm_rtp_source.cpp',336),(1510768172.632608,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768172.638063,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 36308, 11476 bytes','zm_rtp_source.cpp',345),(1510768172.643655,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 36308, 0 bytes','zm_rtp_source.cpp',336),(1510768176.383610,'zmc_m1',0,3205,0,'INF','Monitor-1: 35000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768179.992120,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768179.997424,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 36499, 12910 bytes','zm_rtp_source.cpp',345),(1510768207.641511,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768207.646680,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 37216, 11476 bytes','zm_rtp_source.cpp',345),(1510768207.650224,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 37216, 0 bytes','zm_rtp_source.cpp',336),(1510768207.682600,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768207.685278,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 37216, 11476 bytes','zm_rtp_source.cpp',345),(1510768216.531582,'zmc_m1',0,3205,0,'INF','Monitor-1: 36000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768241.580507,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768241.586325,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 38096, 108988 bytes','zm_rtp_source.cpp',345),(1510768241.592662,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 38096, 0 bytes','zm_rtp_source.cpp',336),(1510768241.598422,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768241.604418,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 38096, 2872 bytes','zm_rtp_source.cpp',345),(1510768241.609723,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 38096, 0 bytes','zm_rtp_source.cpp',336),(1510768248.322058,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768248.327956,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 38269, 8608 bytes','zm_rtp_source.cpp',345),(1510768248.333629,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 38269, 0 bytes','zm_rtp_source.cpp',336),(1510768249.041351,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768249.044931,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 38286, 4306 bytes','zm_rtp_source.cpp',345),(1510768249.047981,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 38286, 0 bytes','zm_rtp_source.cpp',336),(1510768256.692130,'zmc_m1',0,3205,0,'INF','Monitor-1: 37000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768269.504922,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768269.511068,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 38817, 2872 bytes','zm_rtp_source.cpp',345),(1510768269.516334,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 38817, 0 bytes','zm_rtp_source.cpp',336),(1510768290.630163,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768290.635638,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 39366, 8608 bytes','zm_rtp_source.cpp',345),(1510768290.640710,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 39366, 0 bytes','zm_rtp_source.cpp',336),(1510768296.770633,'zmc_m1',0,3205,0,'INF','Monitor-1: 38000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768297.109637,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768297.115584,'zmc_m1',0,3237,-1,'WAR','Discarding frame 39533','zm_rtp_source.cpp',349),(1510768297.120851,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 39533, 0 bytes','zm_rtp_source.cpp',336),(1510768317.350229,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768317.355800,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 40058, 12910 bytes','zm_rtp_source.cpp',345),(1510768318.069345,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768318.074699,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 40077, 1438 bytes','zm_rtp_source.cpp',345),(1510768318.079980,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 40077, 0 bytes','zm_rtp_source.cpp',336),(1510768336.890589,'zmc_m1',0,3205,0,'INF','Monitor-1: 39000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768359.564048,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768359.566732,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 41155, 12910 bytes','zm_rtp_source.cpp',345),(1510768359.582507,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 41155, 0 bytes','zm_rtp_source.cpp',336),(1510768376.940091,'zmc_m1',0,3205,0,'INF','Monitor-1: 40000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768394.381617,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768394.384568,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 42058, 12910 bytes','zm_rtp_source.cpp',345),(1510768394.387826,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 42058, 0 bytes','zm_rtp_source.cpp',336),(1510768417.018937,'zmc_m1',0,3205,0,'INF','Monitor-1: 41000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510768449.278170,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768449.283605,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 43483, 2872 bytes','zm_rtp_source.cpp',345),(1510768449.289102,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 43483, 0 bytes','zm_rtp_source.cpp',336),(1510768449.601294,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768449.607069,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 43491, 124762 bytes','zm_rtp_source.cpp',345),(1510768449.613300,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 43491, 0 bytes','zm_rtp_source.cpp',336),(1510768457.099200,'zmc_m1',0,3205,0,'INF','Monitor-1: 42000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768497.098518,'zmc_m1',0,3205,0,'INF','Monitor-1: 43000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768537.094775,'zmc_m1',0,3205,0,'INF','Monitor-1: 44000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768566.545849,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768566.552183,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 46531, 2872 bytes','zm_rtp_source.cpp',345),(1510768566.557448,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 46531, 0 bytes','zm_rtp_source.cpp',336),(1510768577.126684,'zmc_m1',0,3205,0,'INF','Monitor-1: 45000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768595.196311,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768595.201994,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 47274, 1438 bytes','zm_rtp_source.cpp',345),(1510768595.207895,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 47274, 0 bytes','zm_rtp_source.cpp',336),(1510768595.581993,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768595.588384,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 47284, 11476 bytes','zm_rtp_source.cpp',345),(1510768595.598143,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 47284, 0 bytes','zm_rtp_source.cpp',336),(1510768615.616149,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768615.619417,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 47803, 120460 bytes','zm_rtp_source.cpp',345),(1510768615.622483,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 47803, 0 bytes','zm_rtp_source.cpp',336),(1510768617.254213,'zmc_m1',0,3205,0,'INF','Monitor-1: 46000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768629.035755,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768629.039329,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 48150, 17212 bytes','zm_rtp_source.cpp',345),(1510768629.042432,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 48150, 0 bytes','zm_rtp_source.cpp',336),(1510768657.353071,'zmc_m1',0,3205,0,'INF','Monitor-1: 47000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768657.562202,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768657.568860,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 48892, 48760 bytes','zm_rtp_source.cpp',345),(1510768657.581206,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 48892, 0 bytes','zm_rtp_source.cpp',336),(1510768664.835315,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768664.838621,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 49079, 1438 bytes','zm_rtp_source.cpp',345),(1510768664.841700,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 49079, 0 bytes','zm_rtp_source.cpp',336),(1510768671.561970,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768671.564903,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 49254, 44458 bytes','zm_rtp_source.cpp',345),(1510768671.578103,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 49254, 0 bytes','zm_rtp_source.cpp',336),(1510768684.235780,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768684.239098,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 49582, 4306 bytes','zm_rtp_source.cpp',345),(1510768684.242012,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 49582, 0 bytes','zm_rtp_source.cpp',336),(1510768685.195396,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768685.198280,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 49605, 5740 bytes','zm_rtp_source.cpp',345),(1510768685.200783,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 49605, 0 bytes','zm_rtp_source.cpp',336),(1510768685.577906,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768685.582036,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 49615, 119026 bytes','zm_rtp_source.cpp',345),(1510768685.586912,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 49615, 0 bytes','zm_rtp_source.cpp',336),(1510768697.650001,'zmc_m1',0,3205,0,'INF','Monitor-1: 48000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768712.234771,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768712.238527,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 50307, 1438 bytes','zm_rtp_source.cpp',345),(1510768712.241660,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 50307, 0 bytes','zm_rtp_source.cpp',336),(1510768719.558363,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768719.564343,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 50497, 10042 bytes','zm_rtp_source.cpp',345),(1510768719.577387,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 50497, 0 bytes','zm_rtp_source.cpp',336),(1510768725.914904,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768725.920309,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 50661, 2872 bytes','zm_rtp_source.cpp',345),(1510768725.925850,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 50661, 0 bytes','zm_rtp_source.cpp',336),(1510768737.694809,'zmc_m1',0,3205,0,'INF','Monitor-1: 49000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768747.155833,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768747.160864,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 51211, 12910 bytes','zm_rtp_source.cpp',345),(1510768777.741047,'zmc_m1',0,3205,0,'INF','Monitor-1: 50000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768789.576371,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768789.582004,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 52314, 110422 bytes','zm_rtp_source.cpp',345),(1510768789.587784,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 52314, 0 bytes','zm_rtp_source.cpp',336),(1510768795.154354,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768795.160225,'zmc_m1',0,3237,-1,'WAR','Discarding frame 52457','zm_rtp_source.cpp',349),(1510768795.165834,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 52457, 0 bytes','zm_rtp_source.cpp',336),(1510768795.571680,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768795.577478,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 52468, 91780 bytes','zm_rtp_source.cpp',345),(1510768795.582555,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 52468, 0 bytes','zm_rtp_source.cpp',336),(1510768802.354887,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768802.358152,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 52643, 8608 bytes','zm_rtp_source.cpp',345),(1510768802.361438,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 52643, 0 bytes','zm_rtp_source.cpp',336),(1510768802.874348,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768802.880108,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 52655, 2872 bytes','zm_rtp_source.cpp',345),(1510768802.885508,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768802.890568,'zmc_m1',0,3237,-1,'WAR','Discarding frame 52655','zm_rtp_source.cpp',349),(1510768802.896293,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 52655, 0 bytes','zm_rtp_source.cpp',336),(1510768809.114907,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768809.118101,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 52816, 10042 bytes','zm_rtp_source.cpp',345),(1510768809.120601,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 52816, 0 bytes','zm_rtp_source.cpp',336),(1510768817.973189,'zmc_m1',0,3205,0,'INF','Monitor-1: 51000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768823.394841,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768823.400325,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 53186, 8608 bytes','zm_rtp_source.cpp',345),(1510768823.405372,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 53186, 0 bytes','zm_rtp_source.cpp',336),(1510768823.954526,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768823.959943,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 53201, 5740 bytes','zm_rtp_source.cpp',345),(1510768823.963740,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 53201, 0 bytes','zm_rtp_source.cpp',336),(1510768830.154358,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768830.160250,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 53361, 8608 bytes','zm_rtp_source.cpp',345),(1510768830.166155,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 53361, 0 bytes','zm_rtp_source.cpp',336),(1510768844.794058,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768844.797150,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 53740, 10042 bytes','zm_rtp_source.cpp',345),(1510768844.798982,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 53740, 0 bytes','zm_rtp_source.cpp',336),(1510768857.702895,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768857.705770,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 54076, 8608 bytes','zm_rtp_source.cpp',345),(1510768857.707508,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 54076, 0 bytes','zm_rtp_source.cpp',336),(1510768858.174399,'zmc_m1',0,3205,0,'INF','Monitor-1: 52000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510768892.593298,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768892.600201,'zmc_m1',0,3237,-1,'WAR','Discarding frame 54981','zm_rtp_source.cpp',349),(1510768892.603394,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 54981, 0 bytes','zm_rtp_source.cpp',336),(1510768898.214929,'zmc_m1',0,3205,0,'INF','Monitor-1: 53000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768913.273482,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768913.276591,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 55517, 4306 bytes','zm_rtp_source.cpp',345),(1510768913.279598,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 55517, 0 bytes','zm_rtp_source.cpp',336),(1510768934.833340,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768934.836716,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 56077, 8608 bytes','zm_rtp_source.cpp',345),(1510768934.838164,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 56077, 0 bytes','zm_rtp_source.cpp',336),(1510768935.153431,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768935.156624,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 56084, 11476 bytes','zm_rtp_source.cpp',345),(1510768938.334650,'zmc_m1',0,3205,0,'INF','Monitor-1: 54000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768969.579766,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768969.582887,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 56979, 103252 bytes','zm_rtp_source.cpp',345),(1510768969.585740,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 56979, 0 bytes','zm_rtp_source.cpp',336),(1510768978.373343,'zmc_m1',0,3205,0,'INF','Monitor-1: 55000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510768990.112132,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510768990.115508,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 57512, 4306 bytes','zm_rtp_source.cpp',345),(1510768990.118352,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 57512, 0 bytes','zm_rtp_source.cpp',336),(1510769010.831673,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769010.834888,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 58049, 1438 bytes','zm_rtp_source.cpp',345),(1510769010.837535,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 58049, 0 bytes','zm_rtp_source.cpp',336),(1510769018.451538,'zmc_m1',0,3205,0,'INF','Monitor-1: 56000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769058.452011,'zmc_m1',0,3205,0,'INF','Monitor-1: 57000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769059.569029,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769059.574507,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 59316, 60232 bytes','zm_rtp_source.cpp',345),(1510769059.579560,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 59316, 0 bytes','zm_rtp_source.cpp',336),(1510769059.584698,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769059.589929,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 59316, 5740 bytes','zm_rtp_source.cpp',345),(1510769059.595470,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 59316, 0 bytes','zm_rtp_source.cpp',336),(1510769061.926232,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 111','zm_rtp_source.cpp',127),(1510769061.929148,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 59362, 8608 bytes','zm_rtp_source.cpp',345),(1510769061.930458,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 59362, 0 bytes','zm_rtp_source.cpp',336),(1510769065.660606,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769065.663783,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 59463, 4306 bytes','zm_rtp_source.cpp',345),(1510769065.666287,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 59463, 0 bytes','zm_rtp_source.cpp',336),(1510769065.751129,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769065.754162,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 59464, 1438 bytes','zm_rtp_source.cpp',345),(1510769065.756531,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 59464, 0 bytes','zm_rtp_source.cpp',336),(1510769098.930722,'zmc_m1',0,3205,0,'INF','Monitor-1: 58000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769138.933227,'zmc_m1',0,3205,0,'INF','Monitor-1: 59000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769143.044954,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769143.048273,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 61470, 14344 bytes','zm_rtp_source.cpp',345),(1510769143.051621,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 61470, 0 bytes','zm_rtp_source.cpp',336),(1510769143.191289,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769143.194355,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 61473, 11476 bytes','zm_rtp_source.cpp',345),(1510769143.197229,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 61473, 0 bytes','zm_rtp_source.cpp',336),(1510769150.549837,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769150.552617,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 61664, 4306 bytes','zm_rtp_source.cpp',345),(1510769150.555145,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 61664, 0 bytes','zm_rtp_source.cpp',336),(1510769178.230373,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769178.234106,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 62383, 10042 bytes','zm_rtp_source.cpp',345),(1510769178.236904,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 62383, 0 bytes','zm_rtp_source.cpp',336),(1510769178.430843,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769178.434108,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 62387, 11476 bytes','zm_rtp_source.cpp',345),(1510769178.437120,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 62387, 0 bytes','zm_rtp_source.cpp',336),(1510769179.172921,'zmc_m1',0,3205,0,'INF','Monitor-1: 60000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510769185.709942,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769185.715350,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 62576, 5740 bytes','zm_rtp_source.cpp',345),(1510769185.720708,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 62576, 0 bytes','zm_rtp_source.cpp',336),(1510769191.554493,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769191.559888,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 62727, 34420 bytes','zm_rtp_source.cpp',345),(1510769191.566538,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 62727, 0 bytes','zm_rtp_source.cpp',336),(1510769192.419417,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769192.422536,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 62748, 8608 bytes','zm_rtp_source.cpp',345),(1510769192.425486,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 62748, 0 bytes','zm_rtp_source.cpp',336),(1510769199.558967,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769199.564091,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 62933, 77440 bytes','zm_rtp_source.cpp',345),(1510769199.567762,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 62933, 0 bytes','zm_rtp_source.cpp',336),(1510769205.564187,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769205.569836,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 63088, 90346 bytes','zm_rtp_source.cpp',345),(1510769205.575138,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 63088, 0 bytes','zm_rtp_source.cpp',336),(1510769219.369517,'zmc_m1',0,3205,0,'INF','Monitor-1: 61000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769259.369398,'zmc_m1',0,3205,0,'INF','Monitor-1: 62000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769262.348538,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769262.353906,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 64563, 2872 bytes','zm_rtp_source.cpp',345),(1510769262.356331,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 64563, 0 bytes','zm_rtp_source.cpp',336),(1510769288.988646,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769288.992265,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 65254, 7174 bytes','zm_rtp_source.cpp',345),(1510769288.995270,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 65254, 0 bytes','zm_rtp_source.cpp',336),(1510769289.468698,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769289.472018,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 65265, 2872 bytes','zm_rtp_source.cpp',345),(1510769289.474752,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 65265, 0 bytes','zm_rtp_source.cpp',336),(1510769299.476595,'zmc_m1',0,3205,0,'INF','Monitor-1: 63000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769310.817192,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769310.820493,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 65820, 1438 bytes','zm_rtp_source.cpp',345),(1510769310.822286,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 65820, 0 bytes','zm_rtp_source.cpp',336),(1510769339.516904,'zmc_m1',0,3205,0,'INF','Monitor-1: 64000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769358.576786,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769358.582266,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 67061, 2872 bytes','zm_rtp_source.cpp',345),(1510769358.587746,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769358.592519,'zmc_m1',0,3237,-1,'WAR','Discarding frame 67061','zm_rtp_source.cpp',349),(1510769358.595691,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 67061, 0 bytes','zm_rtp_source.cpp',336),(1510769379.606026,'zmc_m1',0,3205,0,'INF','Monitor-1: 65000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769380.667085,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769380.670308,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 67634, 1438 bytes','zm_rtp_source.cpp',345),(1510769380.673277,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 67634, 0 bytes','zm_rtp_source.cpp',336),(1510769394.256383,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769394.261562,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 67987, 4306 bytes','zm_rtp_source.cpp',345),(1510769394.267198,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 67987, 0 bytes','zm_rtp_source.cpp',336),(1510769394.616654,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769394.622320,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 67995, 8608 bytes','zm_rtp_source.cpp',345),(1510769394.628253,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 67995, 0 bytes','zm_rtp_source.cpp',336),(1510769401.553219,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769401.558515,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 68175, 48760 bytes','zm_rtp_source.cpp',345),(1510769401.564539,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 68175, 0 bytes','zm_rtp_source.cpp',336),(1510769419.717152,'zmc_m1',0,3205,0,'INF','Monitor-1: 66000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769423.427140,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769423.429947,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 68741, 10042 bytes','zm_rtp_source.cpp',345),(1510769423.432608,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 68741, 0 bytes','zm_rtp_source.cpp',336),(1510769429.576135,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769429.578920,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 68902, 5740 bytes','zm_rtp_source.cpp',345),(1510769429.581420,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 68902, 0 bytes','zm_rtp_source.cpp',336),(1510769442.267183,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769442.271019,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 69230, 12910 bytes','zm_rtp_source.cpp',345),(1510769442.307067,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769442.309637,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 69230, 4306 bytes','zm_rtp_source.cpp',345),(1510769442.311043,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 69230, 0 bytes','zm_rtp_source.cpp',336),(1510769443.569576,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769443.572721,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 69263, 2872 bytes','zm_rtp_source.cpp',345),(1510769443.575701,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 69263, 0 bytes','zm_rtp_source.cpp',336),(1510769456.336056,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769456.339707,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 69593, 10042 bytes','zm_rtp_source.cpp',345),(1510769456.343205,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 69593, 0 bytes','zm_rtp_source.cpp',336),(1510769459.965848,'zmc_m1',0,3205,0,'INF','Monitor-1: 67000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769484.746021,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769484.752650,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 70330, 1438 bytes','zm_rtp_source.cpp',345),(1510769484.759213,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 70330, 0 bytes','zm_rtp_source.cpp',336),(1510769498.465590,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769498.468405,'zmc_m1',0,3237,-1,'WAR','Discarding frame 70686','zm_rtp_source.cpp',349),(1510769498.471206,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 70686, 0 bytes','zm_rtp_source.cpp',336),(1510769498.706482,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769498.712570,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 70691, 10042 bytes','zm_rtp_source.cpp',345),(1510769498.717937,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 70691, 0 bytes','zm_rtp_source.cpp',336),(1510769500.074934,'zmc_m1',0,3205,0,'INF','Monitor-1: 68000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510769512.545810,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769512.548915,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 71050, 8608 bytes','zm_rtp_source.cpp',345),(1510769512.554828,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 71050, 0 bytes','zm_rtp_source.cpp',336),(1510769540.065394,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769540.068866,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 71765, 2872 bytes','zm_rtp_source.cpp',345),(1510769540.071893,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 71765, 0 bytes','zm_rtp_source.cpp',336),(1510769540.164539,'zmc_m1',0,3205,0,'INF','Monitor-1: 69000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769540.414594,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769540.417490,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 71773, 4306 bytes','zm_rtp_source.cpp',345),(1510769540.418827,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 71773, 0 bytes','zm_rtp_source.cpp',336),(1510769540.894588,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769540.899680,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 71784, 5740 bytes','zm_rtp_source.cpp',345),(1510769540.904999,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 71784, 0 bytes','zm_rtp_source.cpp',336),(1510769541.295463,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769541.301415,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 71793, 10042 bytes','zm_rtp_source.cpp',345),(1510769541.306439,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 71793, 0 bytes','zm_rtp_source.cpp',336),(1510769554.855261,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769554.858899,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 72145, 12910 bytes','zm_rtp_source.cpp',345),(1510769555.094811,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769555.100281,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 72150, 10042 bytes','zm_rtp_source.cpp',345),(1510769555.105584,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 72150, 0 bytes','zm_rtp_source.cpp',336),(1510769561.904441,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769561.907255,'zmc_m1',0,3237,-1,'WAR','Discarding frame 72327','zm_rtp_source.cpp',349),(1510769561.909902,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 72327, 0 bytes','zm_rtp_source.cpp',336),(1510769568.264764,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769568.267662,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 72491, 4306 bytes','zm_rtp_source.cpp',345),(1510769568.270228,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 72491, 0 bytes','zm_rtp_source.cpp',336),(1510769580.453689,'zmc_m1',0,3205,0,'INF','Monitor-1: 70000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769583.133614,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769583.136383,'zmc_m1',0,3237,-1,'WAR','Discarding frame 72876','zm_rtp_source.cpp',349),(1510769583.139114,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 72876, 0 bytes','zm_rtp_source.cpp',336),(1510769590.054428,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769590.059882,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 73056, 4306 bytes','zm_rtp_source.cpp',345),(1510769590.064527,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769590.067300,'zmc_m1',0,3237,-1,'WAR','Discarding frame 73056','zm_rtp_source.cpp',349),(1510769590.069955,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 73056, 0 bytes','zm_rtp_source.cpp',336),(1510769590.214641,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769590.217705,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 73059, 10042 bytes','zm_rtp_source.cpp',345),(1510769590.219125,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 73059, 0 bytes','zm_rtp_source.cpp',336),(1510769617.547097,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769617.552715,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 73769, 7174 bytes','zm_rtp_source.cpp',345),(1510769617.562423,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 73769, 0 bytes','zm_rtp_source.cpp',336),(1510769618.173607,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769618.179845,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 73784, 4306 bytes','zm_rtp_source.cpp',345),(1510769618.185540,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 73784, 0 bytes','zm_rtp_source.cpp',336),(1510769618.413850,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769618.418583,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 73789, 5740 bytes','zm_rtp_source.cpp',345),(1510769618.422229,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 73789, 0 bytes','zm_rtp_source.cpp',336),(1510769620.680298,'zmc_m1',0,3205,0,'INF','Monitor-1: 71000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769631.535230,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769631.537963,'zmc_m1',0,3237,-1,'WAR','Discarding frame 74130','zm_rtp_source.cpp',349),(1510769631.549851,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 74130, 0 bytes','zm_rtp_source.cpp',336),(1510769632.053865,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769632.057238,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 74142, 8608 bytes','zm_rtp_source.cpp',345),(1510769632.058768,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 74142, 0 bytes','zm_rtp_source.cpp',336),(1510769652.383655,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769652.386507,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 74669, 1438 bytes','zm_rtp_source.cpp',345),(1510769652.389049,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 74669, 0 bytes','zm_rtp_source.cpp',336),(1510769658.983940,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769658.990017,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 74839, 5740 bytes','zm_rtp_source.cpp',345),(1510769658.995274,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 74839, 0 bytes','zm_rtp_source.cpp',336),(1510769660.143092,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769660.146117,'zmc_m1',0,3237,-1,'WAR','Discarding frame 74869','zm_rtp_source.cpp',349),(1510769660.148837,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 74869, 0 bytes','zm_rtp_source.cpp',336),(1510769660.921050,'zmc_m1',0,3205,0,'INF','Monitor-1: 72000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769700.872252,'zmc_m1',0,3205,0,'INF','Monitor-1: 73000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769729.062614,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769729.068144,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 76659, 4306 bytes','zm_rtp_source.cpp',345),(1510769729.073493,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 76659, 0 bytes','zm_rtp_source.cpp',336),(1510769729.143423,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769729.146628,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 76660, 8608 bytes','zm_rtp_source.cpp',345),(1510769729.149405,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 76660, 0 bytes','zm_rtp_source.cpp',336),(1510769729.303175,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769729.306079,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 76663, 10042 bytes','zm_rtp_source.cpp',345),(1510769729.309088,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 76663, 0 bytes','zm_rtp_source.cpp',336),(1510769729.743710,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769729.746848,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 76675, 11476 bytes','zm_rtp_source.cpp',345),(1510769729.749515,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 76675, 0 bytes','zm_rtp_source.cpp',336),(1510769741.043516,'zmc_m1',0,3205,0,'INF','Monitor-1: 74000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510769750.092714,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769750.095453,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 77203, 12910 bytes','zm_rtp_source.cpp',345),(1510769756.458440,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769756.464012,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 77367, 8608 bytes','zm_rtp_source.cpp',345),(1510769756.466688,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 77367, 0 bytes','zm_rtp_source.cpp',336),(1510769771.624462,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769771.630115,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 77761, 5740 bytes','zm_rtp_source.cpp',345),(1510769771.635277,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 77761, 0 bytes','zm_rtp_source.cpp',336),(1510769777.331226,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769777.336537,'zmc_m1',0,3237,-1,'WAR','Discarding frame 77907','zm_rtp_source.cpp',349),(1510769777.342242,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 77907, 0 bytes','zm_rtp_source.cpp',336),(1510769781.209135,'zmc_m1',0,3205,0,'INF','Monitor-1: 75000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769791.692159,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769791.695617,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 78281, 11476 bytes','zm_rtp_source.cpp',345),(1510769791.698241,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 78281, 0 bytes','zm_rtp_source.cpp',336),(1510769805.971668,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769805.978054,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 78651, 8608 bytes','zm_rtp_source.cpp',345),(1510769805.984485,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 78651, 0 bytes','zm_rtp_source.cpp',336),(1510769819.581567,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769819.585006,'zmc_m1',0,3237,-1,'WAR','Discarding frame 79004','zm_rtp_source.cpp',349),(1510769819.587706,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 79004, 0 bytes','zm_rtp_source.cpp',336),(1510769820.382023,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769820.384954,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 79023, 10042 bytes','zm_rtp_source.cpp',345),(1510769820.386382,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 79023, 0 bytes','zm_rtp_source.cpp',336),(1510769821.362294,'zmc_m1',0,3205,0,'INF','Monitor-1: 76000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769826.542362,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769826.545237,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 79182, 10042 bytes','zm_rtp_source.cpp',345),(1510769826.547096,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 79182, 0 bytes','zm_rtp_source.cpp',336),(1510769861.391763,'zmc_m1',0,3205,0,'INF','Monitor-1: 77000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769869.543410,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769869.549398,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 80300, 73138 bytes','zm_rtp_source.cpp',345),(1510769869.554561,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 80300, 0 bytes','zm_rtp_source.cpp',336),(1510769882.730621,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769882.734084,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 80641, 8608 bytes','zm_rtp_source.cpp',345),(1510769882.736942,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 80641, 0 bytes','zm_rtp_source.cpp',336),(1510769901.483962,'zmc_m1',0,3205,0,'INF','Monitor-1: 78000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769907.894818,'zms',0,4566,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510769907.897774,'zms',0,4566,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510769912.355810,'zmcontrol',NULL,4568,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510769912.398680,'zmcontrol',NULL,4570,0,'INF','Control server 1/Floureon starting at 17/11/15 20:18:32','zmcontrol.pl',NULL),(1510769924.460810,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769924.466223,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 81725, 8608 bytes','zm_rtp_source.cpp',345),(1510769924.472599,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 81725, 0 bytes','zm_rtp_source.cpp',336),(1510769938.649677,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769938.652592,'zmc_m1',0,3237,-1,'WAR','Discarding frame 82093','zm_rtp_source.cpp',349),(1510769938.655268,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 82093, 0 bytes','zm_rtp_source.cpp',336),(1510769938.969711,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769938.972620,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 82100, 7174 bytes','zm_rtp_source.cpp',345),(1510769938.975441,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 82100, 0 bytes','zm_rtp_source.cpp',336),(1510769941.594227,'zmc_m1',0,3205,0,'INF','Monitor-1: 79000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510769952.609774,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769952.614951,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 82454, 7174 bytes','zm_rtp_source.cpp',345),(1510769952.619817,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 82454, 0 bytes','zm_rtp_source.cpp',336),(1510769952.740629,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769952.745608,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 82456, 12910 bytes','zm_rtp_source.cpp',345),(1510769953.849316,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769953.854475,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 82485, 4306 bytes','zm_rtp_source.cpp',345),(1510769953.860149,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 82485, 0 bytes','zm_rtp_source.cpp',336),(1510769959.594704,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769959.600074,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 82632, 111856 bytes','zm_rtp_source.cpp',345),(1510769959.605051,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 82632, 0 bytes','zm_rtp_source.cpp',336),(1510769967.010310,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510769967.013817,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 82823, 12910 bytes','zm_rtp_source.cpp',345),(1510769967.015400,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 82823, 0 bytes','zm_rtp_source.cpp',336),(1510769981.828020,'zmc_m1',0,3205,0,'INF','Monitor-1: 80000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770021.839132,'zmc_m1',0,3205,0,'INF','Monitor-1: 81000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770061.828531,'zmc_m1',0,3205,0,'INF','Monitor-1: 82000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770064.848727,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770064.854317,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 85366, 10042 bytes','zm_rtp_source.cpp',345),(1510770074.152771,'web_php',NULL,2991,-2,'ERR','Invalid control parameter: Near','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510770074.158650,'zmcontrol',NULL,4570,-3,'FAT','Can\'t access Near member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510770078.698363,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770078.701395,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 85725, 7174 bytes','zm_rtp_source.cpp',345),(1510770078.704219,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 85725, 0 bytes','zm_rtp_source.cpp',336),(1510770079.539466,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770079.544719,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 85747, 68836 bytes','zm_rtp_source.cpp',345),(1510770079.549933,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 85747, 0 bytes','zm_rtp_source.cpp',336),(1510770086.778389,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770086.783767,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 85933, 2872 bytes','zm_rtp_source.cpp',345),(1510770086.789046,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 85933, 0 bytes','zm_rtp_source.cpp',336),(1510770087.004578,'zms',0,4566,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510770093.298381,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770093.301246,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 86101, 10042 bytes','zm_rtp_source.cpp',345),(1510770093.302524,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 86101, 0 bytes','zm_rtp_source.cpp',336),(1510770102.041767,'zmc_m1',0,3205,0,'INF','Monitor-1: 83000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510770113.672299,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770113.678751,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 86631, 10042 bytes','zm_rtp_source.cpp',345),(1510770113.684531,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 86631, 0 bytes','zm_rtp_source.cpp',336),(1510770114.047684,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770114.054179,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 86640, 11476 bytes','zm_rtp_source.cpp',345),(1510770114.061101,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 86640, 0 bytes','zm_rtp_source.cpp',336),(1510770115.047783,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770115.052150,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 86664, 10042 bytes','zm_rtp_source.cpp',345),(1510770115.055223,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 86664, 0 bytes','zm_rtp_source.cpp',336),(1510770142.148688,'zmc_m1',0,3205,0,'INF','Monitor-1: 84000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770149.532326,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770149.537414,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 87561, 1438 bytes','zm_rtp_source.cpp',345),(1510770149.542530,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770149.547871,'zmc_m1',0,3237,-1,'WAR','Discarding frame 87561','zm_rtp_source.cpp',349),(1510770149.553630,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 87561, 0 bytes','zm_rtp_source.cpp',336),(1510770155.537507,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770155.540522,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 87716, 53062 bytes','zm_rtp_source.cpp',345),(1510770155.543106,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770155.545865,'zmc_m1',0,3237,-1,'WAR','Discarding frame 87716','zm_rtp_source.cpp',349),(1510770155.547373,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 87716, 0 bytes','zm_rtp_source.cpp',336),(1510770155.846845,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770155.850593,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 87723, 5740 bytes','zm_rtp_source.cpp',345),(1510770155.853572,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 87723, 0 bytes','zm_rtp_source.cpp',336),(1510770156.767735,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770156.770744,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 87745, 12910 bytes','zm_rtp_source.cpp',345),(1510770163.538001,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770163.540773,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 87921, 61666 bytes','zm_rtp_source.cpp',345),(1510770163.542143,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 87921, 0 bytes','zm_rtp_source.cpp',336),(1510770176.851955,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770176.858921,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 88265, 11476 bytes','zm_rtp_source.cpp',345),(1510770176.865336,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 88265, 0 bytes','zm_rtp_source.cpp',336),(1510770182.388135,'zmc_m1',0,3205,0,'INF','Monitor-1: 85000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770204.497490,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770204.500570,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 88983, 11476 bytes','zm_rtp_source.cpp',345),(1510770204.502256,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 88983, 0 bytes','zm_rtp_source.cpp',336),(1510770204.726288,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770204.731662,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 88988, 5740 bytes','zm_rtp_source.cpp',345),(1510770204.737175,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 88988, 0 bytes','zm_rtp_source.cpp',336),(1510770212.365413,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770212.369764,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 89185, 14344 bytes','zm_rtp_source.cpp',345),(1510770212.372782,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 89185, 0 bytes','zm_rtp_source.cpp',336),(1510770222.544633,'zmc_m1',0,3205,0,'INF','Monitor-1: 86000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770240.248605,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770240.255299,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 89909, 10042 bytes','zm_rtp_source.cpp',345),(1510770240.262155,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 89909, 0 bytes','zm_rtp_source.cpp',336),(1510770240.606007,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770240.612543,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 89917, 2872 bytes','zm_rtp_source.cpp',345),(1510770240.618945,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 89917, 0 bytes','zm_rtp_source.cpp',336),(1510770246.285325,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770246.290625,'zmc_m1',0,3237,-1,'WAR','Discarding frame 90064','zm_rtp_source.cpp',349),(1510770246.295866,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 90064, 0 bytes','zm_rtp_source.cpp',336),(1510770247.325595,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770247.331392,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 90089, 7174 bytes','zm_rtp_source.cpp',345),(1510770247.337243,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 90089, 0 bytes','zm_rtp_source.cpp',336),(1510770262.705798,'zmc_m1',0,3205,0,'INF','Monitor-1: 87000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770268.445354,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770268.451622,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 90638, 2872 bytes','zm_rtp_source.cpp',345),(1510770268.458049,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 90638, 0 bytes','zm_rtp_source.cpp',336),(1510770268.565299,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770268.570111,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 90640, 4306 bytes','zm_rtp_source.cpp',345),(1510770268.575169,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 90640, 0 bytes','zm_rtp_source.cpp',336),(1510770295.975870,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770295.982387,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 91352, 8608 bytes','zm_rtp_source.cpp',345),(1510770295.989182,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 91352, 0 bytes','zm_rtp_source.cpp',336),(1510770302.827346,'zmc_m1',0,3205,0,'INF','Monitor-1: 88000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770309.135361,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770309.138521,'zmc_m1',0,3237,-1,'WAR','Discarding frame 91692','zm_rtp_source.cpp',349),(1510770309.143567,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 91692, 0 bytes','zm_rtp_source.cpp',336),(1510770309.451568,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770309.457110,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 91699, 11476 bytes','zm_rtp_source.cpp',345),(1510770309.462176,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 91699, 0 bytes','zm_rtp_source.cpp',336),(1510770309.650357,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770309.655575,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 91705, 10042 bytes','zm_rtp_source.cpp',345),(1510770309.660166,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 91705, 0 bytes','zm_rtp_source.cpp',336),(1510770317.495044,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770317.499241,'zmc_m1',0,3237,-1,'WAR','Discarding frame 91906','zm_rtp_source.cpp',349),(1510770317.502180,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 91906, 0 bytes','zm_rtp_source.cpp',336),(1510770337.084618,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770337.090605,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 92415, 8608 bytes','zm_rtp_source.cpp',345),(1510770337.096622,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770337.102511,'zmc_m1',0,3237,-1,'WAR','Discarding frame 92415','zm_rtp_source.cpp',349),(1510770337.364294,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770337.369994,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 92421, 5740 bytes','zm_rtp_source.cpp',345),(1510770337.375523,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 92421, 0 bytes','zm_rtp_source.cpp',336),(1510770337.724451,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770337.728848,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 92431, 5740 bytes','zm_rtp_source.cpp',345),(1510770337.732267,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 92431, 0 bytes','zm_rtp_source.cpp',336),(1510770338.451011,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770338.454701,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 92448, 7174 bytes','zm_rtp_source.cpp',345),(1510770338.457517,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 92448, 0 bytes','zm_rtp_source.cpp',336),(1510770343.144566,'zmc_m1',0,3205,0,'INF','Monitor-1: 89000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510770359.046272,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770359.052887,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 92982, 8608 bytes','zm_rtp_source.cpp',345),(1510770359.059065,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 92982, 0 bytes','zm_rtp_source.cpp',336),(1510770365.495419,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770365.501234,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 93148, 12910 bytes','zm_rtp_source.cpp',345),(1510770366.167136,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770366.170326,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 93166, 11476 bytes','zm_rtp_source.cpp',345),(1510770366.173174,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 93166, 0 bytes','zm_rtp_source.cpp',336),(1510770366.204841,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770366.208093,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 93166, 12910 bytes','zm_rtp_source.cpp',345),(1510770366.244139,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770366.247373,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 93166, 4306 bytes','zm_rtp_source.cpp',345),(1510770366.250370,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 93166, 0 bytes','zm_rtp_source.cpp',336),(1510770366.324456,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770366.330065,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 93167, 7174 bytes','zm_rtp_source.cpp',345),(1510770366.335158,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 93167, 0 bytes','zm_rtp_source.cpp',336),(1510770372.683666,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770372.687342,'zmc_m1',0,3237,-1,'WAR','Discarding frame 93331','zm_rtp_source.cpp',349),(1510770372.690243,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 93331, 0 bytes','zm_rtp_source.cpp',336),(1510770379.603208,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770379.607296,'zmc_m1',0,3237,-1,'WAR','Discarding frame 93511','zm_rtp_source.cpp',349),(1510770379.609772,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 93511, 0 bytes','zm_rtp_source.cpp',336),(1510770383.472856,'zmc_m1',0,3205,0,'INF','Monitor-1: 90000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770386.004452,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770386.009954,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 93676, 11476 bytes','zm_rtp_source.cpp',345),(1510770386.015433,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 93676, 0 bytes','zm_rtp_source.cpp',336),(1510770386.134463,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770386.139716,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 93678, 5740 bytes','zm_rtp_source.cpp',345),(1510770386.144665,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 93678, 0 bytes','zm_rtp_source.cpp',336),(1510770386.324522,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770386.329721,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 93682, 12910 bytes','zm_rtp_source.cpp',345),(1510770386.803965,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770386.807369,'zmc_m1',0,3237,-1,'WAR','Discarding frame 93693','zm_rtp_source.cpp',349),(1510770386.809837,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 93693, 0 bytes','zm_rtp_source.cpp',336),(1510770400.449884,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770400.457083,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 94047, 8608 bytes','zm_rtp_source.cpp',345),(1510770400.463640,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770400.470557,'zmc_m1',0,3237,-1,'WAR','Discarding frame 94047','zm_rtp_source.cpp',349),(1510770400.476023,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 94047, 0 bytes','zm_rtp_source.cpp',336),(1510770400.643315,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770400.646337,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 94051, 2872 bytes','zm_rtp_source.cpp',345),(1510770400.648985,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 94051, 0 bytes','zm_rtp_source.cpp',336),(1510770407.004056,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770407.007686,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 94215, 10042 bytes','zm_rtp_source.cpp',345),(1510770407.010617,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 94215, 0 bytes','zm_rtp_source.cpp',336),(1510770408.003091,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770408.008911,'zmc_m1',0,3237,-1,'WAR','Discarding frame 94241','zm_rtp_source.cpp',349),(1510770408.013840,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 94241, 0 bytes','zm_rtp_source.cpp',336),(1510770414.924427,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770414.929048,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 94419, 7174 bytes','zm_rtp_source.cpp',345),(1510770414.932067,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 94419, 0 bytes','zm_rtp_source.cpp',336),(1510770421.808285,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770421.814479,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 94598, 12910 bytes','zm_rtp_source.cpp',345),(1510770423.869327,'zmc_m1',0,3205,0,'INF','Monitor-1: 91000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770428.402985,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770428.406168,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 94768, 1438 bytes','zm_rtp_source.cpp',345),(1510770428.409160,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 94768, 0 bytes','zm_rtp_source.cpp',336),(1510770428.683162,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770428.686390,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 94774, 4306 bytes','zm_rtp_source.cpp',345),(1510770428.689862,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 94774, 0 bytes','zm_rtp_source.cpp',336),(1510770428.923022,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770428.926293,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 94779, 1438 bytes','zm_rtp_source.cpp',345),(1510770428.929484,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 94779, 0 bytes','zm_rtp_source.cpp',336),(1510770442.479297,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770442.482294,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 95131, 1438 bytes','zm_rtp_source.cpp',345),(1510770442.484794,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 95131, 0 bytes','zm_rtp_source.cpp',336),(1510770442.763182,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770442.767706,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 95137, 4306 bytes','zm_rtp_source.cpp',345),(1510770442.772900,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 95137, 0 bytes','zm_rtp_source.cpp',336),(1510770463.535384,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770463.538339,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 95677, 71704 bytes','zm_rtp_source.cpp',345),(1510770463.540990,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 95677, 0 bytes','zm_rtp_source.cpp',336),(1510770464.107203,'zmc_m1',0,3205,0,'INF','Monitor-1: 92000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510770504.113497,'zmc_m1',0,3205,0,'INF','Monitor-1: 93000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770504.842015,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770504.847165,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 96749, 5740 bytes','zm_rtp_source.cpp',345),(1510770504.852883,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 96749, 0 bytes','zm_rtp_source.cpp',336),(1510770511.554667,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770511.558874,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 96923, 88912 bytes','zm_rtp_source.cpp',345),(1510770511.562503,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 96923, 0 bytes','zm_rtp_source.cpp',336),(1510770512.093449,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770512.096203,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 96936, 12910 bytes','zm_rtp_source.cpp',345),(1510770519.531934,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770519.537588,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 97129, 32986 bytes','zm_rtp_source.cpp',345),(1510770519.543725,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 97129, 0 bytes','zm_rtp_source.cpp',336),(1510770525.927176,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770525.931335,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 97294, 12910 bytes','zm_rtp_source.cpp',345),(1510770526.647092,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770526.652784,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 97311, 12910 bytes','zm_rtp_source.cpp',345),(1510770540.565966,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770540.571659,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 97672, 4306 bytes','zm_rtp_source.cpp',345),(1510770540.578040,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 97672, 0 bytes','zm_rtp_source.cpp',336),(1510770544.386625,'zmc_m1',0,3205,0,'INF','Monitor-1: 94000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770546.805999,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770546.808963,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 97833, 10042 bytes','zm_rtp_source.cpp',345),(1510770546.810371,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 97833, 0 bytes','zm_rtp_source.cpp',336),(1510770547.127486,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770547.132896,'zmc_m1',0,3237,-1,'WAR','Discarding frame 97840','zm_rtp_source.cpp',349),(1510770547.137835,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 97840, 0 bytes','zm_rtp_source.cpp',336),(1510770547.766745,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770547.772035,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 97857, 12910 bytes','zm_rtp_source.cpp',345),(1510770553.528737,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770553.531783,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 98006, 27250 bytes','zm_rtp_source.cpp',345),(1510770553.561741,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 98006, 0 bytes','zm_rtp_source.cpp',336),(1510770554.885812,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770554.889045,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 98039, 8608 bytes','zm_rtp_source.cpp',345),(1510770554.891894,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 98039, 0 bytes','zm_rtp_source.cpp',336),(1510770581.447495,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770581.450645,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 98728, 5740 bytes','zm_rtp_source.cpp',345),(1510770581.453450,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 98728, 0 bytes','zm_rtp_source.cpp',336),(1510770581.852602,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770581.855938,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 98739, 11476 bytes','zm_rtp_source.cpp',345),(1510770581.861030,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 98739, 0 bytes','zm_rtp_source.cpp',336),(1510770584.665495,'zmc_m1',0,3205,0,'INF','Monitor-1: 95000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770589.491448,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770589.494433,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 98935, 4306 bytes','zm_rtp_source.cpp',345),(1510770589.497240,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 98935, 0 bytes','zm_rtp_source.cpp',336),(1510770596.005368,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770596.010882,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99105, 8608 bytes','zm_rtp_source.cpp',345),(1510770596.016580,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99105, 0 bytes','zm_rtp_source.cpp',336),(1510770596.645151,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770596.648806,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99120, 8608 bytes','zm_rtp_source.cpp',345),(1510770596.651364,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99120, 0 bytes','zm_rtp_source.cpp',336),(1510770609.564922,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770609.571500,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99456, 5740 bytes','zm_rtp_source.cpp',345),(1510770609.578247,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99456, 0 bytes','zm_rtp_source.cpp',336),(1510770609.686104,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770609.692851,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99458, 12910 bytes','zm_rtp_source.cpp',345),(1510770610.045171,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770610.051439,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99466, 8608 bytes','zm_rtp_source.cpp',345),(1510770610.057729,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99466, 0 bytes','zm_rtp_source.cpp',336),(1510770610.760377,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770610.766071,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99483, 2872 bytes','zm_rtp_source.cpp',345),(1510770610.771004,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99483, 0 bytes','zm_rtp_source.cpp',336),(1510770616.684481,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770616.690773,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99636, 11476 bytes','zm_rtp_source.cpp',345),(1510770616.694590,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99636, 0 bytes','zm_rtp_source.cpp',336),(1510770616.800502,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770616.803574,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99638, 1438 bytes','zm_rtp_source.cpp',345),(1510770616.806473,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99638, 0 bytes','zm_rtp_source.cpp',336),(1510770617.043203,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770617.046022,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99643, 7174 bytes','zm_rtp_source.cpp',345),(1510770617.048886,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99643, 0 bytes','zm_rtp_source.cpp',336),(1510770624.323910,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770624.326662,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99832, 5740 bytes','zm_rtp_source.cpp',345),(1510770624.329770,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99832, 0 bytes','zm_rtp_source.cpp',336),(1510770625.111675,'zmc_m1',0,3205,0,'INF','Monitor-1: 96000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510770630.565321,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770630.568426,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 99993, 11476 bytes','zm_rtp_source.cpp',345),(1510770630.571245,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99993, 0 bytes','zm_rtp_source.cpp',336),(1510770630.600146,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770630.603233,'zmc_m1',0,3237,-1,'WAR','Discarding frame 99993','zm_rtp_source.cpp',349),(1510770630.606256,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 99993, 0 bytes','zm_rtp_source.cpp',336),(1510770637.527628,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770637.530607,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 100173, 38722 bytes','zm_rtp_source.cpp',345),(1510770637.542858,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 100173, 0 bytes','zm_rtp_source.cpp',336),(1510770645.359966,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770645.362867,'zmc_m1',0,3237,-1,'WAR','Discarding frame 100374','zm_rtp_source.cpp',349),(1510770645.365596,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 100374, 0 bytes','zm_rtp_source.cpp',336),(1510770651.531692,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770651.534518,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 100535, 45892 bytes','zm_rtp_source.cpp',345),(1510770651.544460,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 100535, 0 bytes','zm_rtp_source.cpp',336),(1510770652.523721,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770652.527330,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 100559, 5740 bytes','zm_rtp_source.cpp',345),(1510770652.530548,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 100559, 0 bytes','zm_rtp_source.cpp',336),(1510770665.351464,'zmc_m1',0,3205,0,'INF','Monitor-1: 97000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770666.084218,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770666.088833,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 100911, 11476 bytes','zm_rtp_source.cpp',345),(1510770666.093744,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 100911, 0 bytes','zm_rtp_source.cpp',336),(1510770693.680669,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770693.685097,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 101628, 4306 bytes','zm_rtp_source.cpp',345),(1510770693.690719,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 101628, 0 bytes','zm_rtp_source.cpp',336),(1510770694.238917,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770694.245352,'zmc_m1',0,3237,-1,'WAR','Discarding frame 101641','zm_rtp_source.cpp',349),(1510770694.252347,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 101641, 0 bytes','zm_rtp_source.cpp',336),(1510770700.603835,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770700.607335,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 101805, 10042 bytes','zm_rtp_source.cpp',345),(1510770700.611658,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 101805, 0 bytes','zm_rtp_source.cpp',336),(1510770705.509638,'zmc_m1',0,3205,0,'INF','Monitor-1: 98000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770714.529911,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770714.535628,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 102166, 11476 bytes','zm_rtp_source.cpp',345),(1510770714.538467,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 102166, 0 bytes','zm_rtp_source.cpp',336),(1510770722.518116,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770722.524188,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 102372, 14344 bytes','zm_rtp_source.cpp',345),(1510770722.529650,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 102372, 0 bytes','zm_rtp_source.cpp',336),(1510770736.197917,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770736.204771,'zmc_m1',0,3237,-1,'WAR','Discarding frame 102727','zm_rtp_source.cpp',349),(1510770736.208599,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 102727, 0 bytes','zm_rtp_source.cpp',336),(1510770742.122443,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770742.125433,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 102880, 4306 bytes','zm_rtp_source.cpp',345),(1510770742.126777,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 102880, 0 bytes','zm_rtp_source.cpp',336),(1510770742.362551,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770742.366826,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 102885, 7174 bytes','zm_rtp_source.cpp',345),(1510770742.371923,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 102885, 0 bytes','zm_rtp_source.cpp',336),(1510770742.399029,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770742.404906,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 102885, 1438 bytes','zm_rtp_source.cpp',345),(1510770742.410530,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 102885, 0 bytes','zm_rtp_source.cpp',336),(1510770745.789272,'zmc_m1',0,3205,0,'INF','Monitor-1: 99000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770749.541086,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770749.546969,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103070, 67402 bytes','zm_rtp_source.cpp',345),(1510770749.552820,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103070, 0 bytes','zm_rtp_source.cpp',336),(1510770749.682244,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770749.687409,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103073, 2872 bytes','zm_rtp_source.cpp',345),(1510770749.690264,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103073, 0 bytes','zm_rtp_source.cpp',336),(1510770749.922368,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770749.925967,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103078, 2872 bytes','zm_rtp_source.cpp',345),(1510770749.928644,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103078, 0 bytes','zm_rtp_source.cpp',336),(1510770750.201179,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770750.204763,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103084, 1438 bytes','zm_rtp_source.cpp',345),(1510770750.207641,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103084, 0 bytes','zm_rtp_source.cpp',336),(1510770750.444057,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770750.449702,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103089, 5740 bytes','zm_rtp_source.cpp',345),(1510770750.455015,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103089, 0 bytes','zm_rtp_source.cpp',336),(1510770756.608554,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770756.612227,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103248, 4306 bytes','zm_rtp_source.cpp',345),(1510770756.615252,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103248, 0 bytes','zm_rtp_source.cpp',336),(1510770757.168523,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770757.172131,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103261, 7174 bytes','zm_rtp_source.cpp',345),(1510770757.176053,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103261, 0 bytes','zm_rtp_source.cpp',336),(1510770757.248594,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770757.253765,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103262, 8608 bytes','zm_rtp_source.cpp',345),(1510770757.258694,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103262, 0 bytes','zm_rtp_source.cpp',336),(1510770757.328204,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770757.334221,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103263, 2872 bytes','zm_rtp_source.cpp',345),(1510770757.339578,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103263, 0 bytes','zm_rtp_source.cpp',336),(1510770770.247561,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770770.250636,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103599, 4306 bytes','zm_rtp_source.cpp',345),(1510770770.255709,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103599, 0 bytes','zm_rtp_source.cpp',336),(1510770770.449144,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770770.454645,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103603, 8608 bytes','zm_rtp_source.cpp',345),(1510770770.459817,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103603, 0 bytes','zm_rtp_source.cpp',336),(1510770770.568297,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770770.574113,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103605, 8608 bytes','zm_rtp_source.cpp',345),(1510770770.579049,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103605, 0 bytes','zm_rtp_source.cpp',336),(1510770771.163200,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770771.166939,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103619, 14344 bytes','zm_rtp_source.cpp',345),(1510770777.088620,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770777.092342,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103772, 8608 bytes','zm_rtp_source.cpp',345),(1510770777.095177,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 103772, 0 bytes','zm_rtp_source.cpp',336),(1510770777.408948,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770777.412616,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 103779, 12910 bytes','zm_rtp_source.cpp',345),(1510770786.382257,'zmc_m1',0,3205,0,'INF','Monitor-1: 100000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510770791.539052,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770791.541908,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 104147, 48760 bytes','zm_rtp_source.cpp',345),(1510770791.544439,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 104147, 0 bytes','zm_rtp_source.cpp',336),(1510770799.161379,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770799.167331,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 104343, 11476 bytes','zm_rtp_source.cpp',345),(1510770799.173126,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 104343, 0 bytes','zm_rtp_source.cpp',336),(1510770805.007368,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770805.013166,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 104494, 7174 bytes','zm_rtp_source.cpp',345),(1510770805.018927,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 104494, 0 bytes','zm_rtp_source.cpp',336),(1510770805.760744,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770805.766466,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 104514, 5740 bytes','zm_rtp_source.cpp',345),(1510770805.769325,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 104514, 0 bytes','zm_rtp_source.cpp',336),(1510770806.161635,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770806.164489,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 104523, 12910 bytes','zm_rtp_source.cpp',345),(1510770811.960921,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770811.966890,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 104673, 8608 bytes','zm_rtp_source.cpp',345),(1510770811.972471,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 104673, 0 bytes','zm_rtp_source.cpp',336),(1510770826.627859,'zmc_m1',0,3205,0,'INF','Monitor-1: 101000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770826.878899,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770826.884513,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 105059, 8608 bytes','zm_rtp_source.cpp',345),(1510770826.890286,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 105059, 0 bytes','zm_rtp_source.cpp',336),(1510770833.238284,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770833.241603,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 105223, 5740 bytes','zm_rtp_source.cpp',345),(1510770833.243224,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 105223, 0 bytes','zm_rtp_source.cpp',336),(1510770833.485860,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770833.491890,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 105227, 14344 bytes','zm_rtp_source.cpp',345),(1510770833.497477,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 105227, 0 bytes','zm_rtp_source.cpp',336),(1510770861.441652,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770861.445361,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 105953, 7174 bytes','zm_rtp_source.cpp',345),(1510770861.447148,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 105953, 0 bytes','zm_rtp_source.cpp',336),(1510770861.540625,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770861.543742,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 105956, 88912 bytes','zm_rtp_source.cpp',345),(1510770861.546542,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770861.549100,'zmc_m1',0,3237,-1,'WAR','Discarding frame 105956','zm_rtp_source.cpp',349),(1510770861.550475,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 105956, 0 bytes','zm_rtp_source.cpp',336),(1510770862.037988,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770862.041111,'zmc_m1',0,3237,-1,'WAR','Discarding frame 105968','zm_rtp_source.cpp',349),(1510770862.043888,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 105968, 0 bytes','zm_rtp_source.cpp',336),(1510770866.906630,'zmc_m1',0,3205,0,'INF','Monitor-1: 102000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770889.529286,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770889.534711,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 106682, 27250 bytes','zm_rtp_source.cpp',345),(1510770889.542239,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 106682, 0 bytes','zm_rtp_source.cpp',336),(1510770893.355404,'zms',0,5074,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510770893.360759,'zms',0,5074,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510770895.321011,'zms',0,5074,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510770903.365869,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770903.371119,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 107039, 12910 bytes','zm_rtp_source.cpp',345),(1510770906.986018,'zmc_m1',0,3205,0,'INF','Monitor-1: 103000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510770909.925346,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770909.928886,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 107210, 8608 bytes','zm_rtp_source.cpp',345),(1510770909.931993,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 107210, 0 bytes','zm_rtp_source.cpp',336),(1510770909.965598,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770909.971160,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 107210, 11476 bytes','zm_rtp_source.cpp',345),(1510770909.976516,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 107210, 0 bytes','zm_rtp_source.cpp',336),(1510770910.166039,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770910.171391,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 107214, 11476 bytes','zm_rtp_source.cpp',345),(1510770910.181836,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 107214, 0 bytes','zm_rtp_source.cpp',336),(1510770910.365037,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770910.368702,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 107218, 4306 bytes','zm_rtp_source.cpp',345),(1510770910.371680,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 107218, 0 bytes','zm_rtp_source.cpp',336),(1510770910.564734,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770910.567870,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 107222, 2872 bytes','zm_rtp_source.cpp',345),(1510770910.570466,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 107222, 0 bytes','zm_rtp_source.cpp',336),(1510770910.924885,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770910.928178,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 107230, 2872 bytes','zm_rtp_source.cpp',345),(1510770910.931651,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 107230, 0 bytes','zm_rtp_source.cpp',336),(1510770924.684833,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770924.687887,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 107587, 5740 bytes','zm_rtp_source.cpp',345),(1510770924.690516,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 107587, 0 bytes','zm_rtp_source.cpp',336),(1510770925.347107,'zms',0,5083,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510770925.350050,'zms',0,5083,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510770931.004488,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770931.007758,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 107750, 2872 bytes','zm_rtp_source.cpp',345),(1510770931.010734,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 107750, 0 bytes','zm_rtp_source.cpp',336),(1510770933.109550,'zmcontrol',NULL,5085,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510770933.134120,'zmcontrol',NULL,5087,0,'INF','Control server 1/Floureon starting at 17/11/15 20:35:33','zmcontrol.pl',NULL),(1510770938.844578,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770938.847459,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 107953, 5740 bytes','zm_rtp_source.cpp',345),(1510770938.850298,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 107953, 0 bytes','zm_rtp_source.cpp',336),(1510770945.719865,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770945.722939,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 108132, 10042 bytes','zm_rtp_source.cpp',345),(1510770945.725608,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 108132, 0 bytes','zm_rtp_source.cpp',336),(1510770947.385575,'zmc_m1',0,3205,0,'INF','Monitor-1: 104000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510770951.005365,'zms',0,5083,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510770952.319314,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770952.324439,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 108302, 10042 bytes','zm_rtp_source.cpp',345),(1510770952.329308,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 108302, 0 bytes','zm_rtp_source.cpp',336),(1510770953.164608,'zmc_m1',0,3237,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770953.170162,'zmc_m1',0,3237,-1,'WAR','Discarding partial frame 108322, 10042 bytes','zm_rtp_source.cpp',345),(1510770953.175518,'zmc_m1',0,3237,-1,'WAR','Discarding incomplete frame 108322, 0 bytes','zm_rtp_source.cpp',336),(1510770956.196170,'zmpkg',NULL,5109,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510770956.201980,'zmpkg',NULL,5109,0,'INF','Command: restart','zmpkg.pl',NULL),(1510770956.288850,'zmsystemctl',NULL,5115,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510770956.365280,'zmpkg',NULL,5119,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510770956.371850,'zmpkg',NULL,5119,0,'INF','Command: stop','zmpkg.pl',NULL),(1510770956.551500,'zmdc',NULL,3175,0,'INF','\'zmwatch.pl\' sending stop to pid 3218 at 17/11/15 20:35:56','zmdc.pl',NULL),(1510770956.557160,'zmdc',NULL,3175,0,'INF','\'zmfilter.pl\' sending stop to pid 3207 at 17/11/15 20:35:56','zmdc.pl',NULL),(1510770956.560370,'zmdc',NULL,3175,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510770956.563330,'zmdc',NULL,3175,0,'INF','\'zmaudit.pl -c\' sending stop to pid 3213 at 17/11/15 20:35:56','zmdc.pl',NULL),(1510770956.566290,'zmdc',NULL,3175,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510770956.569000,'zmdc',NULL,3175,0,'INF','\'zmtelemetry.pl\' sending stop to pid 3225 at 17/11/15 20:35:56','zmdc.pl',NULL),(1510770956.570370,'zmdc',NULL,3175,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510770956.573120,'zmdc',NULL,3175,0,'INF','\'zmc -m 1\' sending stop to pid 3205 at 17/11/15 20:35:56','zmdc.pl',NULL),(1510770956.574460,'zmdc',NULL,3175,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510770956.576894,'zmc_m1',0,3205,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510770962.577980,'zmdc',NULL,3175,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 20:36:02. Sending KILL to pid 3205','zmdc.pl',NULL),(1510770962.591600,'zmdc',NULL,3175,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510770972.703210,'zmdc',NULL,3175,0,'INF','Server shutdown at 17/11/15 20:36:12','zmdc.pl',NULL),(1510770972.832640,'zmpkg',NULL,5156,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510770972.836450,'zmpkg',NULL,5156,0,'INF','Command: start','zmpkg.pl',NULL),(1510770972.999960,'zmdc',NULL,5171,0,'INF','Server starting at 17/11/15 20:36:12','zmdc.pl',NULL),(1510770976.006010,'zmpkg',NULL,5156,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510770976.095920,'zmdc',NULL,5197,0,'INF','\'zmc -m 1\' started at 17/11/15 20:36:16','zmdc.pl',NULL),(1510770976.095920,'zmdc',NULL,5171,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:36:16, pid = 5197','zmdc.pl',NULL),(1510770976.134620,'zmdc',NULL,5171,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510770976.139680,'zmdc',NULL,5171,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510770976.143680,'zmdc',NULL,5201,0,'INF','\'zmc -m 1\' started at 17/11/15 20:36:16','zmdc.pl',NULL),(1510770976.143680,'zmdc',NULL,5171,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:36:16, pid = 5201','zmdc.pl',NULL),(1510770976.181970,'zmdc',NULL,5204,0,'INF','\'zmfilter.pl\' started at 17/11/15 20:36:16','zmdc.pl',NULL),(1510770976.181970,'zmdc',NULL,5171,0,'INF','\'zmfilter.pl\' starting at 17/11/15 20:36:16, pid = 5204','zmdc.pl',NULL),(1510770976.265790,'zmdc',NULL,5171,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 20:36:16, pid = 5209','zmdc.pl',NULL),(1510770976.265820,'zmdc',NULL,5209,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 20:36:16','zmdc.pl',NULL),(1510770976.298806,'zmc_m1',0,5201,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510770976.335910,'zmfilter',NULL,5204,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510770976.348430,'zmdc',NULL,5171,0,'INF','\'zmwatch.pl\' starting at 17/11/15 20:36:16, pid = 5213','zmdc.pl',NULL),(1510770976.348910,'zmdc',NULL,5213,0,'INF','\'zmwatch.pl\' started at 17/11/15 20:36:16','zmdc.pl',NULL),(1510770976.427320,'zmwatch',NULL,5213,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510770976.432680,'zmwatch',NULL,5213,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510770976.435560,'zmdc',NULL,5171,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 20:36:16, pid = 5221','zmdc.pl',NULL),(1510770976.435620,'zmdc',NULL,5221,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 20:36:16','zmdc.pl',NULL),(1510770978.396967,'zms',0,5237,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510770978.402133,'zms',0,5237,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510770980.003936,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770980.007146,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 71, 5740 bytes','zm_rtp_source.cpp',345),(1510770980.010075,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 71, 0 bytes','zm_rtp_source.cpp',336),(1510770980.523648,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770980.526575,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 83, 10042 bytes','zm_rtp_source.cpp',345),(1510770980.529028,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 83, 0 bytes','zm_rtp_source.cpp',336),(1510770980.764731,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770980.767731,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 88, 12910 bytes','zm_rtp_source.cpp',345),(1510770987.243362,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770987.248743,'zmc_m1',0,5233,-1,'WAR','Discarding frame 255','zm_rtp_source.cpp',349),(1510770987.253687,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 255, 0 bytes','zm_rtp_source.cpp',336),(1510770994.323756,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510770994.326740,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 439, 2872 bytes','zm_rtp_source.cpp',345),(1510770994.329060,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 439, 0 bytes','zm_rtp_source.cpp',336),(1510771002.194884,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771002.200649,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 642, 12910 bytes','zm_rtp_source.cpp',345),(1510771002.204264,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 642, 0 bytes','zm_rtp_source.cpp',336),(1510771015.339016,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771015.344071,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 983, 61666 bytes','zm_rtp_source.cpp',345),(1510771015.350485,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 983, 0 bytes','zm_rtp_source.cpp',336),(1510771016.354418,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771016.360089,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 1008, 10042 bytes','zm_rtp_source.cpp',345),(1510771016.365699,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 1008, 0 bytes','zm_rtp_source.cpp',336),(1510771017.698847,'zmc_m1',0,5201,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510771022.930918,'zms',0,5237,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771023.337762,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771023.343882,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 1189, 50194 bytes','zm_rtp_source.cpp',345),(1510771023.349129,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 1189, 0 bytes','zm_rtp_source.cpp',336),(1510771029.674947,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771029.678174,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 1353, 11476 bytes','zm_rtp_source.cpp',345),(1510771057.776246,'zmc_m1',0,5201,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510771064.562646,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771064.568477,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 2258, 10042 bytes','zm_rtp_source.cpp',345),(1510771064.573173,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 2258, 0 bytes','zm_rtp_source.cpp',336),(1510771064.721356,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771064.724659,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 2260, 12910 bytes','zm_rtp_source.cpp',345),(1510771064.727673,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 2260, 0 bytes','zm_rtp_source.cpp',336),(1510771071.562155,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771071.567522,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 2438, 8608 bytes','zm_rtp_source.cpp',345),(1510771071.572818,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 2438, 0 bytes','zm_rtp_source.cpp',336),(1510771078.281415,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771078.284726,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 2611, 4306 bytes','zm_rtp_source.cpp',345),(1510771078.289206,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 2611, 0 bytes','zm_rtp_source.cpp',336),(1510771085.041544,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771085.046989,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 2785, 7174 bytes','zm_rtp_source.cpp',345),(1510771085.052092,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 2785, 0 bytes','zm_rtp_source.cpp',336),(1510771086.121996,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771086.125372,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 2813, 10042 bytes','zm_rtp_source.cpp',345),(1510771086.126993,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 2813, 0 bytes','zm_rtp_source.cpp',336),(1510771098.055944,'zmc_m1',0,5201,0,'INF','Monitor-1: 3000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510771120.281153,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771120.285975,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 3700, 2872 bytes','zm_rtp_source.cpp',345),(1510771120.290989,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 3700, 0 bytes','zm_rtp_source.cpp',336),(1510771121.001114,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771121.006475,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 3717, 8608 bytes','zm_rtp_source.cpp',345),(1510771121.011597,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 3717, 0 bytes','zm_rtp_source.cpp',336),(1510771127.323365,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771127.328435,'zmc_m1',0,5233,-1,'WAR','Discarding frame 3882','zm_rtp_source.cpp',349),(1510771127.347013,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 3882, 0 bytes','zm_rtp_source.cpp',336),(1510771127.839797,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771127.845665,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 3893, 12910 bytes','zm_rtp_source.cpp',345),(1510771127.849942,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 3893, 0 bytes','zm_rtp_source.cpp',336),(1510771134.720734,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771134.724273,'zmc_m1',0,5233,-1,'WAR','Discarding partial frame 4070, 2872 bytes','zm_rtp_source.cpp',345),(1510771134.728464,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 4070, 0 bytes','zm_rtp_source.cpp',336),(1510771138.302074,'zmc_m1',0,5201,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510771141.200191,'zmc_m1',0,5233,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771141.203103,'zmc_m1',0,5233,-1,'WAR','Discarding frame 4237','zm_rtp_source.cpp',349),(1510771141.208587,'zmc_m1',0,5233,-1,'WAR','Discarding incomplete frame 4237, 0 bytes','zm_rtp_source.cpp',336),(1510771154.237930,'zmdc',NULL,5171,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771154.321080,'zmdc',NULL,5171,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771154.401550,'zmdc',NULL,5171,0,'INF','\'zmc -m 1\' sending stop to pid 5201 at 17/11/15 20:39:14','zmdc.pl',NULL),(1510771154.406865,'zmc_m1',0,5201,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771160.407920,'zmdc',NULL,5171,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 20:39:20. Sending KILL to pid 5201','zmdc.pl',NULL),(1510771160.451340,'zmdc',NULL,5171,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510771160.539760,'zmdc',NULL,5171,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:39:20, pid = 5350','zmdc.pl',NULL),(1510771160.540010,'zmdc',NULL,5350,0,'INF','\'zmc -m 1\' started at 17/11/15 20:39:20','zmdc.pl',NULL),(1510771160.632210,'zmdc',NULL,5171,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771160.680264,'zmc_m1',0,5350,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510771160.716240,'zmdc',NULL,5171,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771163.372288,'zms',0,5382,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510771163.377611,'zms',0,5382,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510771168.799370,'zmcontrol',NULL,5384,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771168.821960,'zmcontrol',NULL,5386,0,'INF','Control server 1/Floureon starting at 17/11/15 20:39:28','zmcontrol.pl',NULL),(1510771169.000601,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771169.005819,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 190, 11476 bytes','zm_rtp_source.cpp',345),(1510771169.600120,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771169.605582,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 204, 8608 bytes','zm_rtp_source.cpp',345),(1510771169.610893,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 204, 0 bytes','zm_rtp_source.cpp',336),(1510771169.680159,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771169.685354,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 205, 5740 bytes','zm_rtp_source.cpp',345),(1510771169.689353,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 205, 0 bytes','zm_rtp_source.cpp',336),(1510771169.745813,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771169.748746,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 207, 126196 bytes','zm_rtp_source.cpp',345),(1510771169.750242,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 207, 0 bytes','zm_rtp_source.cpp',336),(1510771170.280826,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771170.284207,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 220, 12910 bytes','zm_rtp_source.cpp',345),(1510771197.722604,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771197.726262,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 933, 14344 bytes','zm_rtp_source.cpp',345),(1510771197.731605,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 933, 0 bytes','zm_rtp_source.cpp',336),(1510771201.982920,'zmc_m1',0,5350,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510771204.290722,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771204.296575,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 1102, 7174 bytes','zm_rtp_source.cpp',345),(1510771204.302523,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 1102, 0 bytes','zm_rtp_source.cpp',336),(1510771218.878650,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771218.881945,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 1480, 1438 bytes','zm_rtp_source.cpp',345),(1510771218.883214,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 1480, 0 bytes','zm_rtp_source.cpp',336),(1510771220.919379,'zms',0,5382,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771225.519851,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771225.525832,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 1651, 14344 bytes','zm_rtp_source.cpp',345),(1510771232.000662,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771232.004908,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 1820, 2872 bytes','zm_rtp_source.cpp',345),(1510771232.009694,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 1820, 0 bytes','zm_rtp_source.cpp',336),(1510771232.639926,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771232.642647,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 1835, 5740 bytes','zm_rtp_source.cpp',345),(1510771232.645141,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 1835, 0 bytes','zm_rtp_source.cpp',336),(1510771232.959059,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771232.963152,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 1842, 10042 bytes','zm_rtp_source.cpp',345),(1510771232.968144,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 1842, 0 bytes','zm_rtp_source.cpp',336),(1510771240.153557,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771240.156634,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 2029, 12910 bytes','zm_rtp_source.cpp',345),(1510771240.158547,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 2029, 0 bytes','zm_rtp_source.cpp',336),(1510771242.260701,'zmc_m1',0,5350,0,'INF','Monitor-1: 2000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510771246.190851,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771246.196580,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 2184, 15778 bytes','zm_rtp_source.cpp',345),(1510771246.201998,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 2184, 0 bytes','zm_rtp_source.cpp',336),(1510771246.232704,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771246.236155,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 2184, 5740 bytes','zm_rtp_source.cpp',345),(1510771246.239228,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 2184, 0 bytes','zm_rtp_source.cpp',336),(1510771246.758178,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771246.760981,'zmc_m1',0,5377,-1,'WAR','Discarding partial frame 2196, 4306 bytes','zm_rtp_source.cpp',345),(1510771246.762282,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 2196, 0 bytes','zm_rtp_source.cpp',336),(1510771247.078350,'zmc_m1',0,5377,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771247.081380,'zmc_m1',0,5377,-1,'WAR','Discarding frame 2203','zm_rtp_source.cpp',349),(1510771247.082981,'zmc_m1',0,5377,-1,'WAR','Discarding incomplete frame 2203, 0 bytes','zm_rtp_source.cpp',336),(1510771249.081840,'zmdc',NULL,5171,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771249.159790,'zmdc',NULL,5171,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771249.236770,'zmdc',NULL,5171,0,'INF','\'zmc -m 1\' sending stop to pid 5350 at 17/11/15 20:40:49','zmdc.pl',NULL),(1510771249.240154,'zmc_m1',0,5350,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771255.241350,'zmdc',NULL,5171,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 20:40:55. Sending KILL to pid 5350','zmdc.pl',NULL),(1510771255.255430,'zmdc',NULL,5171,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510771255.341250,'zmdc',NULL,5423,0,'INF','\'zmc -m 1\' started at 17/11/15 20:40:55','zmdc.pl',NULL),(1510771255.341250,'zmdc',NULL,5171,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:40:55, pid = 5423','zmdc.pl',NULL),(1510771255.424830,'zmdc',NULL,5171,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771255.468362,'zmc_m1',0,5423,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510771255.500660,'zmdc',NULL,5171,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771260.251290,'zmpkg',NULL,5452,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510771260.255330,'zmpkg',NULL,5452,0,'INF','Command: restart','zmpkg.pl',NULL),(1510771260.349290,'zmsystemctl',NULL,5458,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510771260.422050,'zmpkg',NULL,5462,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510771260.425430,'zmpkg',NULL,5462,0,'INF','Command: stop','zmpkg.pl',NULL),(1510771260.601810,'zmdc',NULL,5171,0,'INF','\'zmc -m 1\' sending stop to pid 5423 at 17/11/15 20:41:00','zmdc.pl',NULL),(1510771260.604858,'zmc_m1',0,5423,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771260.604910,'zmdc',NULL,5171,0,'INF','\'zmaudit.pl -c\' sending stop to pid 5209 at 17/11/15 20:41:00','zmdc.pl',NULL),(1510771260.607240,'zmdc',NULL,5171,0,'INF','\'zmwatch.pl\' sending stop to pid 5213 at 17/11/15 20:41:00','zmdc.pl',NULL),(1510771260.609780,'zmdc',NULL,5171,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510771260.611840,'zmdc',NULL,5171,0,'INF','\'zmtelemetry.pl\' sending stop to pid 5221 at 17/11/15 20:41:00','zmdc.pl',NULL),(1510771260.616990,'zmdc',NULL,5171,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510771260.622370,'zmdc',NULL,5171,0,'INF','\'zmfilter.pl\' sending stop to pid 5204 at 17/11/15 20:41:00','zmdc.pl',NULL),(1510771260.627480,'zmdc',NULL,5171,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510771260.633650,'zmdc',NULL,5171,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510771265.641040,'zmdc',NULL,5171,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 20:41:05. Sending KILL to pid 5423','zmdc.pl',NULL),(1510771265.657210,'zmdc',NULL,5171,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510771275.722380,'zmdc',NULL,5171,0,'INF','Server shutdown at 17/11/15 20:41:15','zmdc.pl',NULL),(1510771275.844840,'zmpkg',NULL,5498,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510771275.851060,'zmpkg',NULL,5498,0,'INF','Command: start','zmpkg.pl',NULL),(1510771276.034770,'zmdc',NULL,5513,0,'INF','Server starting at 17/11/15 20:41:16','zmdc.pl',NULL),(1510771279.041350,'zmpkg',NULL,5498,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510771279.133580,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:41:19, pid = 5539','zmdc.pl',NULL),(1510771279.133580,'zmdc',NULL,5539,0,'INF','\'zmc -m 1\' started at 17/11/15 20:41:19','zmdc.pl',NULL),(1510771279.175530,'zmdc',NULL,5513,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510771279.178580,'zmdc',NULL,5513,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510771279.182510,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:41:19, pid = 5543','zmdc.pl',NULL),(1510771279.182510,'zmdc',NULL,5543,0,'INF','\'zmc -m 1\' started at 17/11/15 20:41:19','zmdc.pl',NULL),(1510771279.223470,'zmdc',NULL,5546,0,'INF','\'zmfilter.pl\' started at 17/11/15 20:41:19','zmdc.pl',NULL),(1510771279.223470,'zmdc',NULL,5513,0,'INF','\'zmfilter.pl\' starting at 17/11/15 20:41:19, pid = 5546','zmdc.pl',NULL),(1510771279.308540,'zmdc',NULL,5513,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 20:41:19, pid = 5551','zmdc.pl',NULL),(1510771279.308580,'zmdc',NULL,5551,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 20:41:19','zmdc.pl',NULL),(1510771279.339278,'zmc_m1',0,5543,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510771279.363150,'zmfilter',NULL,5546,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510771279.397950,'zmdc',NULL,5556,0,'INF','\'zmwatch.pl\' started at 17/11/15 20:41:19','zmdc.pl',NULL),(1510771279.397950,'zmdc',NULL,5513,0,'INF','\'zmwatch.pl\' starting at 17/11/15 20:41:19, pid = 5556','zmdc.pl',NULL),(1510771279.472700,'zmwatch',NULL,5556,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510771279.478090,'zmwatch',NULL,5556,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510771279.485710,'zmdc',NULL,5563,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 20:41:19','zmdc.pl',NULL),(1510771279.485710,'zmdc',NULL,5513,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 20:41:19, pid = 5563','zmdc.pl',NULL),(1510771284.535272,'zms',0,5581,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510771284.540665,'zms',0,5581,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510771292.875440,'zmcontrol',NULL,5583,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771292.897710,'zmcontrol',NULL,5585,0,'INF','Control server 1/Floureon starting at 17/11/15 20:41:32','zmcontrol.pl',NULL),(1510771295.302055,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771295.308866,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 390, 8608 bytes','zm_rtp_source.cpp',345),(1510771295.315600,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 390, 0 bytes','zm_rtp_source.cpp',336),(1510771296.063478,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771296.070255,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 408, 7174 bytes','zm_rtp_source.cpp',345),(1510771296.076291,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 408, 0 bytes','zm_rtp_source.cpp',336),(1510771296.143014,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771296.146218,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 409, 1438 bytes','zm_rtp_source.cpp',345),(1510771296.149198,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 409, 0 bytes','zm_rtp_source.cpp',336),(1510771302.359674,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771302.366145,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 571, 83176 bytes','zm_rtp_source.cpp',345),(1510771302.371371,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 571, 0 bytes','zm_rtp_source.cpp',336),(1510771310.311444,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771310.317930,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 775, 11476 bytes','zm_rtp_source.cpp',345),(1510771310.323457,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 775, 0 bytes','zm_rtp_source.cpp',336),(1510771316.437922,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771316.443251,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 935, 7174 bytes','zm_rtp_source.cpp',345),(1510771316.448472,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 935, 0 bytes','zm_rtp_source.cpp',336),(1510771320.615871,'zmc_m1',0,5543,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510771337.557418,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771337.563112,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 1482, 10042 bytes','zm_rtp_source.cpp',345),(1510771337.568921,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 1482, 0 bytes','zm_rtp_source.cpp',336),(1510771344.636938,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771344.642223,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 1666, 10042 bytes','zm_rtp_source.cpp',345),(1510771344.648087,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 1666, 0 bytes','zm_rtp_source.cpp',336),(1510771345.036769,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771345.042412,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 1675, 5740 bytes','zm_rtp_source.cpp',345),(1510771345.047919,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 1675, 0 bytes','zm_rtp_source.cpp',336),(1510771345.397505,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771345.402395,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 1683, 11476 bytes','zm_rtp_source.cpp',345),(1510771345.404844,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 1683, 0 bytes','zm_rtp_source.cpp',336),(1510771347.641292,'zms',0,5581,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771351.316456,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771351.322584,'zmc_m1',0,5575,-1,'WAR','Discarding frame 1836','zm_rtp_source.cpp',349),(1510771351.326301,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 1836, 0 bytes','zm_rtp_source.cpp',336),(1510771351.637330,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771351.640876,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 1843, 11476 bytes','zm_rtp_source.cpp',345),(1510771351.642569,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 1843, 0 bytes','zm_rtp_source.cpp',336),(1510771360.848083,'zmc_m1',0,5543,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510771366.431541,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771366.434380,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 2228, 8608 bytes','zm_rtp_source.cpp',345),(1510771366.436915,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 2228, 0 bytes','zm_rtp_source.cpp',336),(1510771372.076452,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771372.079512,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 2372, 2872 bytes','zm_rtp_source.cpp',345),(1510771372.084629,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 2372, 0 bytes','zm_rtp_source.cpp',336),(1510771372.316126,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771372.321987,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 2377, 4306 bytes','zm_rtp_source.cpp',345),(1510771372.327492,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 2377, 0 bytes','zm_rtp_source.cpp',336),(1510771372.495651,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771372.501353,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 2383, 1438 bytes','zm_rtp_source.cpp',345),(1510771372.506978,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 2383, 0 bytes','zm_rtp_source.cpp',336),(1510771380.370462,'zmc_m1',0,5575,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771380.375948,'zmc_m1',0,5575,-1,'WAR','Discarding partial frame 2586, 54496 bytes','zm_rtp_source.cpp',345),(1510771380.381654,'zmc_m1',0,5575,-1,'WAR','Discarding incomplete frame 2586, 0 bytes','zm_rtp_source.cpp',336),(1510771381.435400,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771381.513720,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771381.604360,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' sending stop to pid 5543 at 17/11/15 20:43:01','zmdc.pl',NULL),(1510771381.610085,'zmc_m1',0,5543,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771387.611060,'zmdc',NULL,5513,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 20:43:07. Sending KILL to pid 5543','zmdc.pl',NULL),(1510771387.651030,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510771387.743030,'zmdc',NULL,5626,0,'INF','\'zmc -m 1\' started at 17/11/15 20:43:07','zmdc.pl',NULL),(1510771387.743010,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:43:07, pid = 5626','zmdc.pl',NULL),(1510771387.830500,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771387.874379,'zmc_m1',0,5626,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510771387.908340,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771399.495180,'zms',0,5649,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510771399.500313,'zms',0,5649,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510771413.267091,'zms',0,5649,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771415.988420,'zms',0,5655,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510771415.991427,'zms',0,5655,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510771417.141521,'zms',0,5655,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771428.914414,'zmc_m1',0,5626,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510771429.111102,'zmc_m1',0,5644,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771429.113856,'zmc_m1',0,5644,-1,'WAR','Discarding partial frame 1046, 8608 bytes','zm_rtp_source.cpp',345),(1510771429.115152,'zmc_m1',0,5644,-1,'WAR','Discarding incomplete frame 1046, 0 bytes','zm_rtp_source.cpp',336),(1510771435.950987,'zmc_m1',0,5644,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771435.953879,'zmc_m1',0,5644,-1,'WAR','Discarding partial frame 1222, 8608 bytes','zm_rtp_source.cpp',345),(1510771435.955113,'zmc_m1',0,5644,-1,'WAR','Discarding incomplete frame 1222, 0 bytes','zm_rtp_source.cpp',336),(1510771449.974632,'zmc_m1',0,5644,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771449.979815,'zmc_m1',0,5644,-1,'WAR','Discarding partial frame 1586, 2872 bytes','zm_rtp_source.cpp',345),(1510771449.984016,'zmc_m1',0,5644,-1,'WAR','Discarding incomplete frame 1586, 0 bytes','zm_rtp_source.cpp',336),(1510771450.642130,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771450.720420,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771450.795940,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' sending stop to pid 5626 at 17/11/15 20:44:10','zmdc.pl',NULL),(1510771450.799008,'zmc_m1',0,5626,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771456.800110,'zmdc',NULL,5513,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 20:44:16. Sending KILL to pid 5626','zmdc.pl',NULL),(1510771456.816620,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510771456.918350,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:44:16, pid = 5684','zmdc.pl',NULL),(1510771456.918350,'zmdc',NULL,5684,0,'INF','\'zmc -m 1\' started at 17/11/15 20:44:16','zmdc.pl',NULL),(1510771457.008680,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771457.053318,'zmc_m1',0,5684,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510771457.093110,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771460.083948,'zms',0,5706,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510771460.086964,'zms',0,5706,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510771468.597830,'zmcontrol',NULL,5709,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771468.619010,'zmcontrol',NULL,5711,0,'INF','Control server 1/Floureon starting at 17/11/15 20:44:28','zmcontrol.pl',NULL),(1510771469.627240,'zmcontrol',NULL,5711,-3,'FAT','Can\'t access moveRelDown member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771471.053370,'zmcontrol',NULL,5714,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771471.077220,'zmcontrol',NULL,5716,0,'INF','Control server 1/Floureon starting at 17/11/15 20:44:31','zmcontrol.pl',NULL),(1510771472.091120,'zmcontrol',NULL,5716,-3,'FAT','Can\'t access moveRelDown member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771472.308650,'zmcontrol',NULL,5718,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771472.331960,'zmcontrol',NULL,5720,0,'INF','Control server 1/Floureon starting at 17/11/15 20:44:32','zmcontrol.pl',NULL),(1510771472.921410,'zmcontrol',NULL,5720,-3,'FAT','Can\'t access moveRelDown member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771476.948630,'zmcontrol',NULL,5724,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771476.973120,'zmcontrol',NULL,5726,0,'INF','Control server 1/Floureon starting at 17/11/15 20:44:36','zmcontrol.pl',NULL),(1510771477.340930,'zmcontrol',NULL,5726,-3,'FAT','Can\'t access moveRelDown member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771478.511050,'zmcontrol',NULL,5730,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771478.532310,'zmcontrol',NULL,5732,0,'INF','Control server 1/Floureon starting at 17/11/15 20:44:38','zmcontrol.pl',NULL),(1510771478.967470,'zmcontrol',NULL,5732,-3,'FAT','Can\'t access moveRelRight member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771479.900730,'zmcontrol',NULL,5734,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771479.924740,'zmcontrol',NULL,5736,0,'INF','Control server 1/Floureon starting at 17/11/15 20:44:39','zmcontrol.pl',NULL),(1510771479.994290,'zmcontrol',NULL,5736,-3,'FAT','Can\'t access moveRelDown member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771480.465100,'zmcontrol',NULL,5738,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771480.486080,'zmcontrol',NULL,5740,0,'INF','Control server 1/Floureon starting at 17/11/15 20:44:40','zmcontrol.pl',NULL),(1510771480.541280,'zmcontrol',NULL,5740,-3,'FAT','Can\'t access moveRelLeft member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771489.927140,'zmcontrol',NULL,5734,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771489.935771,'web_php',NULL,2976,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=3 --tiltstep=0 --command=moveRelDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771490.487610,'zmcontrol',NULL,5738,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771490.496184,'web_php',NULL,1210,-2,'ERR','/usr/bin/zmcontrol.pl --command=presetHome --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771491.869777,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771491.873154,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 879, 4306 bytes','zm_rtp_source.cpp',345),(1510771491.876275,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 879, 0 bytes','zm_rtp_source.cpp',336),(1510771491.949313,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771491.952333,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 880, 7174 bytes','zm_rtp_source.cpp',345),(1510771491.955153,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 880, 0 bytes','zm_rtp_source.cpp',336),(1510771494.499209,'zms',0,5706,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771498.167444,'zmc_m1',0,5684,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510771526.748411,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771526.751102,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 1785, 5740 bytes','zm_rtp_source.cpp',345),(1510771526.753453,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 1785, 0 bytes','zm_rtp_source.cpp',336),(1510771527.029605,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771527.034911,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 1791, 2872 bytes','zm_rtp_source.cpp',345),(1510771527.040439,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 1791, 0 bytes','zm_rtp_source.cpp',336),(1510771527.534276,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771527.539362,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 1803, 12910 bytes','zm_rtp_source.cpp',345),(1510771538.271880,'zmc_m1',0,5684,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510771541.252180,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771541.257615,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 2158, 12910 bytes','zm_rtp_source.cpp',345),(1510771541.262864,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 2158, 0 bytes','zm_rtp_source.cpp',336),(1510771561.505971,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771561.510458,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 2683, 10042 bytes','zm_rtp_source.cpp',345),(1510771561.515727,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 2683, 0 bytes','zm_rtp_source.cpp',336),(1510771576.332262,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771576.335201,'zmc_m1',0,5701,-1,'WAR','Discarding frame 3069','zm_rtp_source.cpp',349),(1510771576.338180,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 3069, 0 bytes','zm_rtp_source.cpp',336),(1510771576.572621,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771576.575818,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 3074, 2872 bytes','zm_rtp_source.cpp',345),(1510771576.578719,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 3074, 0 bytes','zm_rtp_source.cpp',336),(1510771578.492663,'zmc_m1',0,5684,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510771582.452270,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771582.457940,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 3226, 5740 bytes','zm_rtp_source.cpp',345),(1510771582.463180,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 3226, 0 bytes','zm_rtp_source.cpp',336),(1510771618.512708,'zmc_m1',0,5684,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510771624.372374,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771624.375798,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 4315, 8608 bytes','zm_rtp_source.cpp',345),(1510771624.378602,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 4315, 0 bytes','zm_rtp_source.cpp',336),(1510771625.611568,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771625.614995,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 4345, 4306 bytes','zm_rtp_source.cpp',345),(1510771625.617564,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 4345, 0 bytes','zm_rtp_source.cpp',336),(1510771631.571560,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771631.575048,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 4499, 4306 bytes','zm_rtp_source.cpp',345),(1510771631.577470,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 4499, 0 bytes','zm_rtp_source.cpp',336),(1510771631.851673,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771631.855289,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 4505, 8608 bytes','zm_rtp_source.cpp',345),(1510771631.858174,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 4505, 0 bytes','zm_rtp_source.cpp',336),(1510771632.532032,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771632.535263,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 4523, 4306 bytes','zm_rtp_source.cpp',345),(1510771632.537861,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 4523, 0 bytes','zm_rtp_source.cpp',336),(1510771632.771604,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771632.777347,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 4528, 7174 bytes','zm_rtp_source.cpp',345),(1510771632.782876,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 4528, 0 bytes','zm_rtp_source.cpp',336),(1510771658.749330,'zmc_m1',0,5684,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510771698.751065,'zmc_m1',0,5684,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510771702.065716,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771702.071100,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 6329, 100384 bytes','zm_rtp_source.cpp',345),(1510771702.076438,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 6329, 0 bytes','zm_rtp_source.cpp',336),(1510771709.265337,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771709.268123,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 6514, 11476 bytes','zm_rtp_source.cpp',345),(1510771709.270846,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 6514, 0 bytes','zm_rtp_source.cpp',336),(1510771716.649716,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771716.653437,'zmc_m1',0,5701,-1,'WAR','Discarding frame 6706','zm_rtp_source.cpp',349),(1510771716.655103,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 6706, 0 bytes','zm_rtp_source.cpp',336),(1510771723.732250,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771723.735464,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 6888, 7174 bytes','zm_rtp_source.cpp',345),(1510771723.738347,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 6888, 0 bytes','zm_rtp_source.cpp',336),(1510771730.065497,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771730.072032,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 7053, 80308 bytes','zm_rtp_source.cpp',345),(1510771730.078632,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 7053, 0 bytes','zm_rtp_source.cpp',336),(1510771730.543489,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771730.550146,'zmc_m1',0,5701,-1,'WAR','Discarding frame 7064','zm_rtp_source.cpp',349),(1510771730.557287,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 7064, 0 bytes','zm_rtp_source.cpp',336),(1510771730.585829,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771730.589214,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 7064, 12910 bytes','zm_rtp_source.cpp',345),(1510771737.250087,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771737.255871,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 7236, 5740 bytes','zm_rtp_source.cpp',345),(1510771737.261235,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 7236, 0 bytes','zm_rtp_source.cpp',336),(1510771739.070775,'zmc_m1',0,5684,0,'INF','Monitor-1: 7000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510771758.223575,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771758.228862,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 7781, 1438 bytes','zm_rtp_source.cpp',345),(1510771758.233935,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 7781, 0 bytes','zm_rtp_source.cpp',336),(1510771779.110657,'zmc_m1',0,5684,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510771779.328924,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771779.331708,'zmc_m1',0,5701,-1,'WAR','Discarding frame 8328','zm_rtp_source.cpp',349),(1510771779.334297,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 8328, 0 bytes','zm_rtp_source.cpp',336),(1510771785.849918,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771785.852753,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 8496, 11476 bytes','zm_rtp_source.cpp',345),(1510771785.861474,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 8496, 0 bytes','zm_rtp_source.cpp',336),(1510771786.064910,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771786.068024,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 8502, 25816 bytes','zm_rtp_source.cpp',345),(1510771786.079867,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 8502, 0 bytes','zm_rtp_source.cpp',336),(1510771793.009519,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771793.012349,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 8681, 8608 bytes','zm_rtp_source.cpp',345),(1510771793.016507,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 8681, 0 bytes','zm_rtp_source.cpp',336),(1510771793.889636,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771793.894928,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 8702, 12910 bytes','zm_rtp_source.cpp',345),(1510771799.888365,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771799.891190,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 8856, 14344 bytes','zm_rtp_source.cpp',345),(1510771799.893723,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 8856, 0 bytes','zm_rtp_source.cpp',336),(1510771800.530169,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771800.535648,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 8873, 12910 bytes','zm_rtp_source.cpp',345),(1510771806.702107,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771806.705410,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 9032, 4306 bytes','zm_rtp_source.cpp',345),(1510771806.707095,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 9032, 0 bytes','zm_rtp_source.cpp',336),(1510771807.182324,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771807.187799,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 9043, 8608 bytes','zm_rtp_source.cpp',345),(1510771807.192965,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 9043, 0 bytes','zm_rtp_source.cpp',336),(1510771807.648664,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771807.654408,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 9054, 2872 bytes','zm_rtp_source.cpp',345),(1510771807.659713,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 9054, 0 bytes','zm_rtp_source.cpp',336),(1510771807.929126,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771807.934735,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 9060, 7174 bytes','zm_rtp_source.cpp',345),(1510771807.939951,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 9060, 0 bytes','zm_rtp_source.cpp',336),(1510771808.055257,'zmc_m1',0,5701,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771808.058420,'zmc_m1',0,5701,-1,'WAR','Discarding partial frame 9064, 53062 bytes','zm_rtp_source.cpp',345),(1510771808.064864,'zmc_m1',0,5701,-1,'WAR','Discarding incomplete frame 9064, 0 bytes','zm_rtp_source.cpp',336),(1510771819.631287,'zmc_m1',0,5684,0,'INF','Monitor-1: 9000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510771828.139590,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771828.220880,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771828.298740,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' sending stop to pid 5684 at 17/11/15 20:50:28','zmdc.pl',NULL),(1510771828.301797,'zmc_m1',0,5684,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771833.466920,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' exited normally','zmdc.pl',NULL),(1510771833.551600,'zmdc',NULL,5875,0,'INF','\'zmc -m 1\' started at 17/11/15 20:50:33','zmdc.pl',NULL),(1510771833.551540,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:50:33, pid = 5875','zmdc.pl',NULL),(1510771833.593750,'zmdc',NULL,5513,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510771833.597010,'zmdc',NULL,5513,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510771833.600930,'zmdc',NULL,5879,0,'INF','\'zmc -m 1\' started at 17/11/15 20:50:33','zmdc.pl',NULL),(1510771833.600930,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:50:33, pid = 5879','zmdc.pl',NULL),(1510771833.644790,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771833.725180,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771833.758411,'zmc_m1',0,5879,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510771834.822591,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771834.828275,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 2, 2872 bytes','zm_rtp_source.cpp',345),(1510771834.833793,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771834.839379,'zmc_m1',0,5894,-1,'WAR','Discarding frame 2','zm_rtp_source.cpp',349),(1510771834.844720,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 2, 0 bytes','zm_rtp_source.cpp',336),(1510771835.769053,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771835.774980,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 26, 11476 bytes','zm_rtp_source.cpp',345),(1510771836.233381,'zms',0,5900,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510771836.236014,'zms',0,5900,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510771836.738567,'zms',0,5900,-2,'ERR','Terminating, last frame sent time 1510771836.238502 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510771839.129459,'web_php',NULL,5577,-2,'ERR','Socket /var/run/zm/zms-333437s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771839.150196,'web_js',NULL,5577,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-333437s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510771839.185765,'zms',0,5901,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510771839.188674,'zms',0,5901,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510771842.027970,'zmcontrol',NULL,5903,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771842.059990,'zmcontrol',NULL,5905,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:42','zmcontrol.pl',NULL),(1510771843.069010,'zmcontrol',NULL,5905,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771847.572320,'zmcontrol',NULL,5909,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771847.593960,'zmcontrol',NULL,5911,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:47','zmcontrol.pl',NULL),(1510771848.603050,'zmcontrol',NULL,5911,-3,'FAT','Can\'t access moveRelLeft member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771850.420550,'zmcontrol',NULL,5913,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771850.442190,'zmcontrol',NULL,5915,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:50','zmcontrol.pl',NULL),(1510771851.451620,'zmcontrol',NULL,5915,-3,'FAT','Can\'t access moveRelLeft member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771852.081120,'zmcontrol',NULL,5917,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771852.103300,'zmcontrol',NULL,5919,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:52','zmcontrol.pl',NULL),(1510771853.111440,'zmcontrol',NULL,5919,-3,'FAT','Can\'t access moveRelLeft member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771853.765120,'zmcontrol',NULL,5921,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771853.789630,'zmcontrol',NULL,5923,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:53','zmcontrol.pl',NULL),(1510771854.253930,'zmcontrol',NULL,5923,-3,'FAT','Can\'t access moveRelLeft member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771854.649930,'zmcontrol',NULL,5925,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771854.673540,'zmcontrol',NULL,5927,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:54','zmcontrol.pl',NULL),(1510771854.806680,'zmcontrol',NULL,5927,-3,'FAT','Can\'t access moveRelLeft member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771854.929260,'zmcontrol',NULL,5929,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771854.950250,'zmcontrol',NULL,5931,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:54','zmcontrol.pl',NULL),(1510771855.044210,'zmcontrol',NULL,5931,-3,'FAT','Can\'t access moveRelLeft member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771855.842480,'zmcontrol',NULL,5934,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771855.866630,'zmcontrol',NULL,5936,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:55','zmcontrol.pl',NULL),(1510771855.958530,'zmcontrol',NULL,5936,-3,'FAT','Can\'t access moveRelLeft member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771856.438450,'zmcontrol',NULL,5939,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771856.462740,'zmcontrol',NULL,5941,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:56','zmcontrol.pl',NULL),(1510771856.681820,'zmcontrol',NULL,5941,-3,'FAT','Can\'t access moveRelLeft member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771856.807820,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771856.813373,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 573, 2872 bytes','zm_rtp_source.cpp',345),(1510771856.818152,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 573, 0 bytes','zm_rtp_source.cpp',336),(1510771858.443760,'zmcontrol',NULL,5944,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771858.465650,'zmcontrol',NULL,5946,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:58','zmcontrol.pl',NULL),(1510771858.875230,'zmcontrol',NULL,5946,-3,'FAT','Can\'t access moveRelDown member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771859.072760,'zmcontrol',NULL,5988,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771859.097640,'zmcontrol',NULL,5991,0,'INF','Control server 1/Floureon starting at 17/11/15 20:50:59','zmcontrol.pl',NULL),(1510771859.470720,'zmcontrol',NULL,5991,-3,'FAT','Can\'t access moveRelDown member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771860.154680,'zmcontrol',NULL,6023,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771860.180790,'zmcontrol',NULL,6025,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:00','zmcontrol.pl',NULL),(1510771860.620730,'zmcontrol',NULL,6025,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771862.162980,'zmcontrol',NULL,6027,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771862.184970,'zmcontrol',NULL,6029,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:02','zmcontrol.pl',NULL),(1510771863.107620,'zmcontrol',NULL,6029,-3,'FAT','Can\'t access moveRelRight member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771864.074230,'zmcontrol',NULL,6031,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771864.095940,'zmcontrol',NULL,6033,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:04','zmcontrol.pl',NULL),(1510771864.189350,'zmcontrol',NULL,6033,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771866.226580,'zmcontrol',NULL,6035,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771866.251910,'zmcontrol',NULL,6037,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:06','zmcontrol.pl',NULL),(1510771866.594150,'zmcontrol',NULL,6037,-3,'FAT','Can\'t access moveRelDown member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771867.401591,'web_php',NULL,2984,-2,'ERR','Invalid control parameter: Near','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510771867.506770,'zmcontrol',NULL,6039,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771867.534200,'zmcontrol',NULL,6041,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:07','zmcontrol.pl',NULL),(1510771868.104260,'zmcontrol',NULL,6041,-3,'FAT','Can\'t access moveRelDown member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771868.405112,'web_php',NULL,5643,-2,'ERR','Invalid control parameter: Far','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510771868.506730,'zmcontrol',NULL,6043,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771868.529070,'zmcontrol',NULL,6045,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:08','zmcontrol.pl',NULL),(1510771868.541900,'zmcontrol',NULL,6045,-3,'FAT','Can\'t access Near member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771869.448688,'web_php',NULL,5898,-2,'ERR','Invalid control parameter: Tele','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510771869.549110,'zmcontrol',NULL,6047,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771869.571990,'zmcontrol',NULL,6049,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:09','zmcontrol.pl',NULL),(1510771870.168032,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771870.171007,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 918, 4306 bytes','zm_rtp_source.cpp',345),(1510771870.173647,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 918, 0 bytes','zm_rtp_source.cpp',336),(1510771870.178015,'web_php',NULL,5659,-2,'ERR','Invalid control parameter: Wide','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510771870.185150,'zmcontrol',NULL,6049,-3,'FAT','Can\'t access Wide member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771871.341194,'web_php',NULL,5659,-2,'ERR','Invalid control parameter: Wide','/usr/share/zoneminder/www/includes/control_functions.php',282),(1510771871.437010,'zmcontrol',NULL,6051,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771871.458500,'zmcontrol',NULL,6053,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:11','zmcontrol.pl',NULL),(1510771871.538530,'zmcontrol',NULL,6053,-3,'FAT','Can\'t access Far member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771872.424470,'zmcontrol',NULL,6056,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771872.447960,'zmcontrol',NULL,6058,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:12','zmcontrol.pl',NULL),(1510771872.465950,'zmcontrol',NULL,6058,-3,'FAT','Can\'t access Wide member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771875.304310,'zmcontrol',NULL,6060,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771875.325670,'zmcontrol',NULL,6062,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:15','zmcontrol.pl',NULL),(1510771875.457940,'zmcontrol',NULL,6062,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771875.624840,'zmcontrol',NULL,6064,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771875.646020,'zmcontrol',NULL,6066,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:15','zmcontrol.pl',NULL),(1510771875.994720,'zmcontrol',NULL,6066,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771876.253010,'zmcontrol',NULL,6035,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771876.261983,'web_php',NULL,5577,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=4 --tiltstep=48 --command=moveRelDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771876.612930,'zmcontrol',NULL,6069,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771876.637360,'zmcontrol',NULL,6071,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:16','zmcontrol.pl',NULL),(1510771876.882881,'zmc_m1',0,5879,0,'INF','Monitor-1: 1000 - Capturing at 23.26 fps','zm_monitor.cpp',3125),(1510771877.334700,'zmcontrol',NULL,6071,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771877.528360,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771877.533463,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 1109, 12910 bytes','zm_rtp_source.cpp',345),(1510771877.890400,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771877.893229,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 1117, 11476 bytes','zm_rtp_source.cpp',345),(1510771877.894802,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 1117, 0 bytes','zm_rtp_source.cpp',336),(1510771879.573120,'zmcontrol',NULL,6047,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771879.581952,'web_php',NULL,5898,-2,'ERR','/usr/bin/zmcontrol.pl --command=Tele --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771880.242540,'zmcontrol',NULL,6073,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771880.276880,'zmcontrol',NULL,6075,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:20','zmcontrol.pl',NULL),(1510771880.477200,'zmcontrol',NULL,6075,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771880.780920,'zmcontrol',NULL,6077,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771880.803000,'zmcontrol',NULL,6079,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:20','zmcontrol.pl',NULL),(1510771881.285600,'zmcontrol',NULL,6079,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771882.076980,'zmcontrol',NULL,6081,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771882.098880,'zmcontrol',NULL,6083,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:22','zmcontrol.pl',NULL),(1510771882.298650,'zmcontrol',NULL,6083,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771882.533150,'zmcontrol',NULL,6085,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771882.555670,'zmcontrol',NULL,6087,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:22','zmcontrol.pl',NULL),(1510771882.630720,'zmcontrol',NULL,6087,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771882.842660,'zmcontrol',NULL,6091,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771882.875250,'zmcontrol',NULL,6093,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:22','zmcontrol.pl',NULL),(1510771882.893130,'zmcontrol',NULL,6093,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771883.135150,'zmcontrol',NULL,6095,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771883.158780,'zmcontrol',NULL,6098,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:23','zmcontrol.pl',NULL),(1510771883.259770,'zmcontrol',NULL,6098,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771883.411140,'zmcontrol',NULL,6106,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771883.432340,'zmcontrol',NULL,6108,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:23','zmcontrol.pl',NULL),(1510771883.475930,'zmcontrol',NULL,6108,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771883.967743,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771883.970559,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 1274, 5740 bytes','zm_rtp_source.cpp',345),(1510771883.973092,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 1274, 0 bytes','zm_rtp_source.cpp',336),(1510771884.527145,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771884.531539,'zmc_m1',0,5894,-1,'WAR','Discarding frame 1287','zm_rtp_source.cpp',349),(1510771884.536368,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 1287, 0 bytes','zm_rtp_source.cpp',336),(1510771884.770605,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771884.776207,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 1294, 7174 bytes','zm_rtp_source.cpp',345),(1510771884.783473,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 1294, 0 bytes','zm_rtp_source.cpp',336),(1510771885.087548,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771885.091706,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 1301, 4306 bytes','zm_rtp_source.cpp',345),(1510771885.094317,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 1301, 0 bytes','zm_rtp_source.cpp',336),(1510771885.647100,'zmcontrol',NULL,6064,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771885.653134,'web_php',NULL,5079,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=4 --tiltstep=52 --command=moveRelUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771890.204530,'zmcontrol',NULL,6115,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771890.229500,'zmcontrol',NULL,6117,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:30','zmcontrol.pl',NULL),(1510771890.440810,'zmcontrol',NULL,6117,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771890.804150,'zmcontrol',NULL,6077,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771890.811083,'web_php',NULL,2991,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=5 --tiltstep=74 --command=moveRelUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771892.100060,'zmcontrol',NULL,6081,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771892.108258,'web_php',NULL,5643,-2,'ERR','/usr/bin/zmcontrol.pl --command=presetHome --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771892.556790,'zmcontrol',NULL,6085,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771892.565042,'web_php',NULL,5659,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=5 --tiltstep=71 --command=moveRelUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771892.876960,'zmcontrol',NULL,6091,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771892.882955,'web_php',NULL,2976,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=3 --tiltstep=32 --command=moveRelUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771893.160140,'zmcontrol',NULL,6095,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771893.165983,'web_php',NULL,5577,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=3 --tiltstep=32 --command=moveRelUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771894.947690,'zmcontrol',NULL,6130,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771894.971930,'zmcontrol',NULL,6132,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:34','zmcontrol.pl',NULL),(1510771895.238020,'zmcontrol',NULL,6132,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771898.846911,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771898.849799,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 1658, 1438 bytes','zm_rtp_source.cpp',345),(1510771898.851173,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 1658, 0 bytes','zm_rtp_source.cpp',336),(1510771899.047565,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771899.052183,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 1662, 10042 bytes','zm_rtp_source.cpp',345),(1510771899.057009,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 1662, 0 bytes','zm_rtp_source.cpp',336),(1510771899.581570,'zmcontrol',NULL,6134,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771899.610160,'zmcontrol',NULL,6136,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:39','zmcontrol.pl',NULL),(1510771899.632050,'zmcontrol',NULL,6136,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771899.873360,'zmcontrol',NULL,6138,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771899.898100,'zmcontrol',NULL,6140,0,'INF','Control server 1/Floureon starting at 17/11/15 20:51:39','zmcontrol.pl',NULL),(1510771899.933780,'zmcontrol',NULL,6140,-3,'FAT','Can\'t access moveRelUp member of object of class ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510771903.210564,'zms',0,5901,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771904.973000,'zmcontrol',NULL,6130,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771904.978452,'web_php',NULL,2984,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=4 --tiltstep=54 --command=moveRelDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771905.409811,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771905.415181,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 1826, 7174 bytes','zm_rtp_source.cpp',345),(1510771905.420126,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 1826, 0 bytes','zm_rtp_source.cpp',336),(1510771906.047015,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771906.053200,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 1841, 1438 bytes','zm_rtp_source.cpp',345),(1510771906.058585,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 1841, 0 bytes','zm_rtp_source.cpp',336),(1510771906.088407,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771906.093932,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 1841, 8608 bytes','zm_rtp_source.cpp',345),(1510771906.099179,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 1841, 0 bytes','zm_rtp_source.cpp',336),(1510771906.805729,'zms',0,6144,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510771906.808165,'zms',0,6144,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510771909.260623,'zms',0,6144,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771909.611360,'zmcontrol',NULL,6134,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771909.617096,'web_php',NULL,6097,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=3 --tiltstep=29 --command=moveRelUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771909.899380,'zmcontrol',NULL,6138,-3,'FAT','Can\'t connect: Connection refused after 11 attempts to /var/run/zm/zmcontrol-1.sock','zmcontrol.pl',NULL),(1510771909.905268,'web_php',NULL,6110,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=3 --tiltstep=29 --command=moveRelUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510771917.329223,'zmc_m1',0,5879,0,'INF','Monitor-1: 2000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510771919.087137,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771919.093840,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 2179, 7174 bytes','zm_rtp_source.cpp',345),(1510771919.097668,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 2179, 0 bytes','zm_rtp_source.cpp',336),(1510771926.207225,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771926.212340,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 2362, 8608 bytes','zm_rtp_source.cpp',345),(1510771926.217435,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 2362, 0 bytes','zm_rtp_source.cpp',336),(1510771926.686941,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771926.689862,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 2373, 5740 bytes','zm_rtp_source.cpp',345),(1510771926.691241,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 2373, 0 bytes','zm_rtp_source.cpp',336),(1510771927.087516,'zmc_m1',0,5894,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771927.093138,'zmc_m1',0,5894,-1,'WAR','Discarding partial frame 2384, 2872 bytes','zm_rtp_source.cpp',345),(1510771927.098586,'zmc_m1',0,5894,-1,'WAR','Discarding incomplete frame 2384, 0 bytes','zm_rtp_source.cpp',336),(1510771929.266130,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771929.346610,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771929.436650,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' sending stop to pid 5879 at 17/11/15 20:52:09','zmdc.pl',NULL),(1510771929.442668,'zmc_m1',0,5879,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510771934.506830,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' exited normally','zmdc.pl',NULL),(1510771934.587010,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:52:14, pid = 6163','zmdc.pl',NULL),(1510771934.587010,'zmdc',NULL,6163,0,'INF','\'zmc -m 1\' started at 17/11/15 20:52:14','zmdc.pl',NULL),(1510771934.622510,'zmdc',NULL,5513,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510771934.627790,'zmdc',NULL,5513,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510771934.633910,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:52:14, pid = 6167','zmdc.pl',NULL),(1510771934.633910,'zmdc',NULL,6167,0,'INF','\'zmc -m 1\' started at 17/11/15 20:52:14','zmdc.pl',NULL),(1510771934.670980,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510771934.755080,'zmdc',NULL,5513,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510771934.806390,'zmc_m1',0,6167,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510771940.480162,'zms',0,6188,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510771940.485893,'zms',0,6188,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510771944.157890,'zmcontrol',NULL,6190,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510771944.191410,'zmcontrol',NULL,6192,0,'INF','Control server 1/Floureon starting at 17/11/15 20:52:24','zmcontrol.pl',NULL),(1510771947.626637,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 3','zm_rtp_source.cpp',127),(1510771947.629620,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 308, 1438 bytes','zm_rtp_source.cpp',345),(1510771947.631169,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 308, 0 bytes','zm_rtp_source.cpp',336),(1510771961.097170,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771961.100001,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 658, 5740 bytes','zm_rtp_source.cpp',345),(1510771961.102955,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 658, 0 bytes','zm_rtp_source.cpp',336),(1510771977.325764,'zmc_m1',0,6167,0,'INF','Monitor-1: 1000 - Capturing at 23.26 fps','zm_monitor.cpp',3125),(1510771983.228775,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771983.234207,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 1196, 8608 bytes','zm_rtp_source.cpp',345),(1510771983.237419,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771983.238692,'zmc_m1',0,6182,-1,'WAR','Discarding frame 1196','zm_rtp_source.cpp',349),(1510771983.241115,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 1196, 0 bytes','zm_rtp_source.cpp',336),(1510771996.385295,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771996.390492,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 1536, 2872 bytes','zm_rtp_source.cpp',345),(1510771996.395885,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 1536, 0 bytes','zm_rtp_source.cpp',336),(1510771996.946039,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771996.951606,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 1549, 10042 bytes','zm_rtp_source.cpp',345),(1510771996.957297,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 1549, 0 bytes','zm_rtp_source.cpp',336),(1510771997.025935,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771997.031441,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 1550, 7174 bytes','zm_rtp_source.cpp',345),(1510771997.036767,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 1550, 0 bytes','zm_rtp_source.cpp',336),(1510771997.265438,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510771997.268405,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 1556, 64534 bytes','zm_rtp_source.cpp',345),(1510771997.278936,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 1556, 0 bytes','zm_rtp_source.cpp',336),(1510772003.625773,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772003.631330,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 1721, 7174 bytes','zm_rtp_source.cpp',345),(1510772003.634903,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 1721, 0 bytes','zm_rtp_source.cpp',336),(1510772004.026440,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772004.029193,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 1730, 11476 bytes','zm_rtp_source.cpp',345),(1510772010.025242,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772010.030365,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 1885, 1438 bytes','zm_rtp_source.cpp',345),(1510772010.036177,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 1885, 0 bytes','zm_rtp_source.cpp',336),(1510772017.145356,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772017.150956,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2068, 1438 bytes','zm_rtp_source.cpp',345),(1510772017.156126,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2068, 0 bytes','zm_rtp_source.cpp',336),(1510772017.636210,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772017.642061,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2081, 5740 bytes','zm_rtp_source.cpp',345),(1510772017.647328,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2081, 0 bytes','zm_rtp_source.cpp',336),(1510772017.735828,'zmc_m1',0,6167,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772017.801647,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772017.807121,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2084, 2872 bytes','zm_rtp_source.cpp',345),(1510772017.810314,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2084, 0 bytes','zm_rtp_source.cpp',336),(1510772017.826568,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772017.829474,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2084, 2872 bytes','zm_rtp_source.cpp',345),(1510772017.831149,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2084, 0 bytes','zm_rtp_source.cpp',336),(1510772017.865774,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772017.869087,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2084, 5740 bytes','zm_rtp_source.cpp',345),(1510772017.870861,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2084, 0 bytes','zm_rtp_source.cpp',336),(1510772017.946207,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772017.949075,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2085, 10042 bytes','zm_rtp_source.cpp',345),(1510772017.950367,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2085, 0 bytes','zm_rtp_source.cpp',336),(1510772018.145911,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772018.151316,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2089, 10042 bytes','zm_rtp_source.cpp',345),(1510772018.156385,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2089, 0 bytes','zm_rtp_source.cpp',336),(1510772018.305597,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772018.310730,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2092, 8608 bytes','zm_rtp_source.cpp',345),(1510772018.315497,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2092, 0 bytes','zm_rtp_source.cpp',336),(1510772025.261344,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772025.264407,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2272, 139102 bytes','zm_rtp_source.cpp',345),(1510772025.267378,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772025.270471,'zmc_m1',0,6182,-1,'WAR','Discarding frame 2272','zm_rtp_source.cpp',349),(1510772025.273668,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2272, 0 bytes','zm_rtp_source.cpp',336),(1510772031.596958,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772031.602053,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2436, 10042 bytes','zm_rtp_source.cpp',345),(1510772039.276000,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772039.279040,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2634, 73138 bytes','zm_rtp_source.cpp',345),(1510772039.291874,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2634, 0 bytes','zm_rtp_source.cpp',336),(1510772045.282680,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772045.288329,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2790, 4306 bytes','zm_rtp_source.cpp',345),(1510772045.293746,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2790, 0 bytes','zm_rtp_source.cpp',336),(1510772045.717305,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772045.722700,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2800, 14344 bytes','zm_rtp_source.cpp',345),(1510772045.725554,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772045.727220,'zmc_m1',0,6182,-1,'WAR','Discarding frame 2800','zm_rtp_source.cpp',349),(1510772045.729787,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2800, 0 bytes','zm_rtp_source.cpp',336),(1510772045.955600,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772045.958321,'zmc_m1',0,6182,-1,'WAR','Discarding frame 2805','zm_rtp_source.cpp',349),(1510772045.961021,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2805, 0 bytes','zm_rtp_source.cpp',336),(1510772052.275826,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772052.278988,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 2968, 5740 bytes','zm_rtp_source.cpp',345),(1510772052.281689,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 2968, 0 bytes','zm_rtp_source.cpp',336),(1510772057.833851,'zms',0,6188,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510772058.251433,'zmc_m1',0,6167,0,'INF','Monitor-1: 3000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510772059.274625,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772059.280260,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3149, 207934 bytes','zm_rtp_source.cpp',345),(1510772059.285572,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3149, 0 bytes','zm_rtp_source.cpp',336),(1510772060.475973,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772060.479222,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3179, 10042 bytes','zm_rtp_source.cpp',345),(1510772073.359971,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772073.365092,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3514, 2872 bytes','zm_rtp_source.cpp',345),(1510772073.370513,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3514, 0 bytes','zm_rtp_source.cpp',336),(1510772073.449636,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772073.455445,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3515, 1438 bytes','zm_rtp_source.cpp',345),(1510772073.461312,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3515, 0 bytes','zm_rtp_source.cpp',336),(1510772073.556216,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772073.561719,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3517, 8608 bytes','zm_rtp_source.cpp',345),(1510772073.565184,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3517, 0 bytes','zm_rtp_source.cpp',336),(1510772074.195002,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772074.200239,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3531, 11476 bytes','zm_rtp_source.cpp',345),(1510772074.205523,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3531, 0 bytes','zm_rtp_source.cpp',336),(1510772080.556256,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772080.561847,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3695, 8608 bytes','zm_rtp_source.cpp',345),(1510772080.567438,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3695, 0 bytes','zm_rtp_source.cpp',336),(1510772080.675362,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772080.682395,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3697, 7174 bytes','zm_rtp_source.cpp',345),(1510772080.689129,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3697, 0 bytes','zm_rtp_source.cpp',336),(1510772080.755618,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772080.762133,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3698, 5740 bytes','zm_rtp_source.cpp',345),(1510772080.765515,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3698, 0 bytes','zm_rtp_source.cpp',336),(1510772080.914866,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 3','zm_rtp_source.cpp',127),(1510772080.917868,'zmc_m1',0,6182,-1,'WAR','Discarding frame 3701','zm_rtp_source.cpp',349),(1510772080.920958,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3701, 0 bytes','zm_rtp_source.cpp',336),(1510772081.195004,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772081.197969,'zmc_m1',0,6182,-1,'WAR','Discarding frame 3707','zm_rtp_source.cpp',349),(1510772081.200702,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3707, 0 bytes','zm_rtp_source.cpp',336),(1510772081.271374,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772081.274395,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3709, 197896 bytes','zm_rtp_source.cpp',345),(1510772081.278595,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3709, 0 bytes','zm_rtp_source.cpp',336),(1510772081.283757,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772081.288754,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 3709, 1438 bytes','zm_rtp_source.cpp',345),(1510772081.293989,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 3709, 0 bytes','zm_rtp_source.cpp',336),(1510772098.825801,'zmc_m1',0,6167,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772101.864210,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772101.867394,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 4243, 7174 bytes','zm_rtp_source.cpp',345),(1510772101.868918,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 4243, 0 bytes','zm_rtp_source.cpp',336),(1510772108.915161,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772108.920741,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 4424, 8608 bytes','zm_rtp_source.cpp',345),(1510772108.925845,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 4424, 0 bytes','zm_rtp_source.cpp',336),(1510772115.544170,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772115.549557,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 4597, 5740 bytes','zm_rtp_source.cpp',345),(1510772115.554873,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 4597, 0 bytes','zm_rtp_source.cpp',336),(1510772122.783782,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772122.789046,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 4785, 7174 bytes','zm_rtp_source.cpp',345),(1510772122.791999,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 4785, 0 bytes','zm_rtp_source.cpp',336),(1510772123.306106,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772123.312709,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 4798, 97516 bytes','zm_rtp_source.cpp',345),(1510772123.319805,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 4798, 0 bytes','zm_rtp_source.cpp',336),(1510772129.543856,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772129.548445,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 4960, 8608 bytes','zm_rtp_source.cpp',345),(1510772129.553296,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 4960, 0 bytes','zm_rtp_source.cpp',336),(1510772136.703384,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772136.706544,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 5144, 5740 bytes','zm_rtp_source.cpp',345),(1510772136.709174,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 5144, 0 bytes','zm_rtp_source.cpp',336),(1510772137.504078,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772137.509666,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 5165, 11476 bytes','zm_rtp_source.cpp',345),(1510772139.136423,'zmc_m1',0,6167,0,'INF','Monitor-1: 5000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510772144.103851,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772144.107403,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 5335, 8608 bytes','zm_rtp_source.cpp',345),(1510772144.109890,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 5335, 0 bytes','zm_rtp_source.cpp',336),(1510772144.143786,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772144.147127,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 5335, 5740 bytes','zm_rtp_source.cpp',345),(1510772144.150088,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 5335, 0 bytes','zm_rtp_source.cpp',336),(1510772164.858844,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772164.862530,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 5872, 1438 bytes','zm_rtp_source.cpp',345),(1510772164.865569,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 5872, 0 bytes','zm_rtp_source.cpp',336),(1510772165.302971,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772165.309155,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 5883, 64534 bytes','zm_rtp_source.cpp',345),(1510772165.315190,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772165.320182,'zmc_m1',0,6182,-1,'WAR','Discarding frame 5883','zm_rtp_source.cpp',349),(1510772165.325777,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 5883, 0 bytes','zm_rtp_source.cpp',336),(1510772165.743188,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772165.749005,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 5894, 8608 bytes','zm_rtp_source.cpp',345),(1510772165.754023,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 5894, 0 bytes','zm_rtp_source.cpp',336),(1510772179.297272,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772179.300298,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 6245, 126196 bytes','zm_rtp_source.cpp',345),(1510772179.302931,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 6245, 0 bytes','zm_rtp_source.cpp',336),(1510772179.365605,'zmc_m1',0,6167,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772186.354058,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772186.356817,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 6427, 8608 bytes','zm_rtp_source.cpp',345),(1510772186.359376,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 6427, 0 bytes','zm_rtp_source.cpp',336),(1510772194.033478,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772194.036844,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 6626, 7174 bytes','zm_rtp_source.cpp',345),(1510772194.039682,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 6626, 0 bytes','zm_rtp_source.cpp',336),(1510772200.074214,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772200.077905,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 6782, 10042 bytes','zm_rtp_source.cpp',345),(1510772206.792853,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772206.795508,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 6955, 1438 bytes','zm_rtp_source.cpp',345),(1510772206.798036,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 6955, 0 bytes','zm_rtp_source.cpp',336),(1510772206.913106,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772206.919081,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 6957, 1438 bytes','zm_rtp_source.cpp',345),(1510772206.924546,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 6957, 0 bytes','zm_rtp_source.cpp',336),(1510772207.289727,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772207.295811,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 6967, 93214 bytes','zm_rtp_source.cpp',345),(1510772207.303061,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 6967, 0 bytes','zm_rtp_source.cpp',336),(1510772207.422494,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772207.427892,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 6970, 2872 bytes','zm_rtp_source.cpp',345),(1510772207.432639,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 6970, 0 bytes','zm_rtp_source.cpp',336),(1510772219.642844,'zmc_m1',0,6167,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772227.902557,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772227.905997,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 7501, 10042 bytes','zm_rtp_source.cpp',345),(1510772227.908966,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 7501, 0 bytes','zm_rtp_source.cpp',336),(1510772229.222858,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772229.225987,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 7533, 8608 bytes','zm_rtp_source.cpp',345),(1510772229.228502,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 7533, 0 bytes','zm_rtp_source.cpp',336),(1510772235.102026,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772235.106818,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 7685, 2872 bytes','zm_rtp_source.cpp',345),(1510772235.111932,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 7685, 0 bytes','zm_rtp_source.cpp',336),(1510772235.582379,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772235.588370,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 7698, 7174 bytes','zm_rtp_source.cpp',345),(1510772235.593806,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 7698, 0 bytes','zm_rtp_source.cpp',336),(1510772235.982150,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772235.985013,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 7707, 8608 bytes','zm_rtp_source.cpp',345),(1510772235.986326,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 7707, 0 bytes','zm_rtp_source.cpp',336),(1510772236.222186,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772236.225142,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 7712, 5740 bytes','zm_rtp_source.cpp',345),(1510772236.231009,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 7712, 0 bytes','zm_rtp_source.cpp',336),(1510772249.302853,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772249.306237,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 8051, 80308 bytes','zm_rtp_source.cpp',345),(1510772249.315632,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 8051, 0 bytes','zm_rtp_source.cpp',336),(1510772256.582344,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772256.585700,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 8239, 5740 bytes','zm_rtp_source.cpp',345),(1510772256.587083,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 8239, 0 bytes','zm_rtp_source.cpp',336),(1510772256.741288,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772256.744406,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 8242, 1438 bytes','zm_rtp_source.cpp',345),(1510772256.749593,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772256.754999,'zmc_m1',0,6182,-1,'WAR','Discarding frame 8242','zm_rtp_source.cpp',349),(1510772256.759990,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 8242, 0 bytes','zm_rtp_source.cpp',336),(1510772257.298036,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772257.303817,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 8256, 140536 bytes','zm_rtp_source.cpp',345),(1510772257.309012,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772257.314199,'zmc_m1',0,6182,-1,'WAR','Discarding frame 8256','zm_rtp_source.cpp',349),(1510772257.319201,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 8256, 0 bytes','zm_rtp_source.cpp',336),(1510772260.042429,'zmc_m1',0,6167,0,'INF','Monitor-1: 8000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510772262.941578,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772262.947346,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 8401, 7174 bytes','zm_rtp_source.cpp',345),(1510772262.952646,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 8401, 0 bytes','zm_rtp_source.cpp',336),(1510772263.316372,'zmc_m1',0,6182,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772263.319503,'zmc_m1',0,6182,-1,'WAR','Discarding partial frame 8411, 1438 bytes','zm_rtp_source.cpp',345),(1510772263.322536,'zmc_m1',0,6182,-1,'WAR','Discarding incomplete frame 8411, 0 bytes','zm_rtp_source.cpp',336),(1510772276.621010,'zmpkg',NULL,6355,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772276.625150,'zmpkg',NULL,6355,0,'INF','Command: restart','zmpkg.pl',NULL),(1510772276.723810,'zmsystemctl',NULL,6361,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510772276.802400,'zmpkg',NULL,6365,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772276.807600,'zmpkg',NULL,6365,0,'INF','Command: stop','zmpkg.pl',NULL),(1510772276.985200,'zmdc',NULL,5513,0,'INF','\'zmtelemetry.pl\' sending stop to pid 5563 at 17/11/15 20:57:56','zmdc.pl',NULL),(1510772276.990840,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' sending stop to pid 6167 at 17/11/15 20:57:56','zmdc.pl',NULL),(1510772276.996210,'zmdc',NULL,5513,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510772277.001441,'zmc_m1',0,6167,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510772277.001470,'zmdc',NULL,5513,0,'INF','\'zmfilter.pl\' sending stop to pid 5546 at 17/11/15 20:57:56','zmdc.pl',NULL),(1510772277.011710,'zmdc',NULL,5513,0,'INF','\'zmaudit.pl -c\' sending stop to pid 5551 at 17/11/15 20:57:57','zmdc.pl',NULL),(1510772277.016820,'zmdc',NULL,5513,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510772277.021110,'zmdc',NULL,5513,0,'INF','\'zmwatch.pl\' sending stop to pid 5556 at 17/11/15 20:57:57','zmdc.pl',NULL),(1510772277.024220,'zmdc',NULL,5513,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510772277.027780,'zmdc',NULL,5513,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510772282.031320,'zmdc',NULL,5513,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 20:58:02. Sending KILL to pid 6167','zmdc.pl',NULL),(1510772282.072960,'zmdc',NULL,5513,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510772292.170190,'zmdc',NULL,5513,0,'INF','Server shutdown at 17/11/15 20:58:12','zmdc.pl',NULL),(1510772292.274330,'zmpkg',NULL,6403,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772292.278600,'zmpkg',NULL,6403,0,'INF','Command: start','zmpkg.pl',NULL),(1510772292.447060,'zmdc',NULL,6417,0,'INF','Server starting at 17/11/15 20:58:12','zmdc.pl',NULL),(1510772295.453190,'zmpkg',NULL,6403,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510772295.553210,'zmdc',NULL,6417,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:58:15, pid = 6443','zmdc.pl',NULL),(1510772295.553220,'zmdc',NULL,6443,0,'INF','\'zmc -m 1\' started at 17/11/15 20:58:15','zmdc.pl',NULL),(1510772295.599250,'zmdc',NULL,6417,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510772295.603670,'zmdc',NULL,6417,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510772295.607550,'zmdc',NULL,6447,0,'INF','\'zmc -m 1\' started at 17/11/15 20:58:15','zmdc.pl',NULL),(1510772295.607540,'zmdc',NULL,6417,0,'INF','\'zmc -m 1\' starting at 17/11/15 20:58:15, pid = 6447','zmdc.pl',NULL),(1510772295.659410,'zmdc',NULL,6450,0,'INF','\'zmfilter.pl\' started at 17/11/15 20:58:15','zmdc.pl',NULL),(1510772295.659400,'zmdc',NULL,6417,0,'INF','\'zmfilter.pl\' starting at 17/11/15 20:58:15, pid = 6450','zmdc.pl',NULL),(1510772295.760060,'zmdc',NULL,6417,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 20:58:15, pid = 6455','zmdc.pl',NULL),(1510772295.760060,'zmdc',NULL,6455,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 20:58:15','zmdc.pl',NULL),(1510772295.781249,'zmc_m1',0,6447,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510772295.811410,'zmfilter',NULL,6450,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510772295.844720,'zmdc',NULL,6417,0,'INF','\'zmwatch.pl\' starting at 17/11/15 20:58:15, pid = 6460','zmdc.pl',NULL),(1510772295.844740,'zmdc',NULL,6460,0,'INF','\'zmwatch.pl\' started at 17/11/15 20:58:15','zmdc.pl',NULL),(1510772295.956520,'zmwatch',NULL,6460,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510772295.961970,'zmwatch',NULL,6460,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510772295.964870,'zmdc',NULL,6417,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 20:58:15, pid = 6467','zmdc.pl',NULL),(1510772295.964930,'zmdc',NULL,6467,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 20:58:15','zmdc.pl',NULL),(1510772298.768133,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772298.776161,'zmc_m1',0,6479,-1,'WAR','Discarding frame 52','zm_rtp_source.cpp',349),(1510772312.461382,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772312.464785,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 407, 7174 bytes','zm_rtp_source.cpp',345),(1510772312.468166,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 407, 0 bytes','zm_rtp_source.cpp',336),(1510772312.756646,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772312.762187,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 415, 14344 bytes','zm_rtp_source.cpp',345),(1510772312.781904,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772312.787368,'zmc_m1',0,6479,-1,'WAR','Discarding frame 415','zm_rtp_source.cpp',349),(1510772312.792744,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 415, 0 bytes','zm_rtp_source.cpp',336),(1510772319.149627,'zms',0,6492,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510772319.155014,'zms',0,6492,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510772336.916995,'zmc_m1',0,6447,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510772340.190593,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772340.193456,'zmc_m1',0,6479,-1,'WAR','Discarding frame 1126','zm_rtp_source.cpp',349),(1510772340.195072,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 1126, 0 bytes','zm_rtp_source.cpp',336),(1510772340.792560,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772340.798381,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 1141, 146272 bytes','zm_rtp_source.cpp',345),(1510772340.804117,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 1141, 0 bytes','zm_rtp_source.cpp',336),(1510772340.911607,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772340.917381,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 1144, 8608 bytes','zm_rtp_source.cpp',345),(1510772340.922562,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 1144, 0 bytes','zm_rtp_source.cpp',336),(1510772345.901297,'zms',0,6492,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510772347.350268,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772347.352890,'zmc_m1',0,6479,-1,'WAR','Discarding frame 1310','zm_rtp_source.cpp',349),(1510772347.353929,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 1310, 0 bytes','zm_rtp_source.cpp',336),(1510772348.591495,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772348.594595,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 1340, 11476 bytes','zm_rtp_source.cpp',345),(1510772353.970008,'zms',0,6497,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510772353.980307,'zms',0,6497,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510772367.908969,'zms',0,6497,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510772368.804005,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772368.807189,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 1865, 216538 bytes','zm_rtp_source.cpp',345),(1510772368.809917,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 1865, 0 bytes','zm_rtp_source.cpp',336),(1510772377.088965,'zmc_m1',0,6447,0,'INF','Monitor-1: 2000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510772383.111270,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772383.114664,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 2237, 10042 bytes','zm_rtp_source.cpp',345),(1510772389.990661,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772389.996233,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 2414, 5740 bytes','zm_rtp_source.cpp',345),(1510772390.002049,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 2414, 0 bytes','zm_rtp_source.cpp',336),(1510772396.796065,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772396.801296,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 2590, 195028 bytes','zm_rtp_source.cpp',345),(1510772396.806927,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 2590, 0 bytes','zm_rtp_source.cpp',336),(1510772397.619363,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772397.624854,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 2611, 1438 bytes','zm_rtp_source.cpp',345),(1510772397.630318,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 2611, 0 bytes','zm_rtp_source.cpp',336),(1510772417.248517,'zmc_m1',0,6447,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772417.389978,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772417.393257,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 3124, 5740 bytes','zm_rtp_source.cpp',345),(1510772417.394422,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 3124, 0 bytes','zm_rtp_source.cpp',336),(1510772418.589914,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772418.593118,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 3153, 1438 bytes','zm_rtp_source.cpp',345),(1510772418.594728,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 3153, 0 bytes','zm_rtp_source.cpp',336),(1510772424.778501,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772424.782417,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 3314, 54496 bytes','zm_rtp_source.cpp',345),(1510772424.803775,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 3314, 0 bytes','zm_rtp_source.cpp',336),(1510772425.619836,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772425.622588,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 3335, 10042 bytes','zm_rtp_source.cpp',345),(1510772431.429719,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772431.435603,'zmc_m1',0,6479,-1,'WAR','Discarding frame 3485','zm_rtp_source.cpp',349),(1510772431.440726,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772431.446300,'zmc_m1',0,6479,-1,'WAR','Discarding frame 3485','zm_rtp_source.cpp',349),(1510772431.452057,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 3485, 0 bytes','zm_rtp_source.cpp',336),(1510772439.499083,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772439.502076,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 3694, 7174 bytes','zm_rtp_source.cpp',345),(1510772439.504974,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 3694, 0 bytes','zm_rtp_source.cpp',336),(1510772439.738572,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772439.742767,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 3699, 1438 bytes','zm_rtp_source.cpp',345),(1510772439.748045,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 3699, 0 bytes','zm_rtp_source.cpp',336),(1510772452.935667,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772452.940860,'zmc_m1',0,6479,-1,'WAR','Discarding frame 4041','zm_rtp_source.cpp',349),(1510772452.945710,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 4041, 0 bytes','zm_rtp_source.cpp',336),(1510772457.559372,'zmc_m1',0,6447,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772460.538401,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772460.544047,'zmc_m1',0,6479,-1,'WAR','Discarding frame 4237','zm_rtp_source.cpp',349),(1510772460.549453,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 4237, 0 bytes','zm_rtp_source.cpp',336),(1510772466.776162,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772466.779356,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 4399, 37288 bytes','zm_rtp_source.cpp',345),(1510772466.791056,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772466.794054,'zmc_m1',0,6479,-1,'WAR','Discarding frame 4399','zm_rtp_source.cpp',349),(1510772466.803783,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 4399, 0 bytes','zm_rtp_source.cpp',336),(1510772467.030106,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772467.035084,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 4405, 10042 bytes','zm_rtp_source.cpp',345),(1510772488.040215,'zms',0,6552,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510772488.042821,'zms',0,6552,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510772488.217878,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772488.220638,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 4954, 1438 bytes','zm_rtp_source.cpp',345),(1510772488.224484,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 4954, 0 bytes','zm_rtp_source.cpp',336),(1510772494.803370,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772494.806549,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 5124, 229444 bytes','zm_rtp_source.cpp',345),(1510772494.809029,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 5124, 0 bytes','zm_rtp_source.cpp',336),(1510772497.761528,'zmc_m1',0,6447,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772502.804920,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772502.810331,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 5332, 1438 bytes','zm_rtp_source.cpp',345),(1510772502.815693,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 5332, 0 bytes','zm_rtp_source.cpp',336),(1510772506.741121,'zms',0,6552,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510772509.068149,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772509.073409,'zmc_m1',0,6479,-1,'WAR','Discarding frame 5494','zm_rtp_source.cpp',349),(1510772509.078517,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 5494, 0 bytes','zm_rtp_source.cpp',336),(1510772509.348334,'zmc_m1',0,6479,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772509.353254,'zmc_m1',0,6479,-1,'WAR','Discarding partial frame 5500, 2872 bytes','zm_rtp_source.cpp',345),(1510772509.358065,'zmc_m1',0,6479,-1,'WAR','Discarding incomplete frame 5500, 0 bytes','zm_rtp_source.cpp',336),(1510772530.344550,'zmpkg',NULL,6578,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772530.349790,'zmpkg',NULL,6578,0,'INF','Command: restart','zmpkg.pl',NULL),(1510772530.434060,'zmsystemctl',NULL,6584,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510772530.509460,'zmpkg',NULL,6588,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772530.513190,'zmpkg',NULL,6588,0,'INF','Command: stop','zmpkg.pl',NULL),(1510772530.681460,'zmdc',NULL,6417,0,'INF','\'zmfilter.pl\' sending stop to pid 6450 at 17/11/15 21:02:10','zmdc.pl',NULL),(1510772530.684550,'zmdc',NULL,6417,0,'INF','\'zmaudit.pl -c\' sending stop to pid 6455 at 17/11/15 21:02:10','zmdc.pl',NULL),(1510772530.687320,'zmdc',NULL,6417,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510772530.690320,'zmdc',NULL,6417,0,'INF','\'zmwatch.pl\' sending stop to pid 6460 at 17/11/15 21:02:10','zmdc.pl',NULL),(1510772530.694910,'zmdc',NULL,6417,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510772530.700490,'zmdc',NULL,6417,0,'INF','\'zmtelemetry.pl\' sending stop to pid 6467 at 17/11/15 21:02:10','zmdc.pl',NULL),(1510772530.706330,'zmdc',NULL,6417,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510772530.712370,'zmdc',NULL,6417,0,'INF','\'zmc -m 1\' sending stop to pid 6447 at 17/11/15 21:02:10','zmdc.pl',NULL),(1510772530.718180,'zmdc',NULL,6417,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510772530.724014,'zmc_m1',0,6447,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510772536.725110,'zmdc',NULL,6417,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 21:02:16. Sending KILL to pid 6447','zmdc.pl',NULL),(1510772536.751040,'zmdc',NULL,6417,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510772546.824930,'zmdc',NULL,6417,0,'INF','Server shutdown at 17/11/15 21:02:26','zmdc.pl',NULL),(1510772546.929580,'zmpkg',NULL,6625,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772546.933990,'zmpkg',NULL,6625,0,'INF','Command: start','zmpkg.pl',NULL),(1510772547.110730,'zmdc',NULL,6640,0,'INF','Server starting at 17/11/15 21:02:27','zmdc.pl',NULL),(1510772550.116930,'zmpkg',NULL,6625,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510772550.205790,'zmdc',NULL,6666,0,'INF','\'zmc -m 1\' started at 17/11/15 21:02:30','zmdc.pl',NULL),(1510772550.205790,'zmdc',NULL,6640,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:02:30, pid = 6666','zmdc.pl',NULL),(1510772550.243680,'zmdc',NULL,6640,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510772550.248760,'zmdc',NULL,6640,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510772550.255090,'zmdc',NULL,6640,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:02:30, pid = 6670','zmdc.pl',NULL),(1510772550.255090,'zmdc',NULL,6670,0,'INF','\'zmc -m 1\' started at 17/11/15 21:02:30','zmdc.pl',NULL),(1510772550.291270,'zmdc',NULL,6672,0,'INF','\'zmfilter.pl\' started at 17/11/15 21:02:30','zmdc.pl',NULL),(1510772550.291270,'zmdc',NULL,6640,0,'INF','\'zmfilter.pl\' starting at 17/11/15 21:02:30, pid = 6672','zmdc.pl',NULL),(1510772550.382260,'zmdc',NULL,6640,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 21:02:30, pid = 6678','zmdc.pl',NULL),(1510772550.382260,'zmdc',NULL,6678,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 21:02:30','zmdc.pl',NULL),(1510772550.418488,'zmc_m1',0,6670,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510772550.430670,'zmfilter',NULL,6672,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510772550.476180,'zmdc',NULL,6640,0,'INF','\'zmwatch.pl\' starting at 17/11/15 21:02:30, pid = 6683','zmdc.pl',NULL),(1510772550.476180,'zmdc',NULL,6683,0,'INF','\'zmwatch.pl\' started at 17/11/15 21:02:30','zmdc.pl',NULL),(1510772550.551120,'zmwatch',NULL,6683,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510772550.554360,'zmwatch',NULL,6683,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510772550.559370,'zmdc',NULL,6640,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 21:02:30, pid = 6690','zmdc.pl',NULL),(1510772550.559380,'zmdc',NULL,6690,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 21:02:30','zmdc.pl',NULL),(1510772551.553297,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772551.559081,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 2, 228010 bytes','zm_rtp_source.cpp',345),(1510772551.565294,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 2, 0 bytes','zm_rtp_source.cpp',336),(1510772562.552285,'zms',0,6713,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510772562.555200,'zms',0,6713,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510772566.177534,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772566.180597,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 383, 8608 bytes','zm_rtp_source.cpp',345),(1510772566.184982,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 383, 0 bytes','zm_rtp_source.cpp',336),(1510772587.464910,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772587.468184,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 936, 24382 bytes','zm_rtp_source.cpp',345),(1510772587.472983,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 936, 0 bytes','zm_rtp_source.cpp',336),(1510772593.568542,'zmc_m1',0,6670,0,'INF','Monitor-1: 1000 - Capturing at 23.26 fps','zm_monitor.cpp',3125),(1510772594.862567,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772594.865709,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 1126, 10042 bytes','zm_rtp_source.cpp',345),(1510772594.867053,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 1126, 0 bytes','zm_rtp_source.cpp',336),(1510772601.936013,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772601.941843,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 1309, 10042 bytes','zm_rtp_source.cpp',345),(1510772601.947380,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 1309, 0 bytes','zm_rtp_source.cpp',336),(1510772609.057527,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772609.060416,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 1492, 15778 bytes','zm_rtp_source.cpp',345),(1510772609.063023,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 1492, 0 bytes','zm_rtp_source.cpp',336),(1510772629.547071,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772629.550049,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 2025, 1438 bytes','zm_rtp_source.cpp',345),(1510772629.552718,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 2025, 0 bytes','zm_rtp_source.cpp',336),(1510772631.623206,'zms',0,6713,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510772633.868518,'zmc_m1',0,6670,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772643.866761,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772643.871811,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 2398, 7174 bytes','zm_rtp_source.cpp',345),(1510772643.875291,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 2398, 0 bytes','zm_rtp_source.cpp',336),(1510772643.986779,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772643.989778,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 2400, 5740 bytes','zm_rtp_source.cpp',345),(1510772643.991036,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 2400, 0 bytes','zm_rtp_source.cpp',336),(1510772657.767535,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772657.770779,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 2757, 38722 bytes','zm_rtp_source.cpp',345),(1510772657.789414,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 2757, 0 bytes','zm_rtp_source.cpp',336),(1510772664.306805,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772664.312399,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 2926, 4306 bytes','zm_rtp_source.cpp',345),(1510772664.317480,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 2926, 0 bytes','zm_rtp_source.cpp',336),(1510772664.387086,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772664.392404,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 2927, 10042 bytes','zm_rtp_source.cpp',345),(1510772671.865722,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772671.868743,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 3121, 2872 bytes','zm_rtp_source.cpp',345),(1510772671.871201,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 3121, 0 bytes','zm_rtp_source.cpp',336),(1510772674.007443,'zmc_m1',0,6670,0,'INF','Monitor-1: 3000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510772684.985936,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772684.989365,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 3460, 5740 bytes','zm_rtp_source.cpp',345),(1510772684.991429,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 3460, 0 bytes','zm_rtp_source.cpp',336),(1510772691.032859,'zms',0,6778,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510772691.038388,'zms',0,6778,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510772692.134740,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772692.137564,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 3646, 1438 bytes','zm_rtp_source.cpp',345),(1510772692.138975,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 3646, 0 bytes','zm_rtp_source.cpp',336),(1510772692.535855,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772692.541164,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 3655, 10042 bytes','zm_rtp_source.cpp',345),(1510772693.014990,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772693.020507,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 3666, 1438 bytes','zm_rtp_source.cpp',345),(1510772693.026806,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 3666, 0 bytes','zm_rtp_source.cpp',336),(1510772699.385877,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772699.391155,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 3830, 5740 bytes','zm_rtp_source.cpp',345),(1510772699.396318,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 3830, 0 bytes','zm_rtp_source.cpp',336),(1510772713.614594,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772713.620303,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 4199, 1438 bytes','zm_rtp_source.cpp',345),(1510772713.622751,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 4199, 0 bytes','zm_rtp_source.cpp',336),(1510772713.774634,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772713.777344,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 4204, 2872 bytes','zm_rtp_source.cpp',345),(1510772713.778706,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 4204, 0 bytes','zm_rtp_source.cpp',336),(1510772713.814411,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772713.817433,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 4204, 1438 bytes','zm_rtp_source.cpp',345),(1510772713.818997,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 4204, 0 bytes','zm_rtp_source.cpp',336),(1510772713.934642,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772713.937350,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 4206, 2872 bytes','zm_rtp_source.cpp',345),(1510772713.940166,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 4206, 0 bytes','zm_rtp_source.cpp',336),(1510772714.354071,'zmc_m1',0,6670,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772720.065802,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772720.068703,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 4364, 8608 bytes','zm_rtp_source.cpp',345),(1510772720.071252,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 4364, 0 bytes','zm_rtp_source.cpp',336),(1510772721.386034,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772721.391242,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 4396, 10042 bytes','zm_rtp_source.cpp',345),(1510772721.396157,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 4396, 0 bytes','zm_rtp_source.cpp',336),(1510772727.261720,'zms',0,6778,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510772735.054689,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772735.058199,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 4751, 1438 bytes','zm_rtp_source.cpp',345),(1510772735.059947,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 4751, 0 bytes','zm_rtp_source.cpp',336),(1510772754.497974,'zmc_m1',0,6670,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772755.766697,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772755.769482,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 5289, 108988 bytes','zm_rtp_source.cpp',345),(1510772755.774231,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 5289, 0 bytes','zm_rtp_source.cpp',336),(1510772769.749122,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772769.752530,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 5652, 17212 bytes','zm_rtp_source.cpp',345),(1510772769.766687,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772769.769607,'zmc_m1',0,6702,-1,'WAR','Discarding frame 5652','zm_rtp_source.cpp',349),(1510772769.774065,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 5652, 0 bytes','zm_rtp_source.cpp',336),(1510772777.453992,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772777.457011,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 5850, 10042 bytes','zm_rtp_source.cpp',345),(1510772777.458614,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 5850, 0 bytes','zm_rtp_source.cpp',336),(1510772784.744804,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772784.748067,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 6039, 12910 bytes','zm_rtp_source.cpp',345),(1510772784.823621,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772784.827293,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 6039, 14344 bytes','zm_rtp_source.cpp',345),(1510772784.830566,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 6039, 0 bytes','zm_rtp_source.cpp',336),(1510772791.453213,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772791.459108,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 6210, 8608 bytes','zm_rtp_source.cpp',345),(1510772791.464338,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 6210, 0 bytes','zm_rtp_source.cpp',336),(1510772794.764602,'zmc_m1',0,6670,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772805.383998,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772805.389451,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 6571, 7174 bytes','zm_rtp_source.cpp',345),(1510772805.392858,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 6571, 0 bytes','zm_rtp_source.cpp',336),(1510772806.023084,'zmc_m1',0,6702,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772806.026305,'zmc_m1',0,6702,-1,'WAR','Discarding partial frame 6587, 12910 bytes','zm_rtp_source.cpp',345),(1510772806.029577,'zmc_m1',0,6702,-1,'WAR','Discarding incomplete frame 6587, 0 bytes','zm_rtp_source.cpp',336),(1510772810.808890,'zmpkg',NULL,6843,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772810.812480,'zmpkg',NULL,6843,0,'INF','Command: restart','zmpkg.pl',NULL),(1510772810.904510,'zmsystemctl',NULL,6849,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510772811.001930,'zmpkg',NULL,6853,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772811.005320,'zmpkg',NULL,6853,0,'INF','Command: stop','zmpkg.pl',NULL),(1510772811.198720,'zmdc',NULL,6640,0,'INF','\'zmc -m 1\' sending stop to pid 6670 at 17/11/15 21:06:51','zmdc.pl',NULL),(1510772811.202257,'zmc_m1',0,6670,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510772811.202300,'zmdc',NULL,6640,0,'INF','\'zmwatch.pl\' sending stop to pid 6683 at 17/11/15 21:06:51','zmdc.pl',NULL),(1510772811.212710,'zmdc',NULL,6640,0,'INF','\'zmaudit.pl -c\' sending stop to pid 6678 at 17/11/15 21:06:51','zmdc.pl',NULL),(1510772811.218210,'zmdc',NULL,6640,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510772811.224200,'zmdc',NULL,6640,0,'INF','\'zmfilter.pl\' sending stop to pid 6672 at 17/11/15 21:06:51','zmdc.pl',NULL),(1510772811.230600,'zmdc',NULL,6640,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510772811.237260,'zmdc',NULL,6640,0,'INF','\'zmtelemetry.pl\' sending stop to pid 6690 at 17/11/15 21:06:51','zmdc.pl',NULL),(1510772811.243660,'zmdc',NULL,6640,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510772811.252480,'zmdc',NULL,6640,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510772816.257530,'zmdc',NULL,6640,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 21:06:56. Sending KILL to pid 6670','zmdc.pl',NULL),(1510772816.275450,'zmdc',NULL,6640,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510772826.359410,'zmdc',NULL,6640,0,'INF','Server shutdown at 17/11/15 21:07:06','zmdc.pl',NULL),(1510772826.465990,'zmpkg',NULL,6892,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772826.469220,'zmpkg',NULL,6892,0,'INF','Command: start','zmpkg.pl',NULL),(1510772826.644880,'zmdc',NULL,6907,0,'INF','Server starting at 17/11/15 21:07:06','zmdc.pl',NULL),(1510772829.651310,'zmpkg',NULL,6892,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510772829.754710,'zmdc',NULL,6907,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:07:09, pid = 6933','zmdc.pl',NULL),(1510772829.754710,'zmdc',NULL,6933,0,'INF','\'zmc -m 1\' started at 17/11/15 21:07:09','zmdc.pl',NULL),(1510772829.793580,'zmdc',NULL,6907,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510772829.798750,'zmdc',NULL,6907,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510772829.805240,'zmdc',NULL,6907,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:07:09, pid = 6937','zmdc.pl',NULL),(1510772829.805240,'zmdc',NULL,6937,0,'INF','\'zmc -m 1\' started at 17/11/15 21:07:09','zmdc.pl',NULL),(1510772829.841300,'zmdc',NULL,6907,0,'INF','\'zmfilter.pl\' starting at 17/11/15 21:07:09, pid = 6939','zmdc.pl',NULL),(1510772829.841300,'zmdc',NULL,6939,0,'INF','\'zmfilter.pl\' started at 17/11/15 21:07:09','zmdc.pl',NULL),(1510772829.933130,'zmdc',NULL,6907,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 21:07:09, pid = 6944','zmdc.pl',NULL),(1510772829.933130,'zmdc',NULL,6944,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 21:07:09','zmdc.pl',NULL),(1510772829.977223,'zmc_m1',0,6937,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510772829.999620,'zmfilter',NULL,6939,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510772830.040540,'zmdc',NULL,6907,0,'INF','\'zmwatch.pl\' starting at 17/11/15 21:07:10, pid = 6950','zmdc.pl',NULL),(1510772830.040550,'zmdc',NULL,6950,0,'INF','\'zmwatch.pl\' started at 17/11/15 21:07:10','zmdc.pl',NULL),(1510772830.115210,'zmwatch',NULL,6950,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510772830.118540,'zmwatch',NULL,6950,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510772830.123400,'zmdc',NULL,6907,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 21:07:10, pid = 6957','zmdc.pl',NULL),(1510772830.123400,'zmdc',NULL,6957,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 21:07:10','zmdc.pl',NULL),(1510772832.963756,'zmc_m1',0,6964,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772832.968648,'zmc_m1',0,6964,-1,'WAR','Discarding partial frame 54, 84610 bytes','zm_rtp_source.cpp',345),(1510772832.973487,'zmc_m1',0,6964,-1,'WAR','Discarding incomplete frame 54, 0 bytes','zm_rtp_source.cpp',336),(1510772833.462794,'zmc_m1',0,6964,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772833.465898,'zmc_m1',0,6964,-1,'WAR','Discarding partial frame 66, 4306 bytes','zm_rtp_source.cpp',345),(1510772833.467134,'zmc_m1',0,6964,-1,'WAR','Discarding incomplete frame 66, 0 bytes','zm_rtp_source.cpp',336),(1510772833.502993,'zmc_m1',0,6964,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772833.506052,'zmc_m1',0,6964,-1,'WAR','Discarding partial frame 66, 4306 bytes','zm_rtp_source.cpp',345),(1510772833.508860,'zmc_m1',0,6964,-1,'WAR','Discarding incomplete frame 66, 0 bytes','zm_rtp_source.cpp',336),(1510772839.761193,'zms',0,6970,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510772839.763633,'zms',0,6970,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510772840.145237,'zmc_m1',0,6964,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772840.150773,'zmc_m1',0,6964,-1,'WAR','Discarding partial frame 237, 15778 bytes','zm_rtp_source.cpp',345),(1510772840.156010,'zmc_m1',0,6964,-1,'WAR','Discarding incomplete frame 237, 0 bytes','zm_rtp_source.cpp',336),(1510772840.947760,'zmc_m1',0,6964,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772840.953007,'zmc_m1',0,6964,-1,'WAR','Discarding partial frame 258, 20080 bytes','zm_rtp_source.cpp',345),(1510772840.970708,'zmc_m1',0,6964,-1,'WAR','Discarding incomplete frame 258, 0 bytes','zm_rtp_source.cpp',336),(1510772847.154586,'zmc_m1',0,6964,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772847.157558,'zmc_m1',0,6964,-1,'WAR','Discarding partial frame 418, 8608 bytes','zm_rtp_source.cpp',345),(1510772847.158738,'zmc_m1',0,6964,-1,'WAR','Discarding incomplete frame 418, 0 bytes','zm_rtp_source.cpp',336),(1510772854.451293,'zmc_m1',0,6964,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772854.457179,'zmc_m1',0,6964,-1,'WAR','Discarding partial frame 606, 1438 bytes','zm_rtp_source.cpp',345),(1510772854.462188,'zmc_m1',0,6964,-1,'WAR','Discarding incomplete frame 606, 0 bytes','zm_rtp_source.cpp',336),(1510772854.891066,'zmc_m1',0,6964,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772854.895108,'zmc_m1',0,6964,-1,'WAR','Discarding partial frame 615, 11476 bytes','zm_rtp_source.cpp',345),(1510772854.897586,'zmc_m1',0,6964,-1,'WAR','Discarding incomplete frame 615, 0 bytes','zm_rtp_source.cpp',336),(1510772855.532352,'zmc_m1',0,6964,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772855.535289,'zmc_m1',0,6964,-1,'WAR','Discarding partial frame 632, 10042 bytes','zm_rtp_source.cpp',345),(1510772855.537823,'zmc_m1',0,6964,-1,'WAR','Discarding incomplete frame 632, 0 bytes','zm_rtp_source.cpp',336),(1510772871.355956,'zmc_m1',0,6937,0,'INF','Monitor-1: 1000 - Capturing at 23.81 fps','zm_monitor.cpp',3125),(1510772882.425965,'zmc_m1',0,6964,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772882.432159,'zmc_m1',0,6964,-1,'WAR','Discarding partial frame 1329, 8608 bytes','zm_rtp_source.cpp',345),(1510772882.435292,'zmc_m1',0,6964,-1,'WAR','Discarding incomplete frame 1329, 0 bytes','zm_rtp_source.cpp',336),(1510772888.292260,'zmpkg',NULL,7027,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772888.299300,'zmpkg',NULL,7027,0,'INF','Command: restart','zmpkg.pl',NULL),(1510772888.393220,'zmsystemctl',NULL,7033,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510772888.478900,'zmpkg',NULL,7037,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772888.486570,'zmpkg',NULL,7037,0,'INF','Command: stop','zmpkg.pl',NULL),(1510772888.676960,'zmdc',NULL,6907,0,'INF','\'zmaudit.pl -c\' sending stop to pid 6944 at 17/11/15 21:08:08','zmdc.pl',NULL),(1510772888.681890,'zmdc',NULL,6907,0,'INF','\'zmtelemetry.pl\' sending stop to pid 6957 at 17/11/15 21:08:08','zmdc.pl',NULL),(1510772888.691230,'zmdc',NULL,6907,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510772888.700480,'zmdc',NULL,6907,0,'INF','\'zmc -m 1\' sending stop to pid 6937 at 17/11/15 21:08:08','zmdc.pl',NULL),(1510772888.705590,'zmdc',NULL,6907,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510772888.710493,'zmc_m1',0,6937,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510772888.710520,'zmdc',NULL,6907,0,'INF','\'zmwatch.pl\' sending stop to pid 6950 at 17/11/15 21:08:08','zmdc.pl',NULL),(1510772888.719230,'zmdc',NULL,6907,0,'INF','\'zmfilter.pl\' sending stop to pid 6939 at 17/11/15 21:08:08','zmdc.pl',NULL),(1510772888.721850,'zmdc',NULL,6907,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510772888.724690,'zmdc',NULL,6907,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510772893.728730,'zmdc',NULL,6907,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 21:08:13. Sending KILL to pid 6937','zmdc.pl',NULL),(1510772893.754260,'zmdc',NULL,6907,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510772898.759636,'zms',0,6970,-2,'ERR','Terminating, last frame sent time 10.005286 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510772903.848870,'zmdc',NULL,6907,0,'INF','Server shutdown at 17/11/15 21:08:23','zmdc.pl',NULL),(1510772903.956060,'zmpkg',NULL,7077,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510772903.959920,'zmpkg',NULL,7077,0,'INF','Command: start','zmpkg.pl',NULL),(1510772904.141520,'zmdc',NULL,7092,0,'INF','Server starting at 17/11/15 21:08:24','zmdc.pl',NULL),(1510772907.148830,'zmpkg',NULL,7077,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510772907.242120,'zmdc',NULL,7092,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:08:27, pid = 7118','zmdc.pl',NULL),(1510772907.242120,'zmdc',NULL,7118,0,'INF','\'zmc -m 1\' started at 17/11/15 21:08:27','zmdc.pl',NULL),(1510772907.280080,'zmdc',NULL,7092,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510772907.282900,'zmdc',NULL,7092,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510772907.286710,'zmdc',NULL,7122,0,'INF','\'zmc -m 1\' started at 17/11/15 21:08:27','zmdc.pl',NULL),(1510772907.286700,'zmdc',NULL,7092,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:08:27, pid = 7122','zmdc.pl',NULL),(1510772907.327250,'zmdc',NULL,7092,0,'INF','\'zmfilter.pl\' starting at 17/11/15 21:08:27, pid = 7125','zmdc.pl',NULL),(1510772907.327260,'zmdc',NULL,7125,0,'INF','\'zmfilter.pl\' started at 17/11/15 21:08:27','zmdc.pl',NULL),(1510772907.418180,'zmdc',NULL,7092,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 21:08:27, pid = 7130','zmdc.pl',NULL),(1510772907.418190,'zmdc',NULL,7130,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 21:08:27','zmdc.pl',NULL),(1510772907.442348,'zmc_m1',0,7122,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510772907.487670,'zmfilter',NULL,7125,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510772907.522100,'zmdc',NULL,7136,0,'INF','\'zmwatch.pl\' started at 17/11/15 21:08:27','zmdc.pl',NULL),(1510772907.522090,'zmdc',NULL,7092,0,'INF','\'zmwatch.pl\' starting at 17/11/15 21:08:27, pid = 7136','zmdc.pl',NULL),(1510772907.596210,'zmwatch',NULL,7136,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510772907.600880,'zmwatch',NULL,7136,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510772907.609130,'zmdc',NULL,7092,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 21:08:27, pid = 7142','zmdc.pl',NULL),(1510772907.609200,'zmdc',NULL,7142,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 21:08:27','zmdc.pl',NULL),(1510772907.627175,'web_php',NULL,6111,-2,'ERR','socket_bind( /var/run/zm/zms-962328w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510772907.627718,'web_php',NULL,5659,-2,'ERR','socket_bind( /var/run/zm/zms-962328w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510772909.628692,'web_php',NULL,6998,-2,'ERR','Socket /var/run/zm/zms-962328s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510772911.181336,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772911.186609,'zmc_m1',0,7155,-1,'WAR','Discarding frame 71','zm_rtp_source.cpp',349),(1510772911.191487,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 71, 0 bytes','zm_rtp_source.cpp',336),(1510772917.821362,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772917.824709,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 242, 2872 bytes','zm_rtp_source.cpp',345),(1510772917.827383,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 242, 0 bytes','zm_rtp_source.cpp',336),(1510772918.380719,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772918.386554,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 255, 1438 bytes','zm_rtp_source.cpp',345),(1510772918.391754,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 255, 0 bytes','zm_rtp_source.cpp',336),(1510772919.064125,'zms',0,7164,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510772919.067066,'zms',0,7164,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510772924.523262,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772924.526679,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 415, 70270 bytes','zm_rtp_source.cpp',345),(1510772924.531542,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772924.536329,'zmc_m1',0,7155,-1,'WAR','Discarding frame 415','zm_rtp_source.cpp',349),(1510772924.541093,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 415, 0 bytes','zm_rtp_source.cpp',336),(1510772924.620768,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772924.626104,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 417, 1438 bytes','zm_rtp_source.cpp',345),(1510772924.630851,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 417, 0 bytes','zm_rtp_source.cpp',336),(1510772924.741468,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772924.747082,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 419, 5740 bytes','zm_rtp_source.cpp',345),(1510772924.750148,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 419, 0 bytes','zm_rtp_source.cpp',336),(1510772924.900552,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772924.903300,'zmc_m1',0,7155,-1,'WAR','Discarding frame 422','zm_rtp_source.cpp',349),(1510772924.905769,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 422, 0 bytes','zm_rtp_source.cpp',336),(1510772925.460776,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772925.464158,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 435, 4306 bytes','zm_rtp_source.cpp',345),(1510772925.465839,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 435, 0 bytes','zm_rtp_source.cpp',336),(1510772925.540688,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772925.543433,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 436, 4306 bytes','zm_rtp_source.cpp',345),(1510772925.548284,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 436, 0 bytes','zm_rtp_source.cpp',336),(1510772938.524213,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772938.529658,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 773, 37288 bytes','zm_rtp_source.cpp',345),(1510772938.535016,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772938.540159,'zmc_m1',0,7155,-1,'WAR','Discarding frame 773','zm_rtp_source.cpp',349),(1510772938.545613,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 773, 0 bytes','zm_rtp_source.cpp',336),(1510772938.570025,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 15','zm_rtp_source.cpp',127),(1510772938.573183,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 773, 2872 bytes','zm_rtp_source.cpp',345),(1510772938.575154,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 773, 0 bytes','zm_rtp_source.cpp',336),(1510772938.610995,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772938.614086,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 773, 11476 bytes','zm_rtp_source.cpp',345),(1510772938.617172,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 773, 0 bytes','zm_rtp_source.cpp',336),(1510772946.526516,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772946.529611,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 977, 137668 bytes','zm_rtp_source.cpp',345),(1510772946.531232,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 977, 0 bytes','zm_rtp_source.cpp',336),(1510772949.080989,'zmc_m1',0,7122,0,'INF','Monitor-1: 1000 - Capturing at 23.81 fps','zm_monitor.cpp',3125),(1510772966.659860,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772966.666275,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 1500, 1438 bytes','zm_rtp_source.cpp',345),(1510772966.671205,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 1500, 0 bytes','zm_rtp_source.cpp',336),(1510772973.701070,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772973.704054,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 1681, 4306 bytes','zm_rtp_source.cpp',345),(1510772973.706880,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 1681, 0 bytes','zm_rtp_source.cpp',336),(1510772974.020224,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772974.025432,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 1688, 8608 bytes','zm_rtp_source.cpp',345),(1510772974.030657,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 1688, 0 bytes','zm_rtp_source.cpp',336),(1510772980.955117,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772980.960380,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 1868, 10042 bytes','zm_rtp_source.cpp',345),(1510772981.089084,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772981.094931,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 1870, 11476 bytes','zm_rtp_source.cpp',345),(1510772981.100258,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 1870, 0 bytes','zm_rtp_source.cpp',336),(1510772981.540520,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772981.545987,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 1880, 7174 bytes','zm_rtp_source.cpp',345),(1510772981.549061,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 1880, 0 bytes','zm_rtp_source.cpp',336),(1510772988.537190,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772988.540476,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 2061, 146272 bytes','zm_rtp_source.cpp',345),(1510772988.543220,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 2061, 0 bytes','zm_rtp_source.cpp',336),(1510772989.400472,'zmc_m1',0,7122,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510772995.378980,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510772995.384646,'zmc_m1',0,7155,-1,'WAR','Discarding frame 2238','zm_rtp_source.cpp',349),(1510772995.388950,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 2238, 0 bytes','zm_rtp_source.cpp',336),(1510773002.536925,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773002.540143,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 2423, 134800 bytes','zm_rtp_source.cpp',345),(1510773002.543034,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 2423, 0 bytes','zm_rtp_source.cpp',336),(1510773008.859644,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773008.865711,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 2587, 8608 bytes','zm_rtp_source.cpp',345),(1510773008.871731,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 2587, 0 bytes','zm_rtp_source.cpp',336),(1510773015.778921,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773015.781811,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 2765, 4306 bytes','zm_rtp_source.cpp',345),(1510773015.783064,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 2765, 0 bytes','zm_rtp_source.cpp',336),(1510773022.774555,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773022.777893,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 2947, 10042 bytes','zm_rtp_source.cpp',345),(1510773022.779201,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 2947, 0 bytes','zm_rtp_source.cpp',336),(1510773023.819696,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773023.822174,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 2972, 10042 bytes','zm_rtp_source.cpp',345),(1510773023.824717,'zmc_m1',0,7155,-1,'WAR','Discarding incomplete frame 2972, 0 bytes','zm_rtp_source.cpp',336),(1510773023.980137,'zmc_m1',0,7155,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773023.983069,'zmc_m1',0,7155,-1,'WAR','Discarding partial frame 2975, 11476 bytes','zm_rtp_source.cpp',345),(1510773028.945200,'zmpkg',NULL,7277,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773028.951940,'zmpkg',NULL,7277,0,'INF','Command: restart','zmpkg.pl',NULL),(1510773029.056030,'zmsystemctl',NULL,7283,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510773029.133940,'zmpkg',NULL,7287,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773029.140520,'zmpkg',NULL,7287,0,'INF','Command: stop','zmpkg.pl',NULL),(1510773029.312730,'zmdc',NULL,7092,0,'INF','\'zmtelemetry.pl\' sending stop to pid 7142 at 17/11/15 21:10:29','zmdc.pl',NULL),(1510773029.316270,'zmdc',NULL,7092,0,'INF','\'zmwatch.pl\' sending stop to pid 7136 at 17/11/15 21:10:29','zmdc.pl',NULL),(1510773029.319140,'zmdc',NULL,7092,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510773029.321940,'zmdc',NULL,7092,0,'INF','\'zmaudit.pl -c\' sending stop to pid 7130 at 17/11/15 21:10:29','zmdc.pl',NULL),(1510773029.324610,'zmdc',NULL,7092,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510773029.325940,'zmdc',NULL,7092,0,'INF','\'zmc -m 1\' sending stop to pid 7122 at 17/11/15 21:10:29','zmdc.pl',NULL),(1510773029.327330,'zmdc',NULL,7092,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510773029.329899,'zmc_m1',0,7122,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510773029.329890,'zmdc',NULL,7092,0,'INF','\'zmfilter.pl\' sending stop to pid 7125 at 17/11/15 21:10:29','zmdc.pl',NULL),(1510773029.339410,'zmdc',NULL,7092,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510773033.661640,'zmdc',NULL,7092,0,'INF','\'zmc -m 1\' exited normally','zmdc.pl',NULL),(1510773043.765490,'zmdc',NULL,7092,0,'INF','Server shutdown at 17/11/15 21:10:43','zmdc.pl',NULL),(1510773043.862010,'zmpkg',NULL,7340,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773043.869890,'zmpkg',NULL,7340,0,'INF','Command: start','zmpkg.pl',NULL),(1510773044.107270,'zmdc',NULL,7355,0,'INF','Server starting at 17/11/15 21:10:44','zmdc.pl',NULL),(1510773047.113930,'zmpkg',NULL,7340,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510773047.204480,'zmdc',NULL,7355,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:10:47, pid = 7383','zmdc.pl',NULL),(1510773047.204480,'zmdc',NULL,7383,0,'INF','\'zmc -m 1\' started at 17/11/15 21:10:47','zmdc.pl',NULL),(1510773047.245440,'zmdc',NULL,7355,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510773047.248360,'zmdc',NULL,7355,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510773047.252540,'zmdc',NULL,7355,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:10:47, pid = 7388','zmdc.pl',NULL),(1510773047.252550,'zmdc',NULL,7388,0,'INF','\'zmc -m 1\' started at 17/11/15 21:10:47','zmdc.pl',NULL),(1510773047.293000,'zmdc',NULL,7355,0,'INF','\'zmfilter.pl\' starting at 17/11/15 21:10:47, pid = 7391','zmdc.pl',NULL),(1510773047.293000,'zmdc',NULL,7391,0,'INF','\'zmfilter.pl\' started at 17/11/15 21:10:47','zmdc.pl',NULL),(1510773047.397770,'zmdc',NULL,7399,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 21:10:47','zmdc.pl',NULL),(1510773047.397770,'zmdc',NULL,7355,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 21:10:47, pid = 7399','zmdc.pl',NULL),(1510773047.413088,'zmc_m1',0,7388,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510773047.448230,'zmfilter',NULL,7391,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510773047.496350,'zmdc',NULL,7406,0,'INF','\'zmwatch.pl\' started at 17/11/15 21:10:47','zmdc.pl',NULL),(1510773047.496350,'zmdc',NULL,7355,0,'INF','\'zmwatch.pl\' starting at 17/11/15 21:10:47, pid = 7406','zmdc.pl',NULL),(1510773047.571130,'zmwatch',NULL,7406,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510773047.574320,'zmwatch',NULL,7406,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510773047.583500,'zmdc',NULL,7413,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 21:10:47','zmdc.pl',NULL),(1510773047.583500,'zmdc',NULL,7355,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 21:10:47, pid = 7413','zmdc.pl',NULL),(1510773047.598014,'web_php',NULL,7267,-2,'ERR','socket_bind( /var/run/zm/zms-736910w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773047.598170,'web_php',NULL,6110,-2,'ERR','socket_bind( /var/run/zm/zms-736910w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773047.598368,'web_php',NULL,5079,-2,'ERR','socket_bind( /var/run/zm/zms-736910w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773047.599001,'web_php',NULL,7310,-2,'ERR','socket_bind( /var/run/zm/zms-736910w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773047.599237,'web_php',NULL,7323,-2,'ERR','socket_bind( /var/run/zm/zms-736910w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773047.678365,'web_js',NULL,1210,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-736910w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510773047.717191,'zms',0,7416,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510773047.723403,'zms',0,7416,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510773048.226717,'zms',0,7416,-2,'ERR','Terminating, last frame sent time 1510773047.726616 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510773050.632103,'web_php',NULL,7324,-2,'ERR','Socket /var/run/zm/zms-736910s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773050.647349,'web_js',NULL,7324,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-736910s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510773050.684031,'zms',0,7428,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510773050.689094,'zms',0,7428,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510773050.799227,'web_php',NULL,7154,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-736910s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773051.665623,'zms',0,7428,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510773055.226256,'zms',0,7432,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510773055.231163,'zms',0,7432,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510773057.699195,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773057.701956,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 241, 4306 bytes','zm_rtp_source.cpp',345),(1510773057.705891,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 241, 0 bytes','zm_rtp_source.cpp',336),(1510773058.778015,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773058.780465,'zmc_m1',0,7426,-1,'WAR','Discarding frame 269','zm_rtp_source.cpp',349),(1510773058.781851,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 269, 0 bytes','zm_rtp_source.cpp',336),(1510773064.858136,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773064.860954,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 426, 8608 bytes','zm_rtp_source.cpp',345),(1510773064.862270,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 426, 0 bytes','zm_rtp_source.cpp',336),(1510773064.898646,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773064.901536,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 426, 1438 bytes','zm_rtp_source.cpp',345),(1510773064.904316,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 426, 0 bytes','zm_rtp_source.cpp',336),(1510773065.098163,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773065.103408,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 430, 5740 bytes','zm_rtp_source.cpp',345),(1510773065.108646,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 430, 0 bytes','zm_rtp_source.cpp',336),(1510773065.137662,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773065.143351,'zmc_m1',0,7426,-1,'WAR','Discarding frame 430','zm_rtp_source.cpp',349),(1510773065.148552,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 430, 0 bytes','zm_rtp_source.cpp',336),(1510773065.298224,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773065.302221,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 433, 4306 bytes','zm_rtp_source.cpp',345),(1510773065.304891,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 433, 0 bytes','zm_rtp_source.cpp',336),(1510773071.698811,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773071.705065,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 598, 1438 bytes','zm_rtp_source.cpp',345),(1510773071.710469,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 598, 0 bytes','zm_rtp_source.cpp',336),(1510773072.179112,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773072.182088,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 609, 7174 bytes','zm_rtp_source.cpp',345),(1510773072.184508,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 609, 0 bytes','zm_rtp_source.cpp',336),(1510773072.377940,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773072.380782,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 613, 5740 bytes','zm_rtp_source.cpp',345),(1510773072.382112,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 613, 0 bytes','zm_rtp_source.cpp',336),(1510773072.859266,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773072.862436,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 626, 8608 bytes','zm_rtp_source.cpp',345),(1510773072.866164,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 626, 0 bytes','zm_rtp_source.cpp',336),(1510773078.771864,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773078.775141,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 779, 11476 bytes','zm_rtp_source.cpp',345),(1510773080.002460,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773080.005379,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 809, 5740 bytes','zm_rtp_source.cpp',345),(1510773080.007178,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 809, 0 bytes','zm_rtp_source.cpp',336),(1510773088.996079,'zmc_m1',0,7388,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510773093.977665,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773093.980784,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 1171, 2872 bytes','zm_rtp_source.cpp',345),(1510773093.983309,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 1171, 0 bytes','zm_rtp_source.cpp',336),(1510773100.977476,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773100.983399,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 1353, 7174 bytes','zm_rtp_source.cpp',345),(1510773100.988862,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 1353, 0 bytes','zm_rtp_source.cpp',336),(1510773101.017895,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773101.024349,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 1353, 1438 bytes','zm_rtp_source.cpp',345),(1510773101.028161,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 1353, 0 bytes','zm_rtp_source.cpp',336),(1510773114.927258,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773114.932595,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 1714, 5740 bytes','zm_rtp_source.cpp',345),(1510773114.937788,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 1714, 0 bytes','zm_rtp_source.cpp',336),(1510773129.157145,'zmc_m1',0,7388,0,'INF','Monitor-1: 2000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510773142.326308,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773142.332104,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 2424, 4306 bytes','zm_rtp_source.cpp',345),(1510773142.337329,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 2424, 0 bytes','zm_rtp_source.cpp',336),(1510773148.845703,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773148.849010,'zmc_m1',0,7426,-1,'WAR','Discarding frame 2594','zm_rtp_source.cpp',349),(1510773148.855471,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 2594, 0 bytes','zm_rtp_source.cpp',336),(1510773156.485658,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773156.488767,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 2791, 54496 bytes','zm_rtp_source.cpp',345),(1510773156.500530,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 2791, 0 bytes','zm_rtp_source.cpp',336),(1510773156.856515,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773156.859493,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 2800, 8608 bytes','zm_rtp_source.cpp',345),(1510773156.862011,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 2800, 0 bytes','zm_rtp_source.cpp',336),(1510773157.016053,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773157.021402,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 2803, 1438 bytes','zm_rtp_source.cpp',345),(1510773157.026442,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 2803, 0 bytes','zm_rtp_source.cpp',336),(1510773169.350723,'zmc_m1',0,7388,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773170.484734,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773170.490140,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 3152, 68836 bytes','zm_rtp_source.cpp',345),(1510773170.496596,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773170.502857,'zmc_m1',0,7426,-1,'WAR','Discarding frame 3152','zm_rtp_source.cpp',349),(1510773170.509192,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 3152, 0 bytes','zm_rtp_source.cpp',336),(1510773170.696153,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773170.702589,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 3157, 2872 bytes','zm_rtp_source.cpp',345),(1510773170.705922,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 3157, 0 bytes','zm_rtp_source.cpp',336),(1510773184.696093,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773184.699127,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 3520, 5740 bytes','zm_rtp_source.cpp',345),(1510773184.701622,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 3520, 0 bytes','zm_rtp_source.cpp',336),(1510773198.296133,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773198.299039,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 3871, 5740 bytes','zm_rtp_source.cpp',345),(1510773198.301573,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 3871, 0 bytes','zm_rtp_source.cpp',336),(1510773198.511490,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773198.514916,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 3876, 139102 bytes','zm_rtp_source.cpp',345),(1510773198.522154,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 3876, 0 bytes','zm_rtp_source.cpp',336),(1510773204.895444,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773204.900334,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 4042, 2872 bytes','zm_rtp_source.cpp',345),(1510773204.903984,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 4042, 0 bytes','zm_rtp_source.cpp',336),(1510773205.769620,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773205.772622,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 4063, 10042 bytes','zm_rtp_source.cpp',345),(1510773205.775451,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 4063, 0 bytes','zm_rtp_source.cpp',336),(1510773209.633852,'zmc_m1',0,7388,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773219.964458,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773219.967611,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 4431, 1438 bytes','zm_rtp_source.cpp',345),(1510773219.971954,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 4431, 0 bytes','zm_rtp_source.cpp',336),(1510773247.615840,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773247.618983,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 5149, 11476 bytes','zm_rtp_source.cpp',345),(1510773248.334840,'zmc_m1',0,7426,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773248.337848,'zmc_m1',0,7426,-1,'WAR','Discarding partial frame 5166, 4306 bytes','zm_rtp_source.cpp',345),(1510773248.338995,'zmc_m1',0,7426,-1,'WAR','Discarding incomplete frame 5166, 0 bytes','zm_rtp_source.cpp',336),(1510773249.748752,'zmc_m1',0,7388,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773269.477310,'zmpkg',NULL,7535,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773269.484200,'zmpkg',NULL,7535,0,'INF','Command: restart','zmpkg.pl',NULL),(1510773269.579370,'zmsystemctl',NULL,7541,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510773269.657670,'zmpkg',NULL,7545,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773269.661040,'zmpkg',NULL,7545,0,'INF','Command: stop','zmpkg.pl',NULL),(1510773269.849710,'zmdc',NULL,7355,0,'INF','\'zmc -m 1\' sending stop to pid 7388 at 17/11/15 21:14:29','zmdc.pl',NULL),(1510773269.853067,'zmc_m1',0,7388,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510773269.853060,'zmdc',NULL,7355,0,'INF','\'zmfilter.pl\' sending stop to pid 7391 at 17/11/15 21:14:29','zmdc.pl',NULL),(1510773269.856970,'zmdc',NULL,7355,0,'INF','\'zmaudit.pl -c\' sending stop to pid 7399 at 17/11/15 21:14:29','zmdc.pl',NULL),(1510773269.858450,'zmdc',NULL,7355,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510773269.861270,'zmdc',NULL,7355,0,'INF','\'zmwatch.pl\' sending stop to pid 7406 at 17/11/15 21:14:29','zmdc.pl',NULL),(1510773269.862770,'zmdc',NULL,7355,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510773269.867840,'zmdc',NULL,7355,0,'INF','\'zmtelemetry.pl\' sending stop to pid 7413 at 17/11/15 21:14:29','zmdc.pl',NULL),(1510773269.872940,'zmdc',NULL,7355,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510773269.879120,'zmdc',NULL,7355,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510773274.949740,'zmdc',NULL,7355,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 21:14:34. Sending KILL to pid 7388','zmdc.pl',NULL),(1510773274.968930,'zmdc',NULL,7355,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510773279.907064,'zms',0,7432,-2,'ERR','Terminating, last frame sent time 10.002430 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510773285.089760,'zmdc',NULL,7355,0,'INF','Server shutdown at 17/11/15 21:14:45','zmdc.pl',NULL),(1510773285.222070,'zmpkg',NULL,7591,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773285.228230,'zmpkg',NULL,7591,0,'INF','Command: start','zmpkg.pl',NULL),(1510773285.438250,'zmdc',NULL,7605,0,'INF','Server starting at 17/11/15 21:14:45','zmdc.pl',NULL),(1510773288.444460,'zmpkg',NULL,7591,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510773288.542190,'zmdc',NULL,7605,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:14:48, pid = 7635','zmdc.pl',NULL),(1510773288.542190,'zmdc',NULL,7635,0,'INF','\'zmc -m 1\' started at 17/11/15 21:14:48','zmdc.pl',NULL),(1510773288.581080,'zmdc',NULL,7605,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510773288.586050,'zmdc',NULL,7605,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510773288.592210,'zmdc',NULL,7640,0,'INF','\'zmc -m 1\' started at 17/11/15 21:14:48','zmdc.pl',NULL),(1510773288.592210,'zmdc',NULL,7605,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:14:48, pid = 7640','zmdc.pl',NULL),(1510773288.627280,'zmdc',NULL,7605,0,'INF','\'zmfilter.pl\' starting at 17/11/15 21:14:48, pid = 7642','zmdc.pl',NULL),(1510773288.627280,'zmdc',NULL,7642,0,'INF','\'zmfilter.pl\' started at 17/11/15 21:14:48','zmdc.pl',NULL),(1510773288.719450,'zmdc',NULL,7605,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 21:14:48, pid = 7649','zmdc.pl',NULL),(1510773288.719460,'zmdc',NULL,7649,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 21:14:48','zmdc.pl',NULL),(1510773288.762510,'zmc_m1',0,7640,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510773288.772650,'zmfilter',NULL,7642,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510773288.808530,'zmdc',NULL,7605,0,'INF','\'zmwatch.pl\' starting at 17/11/15 21:14:48, pid = 7656','zmdc.pl',NULL),(1510773288.808530,'zmdc',NULL,7656,0,'INF','\'zmwatch.pl\' started at 17/11/15 21:14:48','zmdc.pl',NULL),(1510773288.888670,'zmwatch',NULL,7656,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510773288.893540,'zmwatch',NULL,7656,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510773288.896210,'zmdc',NULL,7663,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 21:14:48','zmdc.pl',NULL),(1510773288.896210,'zmdc',NULL,7605,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 21:14:48, pid = 7663','zmdc.pl',NULL),(1510773288.907161,'web_php',NULL,1210,-2,'ERR','socket_bind( /var/run/zm/zms-423633w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773288.907848,'web_php',NULL,7327,-2,'ERR','socket_bind( /var/run/zm/zms-423633w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773288.908243,'web_php',NULL,7323,-2,'ERR','socket_bind( /var/run/zm/zms-423633w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773288.908601,'web_php',NULL,7566,-2,'ERR','socket_bind( /var/run/zm/zms-423633w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773288.909091,'web_php',NULL,7310,-2,'ERR','socket_bind( /var/run/zm/zms-423633w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773288.983841,'web_js',NULL,7154,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-423633w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510773289.024854,'zms',0,7666,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510773289.027669,'zms',0,7666,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510773289.530299,'zms',0,7666,-2,'ERR','Terminating, last frame sent time 1510773289.030236 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510773289.834118,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773289.839722,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 2, 124762 bytes','zm_rtp_source.cpp',345),(1510773289.845166,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 2, 0 bytes','zm_rtp_source.cpp',336),(1510773291.950812,'web_php',NULL,7567,-2,'ERR','Socket /var/run/zm/zms-423633s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773291.962669,'web_js',NULL,7567,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-423633s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510773291.998905,'zms',0,7678,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510773292.001763,'zms',0,7678,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510773292.109922,'web_php',NULL,7326,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-423633s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773303.793939,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773303.797672,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 365, 116158 bytes','zm_rtp_source.cpp',345),(1510773303.802009,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 365, 0 bytes','zm_rtp_source.cpp',336),(1510773304.133574,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773304.139296,'zmc_m1',0,7676,-1,'WAR','Discarding frame 373','zm_rtp_source.cpp',349),(1510773304.144310,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 373, 0 bytes','zm_rtp_source.cpp',336),(1510773323.966228,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773323.969189,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 888, 7174 bytes','zm_rtp_source.cpp',345),(1510773323.970438,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 888, 0 bytes','zm_rtp_source.cpp',336),(1510773324.442666,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773324.445438,'zmc_m1',0,7676,-1,'WAR','Discarding frame 899','zm_rtp_source.cpp',349),(1510773324.446785,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 899, 0 bytes','zm_rtp_source.cpp',336),(1510773331.783783,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773331.789848,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 1089, 17212 bytes','zm_rtp_source.cpp',345),(1510773331.800875,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773331.807055,'zmc_m1',0,7676,-1,'WAR','Discarding frame 1089','zm_rtp_source.cpp',349),(1510773331.813129,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 1089, 0 bytes','zm_rtp_source.cpp',336),(1510773331.991857,'zmc_m1',0,7640,0,'INF','Monitor-1: 1000 - Capturing at 23.26 fps','zm_monitor.cpp',3125),(1510773345.795738,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773345.798723,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 1452, 119026 bytes','zm_rtp_source.cpp',345),(1510773345.801523,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773345.802910,'zmc_m1',0,7676,-1,'WAR','Discarding frame 1452','zm_rtp_source.cpp',349),(1510773345.807699,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 1452, 0 bytes','zm_rtp_source.cpp',336),(1510773346.285858,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773346.291142,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 1464, 5740 bytes','zm_rtp_source.cpp',345),(1510773346.295969,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 1464, 0 bytes','zm_rtp_source.cpp',336),(1510773366.886518,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773366.889439,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 1998, 7174 bytes','zm_rtp_source.cpp',345),(1510773366.890748,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 1998, 0 bytes','zm_rtp_source.cpp',336),(1510773372.114152,'zmc_m1',0,7640,0,'INF','Monitor-1: 2000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510773381.372568,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773381.378029,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 2373, 5740 bytes','zm_rtp_source.cpp',345),(1510773381.383671,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 2373, 0 bytes','zm_rtp_source.cpp',336),(1510773387.815417,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773387.818362,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 2541, 10042 bytes','zm_rtp_source.cpp',345),(1510773387.821390,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 2541, 0 bytes','zm_rtp_source.cpp',336),(1510773412.191384,'zmc_m1',0,7640,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773415.783048,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773415.785996,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 3267, 22948 bytes','zm_rtp_source.cpp',345),(1510773415.788772,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773415.790395,'zmc_m1',0,7676,-1,'WAR','Discarding frame 3267','zm_rtp_source.cpp',349),(1510773415.807769,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 3267, 0 bytes','zm_rtp_source.cpp',336),(1510773416.423107,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773416.426346,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 3282, 2872 bytes','zm_rtp_source.cpp',345),(1510773416.430798,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 3282, 0 bytes','zm_rtp_source.cpp',336),(1510773429.605251,'zms',0,7678,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510773429.748923,'zms',0,7717,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510773429.751806,'zms',0,7717,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510773436.332294,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773436.335550,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 3799, 14344 bytes','zm_rtp_source.cpp',345),(1510773436.338583,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 3799, 0 bytes','zm_rtp_source.cpp',336),(1510773443.291848,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773443.297422,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 3978, 7174 bytes','zm_rtp_source.cpp',345),(1510773443.302338,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 3978, 0 bytes','zm_rtp_source.cpp',336),(1510773452.352459,'zmc_m1',0,7640,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773471.480660,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773471.485934,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 4710, 1438 bytes','zm_rtp_source.cpp',345),(1510773471.489100,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 4710, 0 bytes','zm_rtp_source.cpp',336),(1510773472.441353,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773472.444374,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 4735, 1438 bytes','zm_rtp_source.cpp',345),(1510773472.447471,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 4735, 0 bytes','zm_rtp_source.cpp',336),(1510773478.971486,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773478.974237,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 4903, 11476 bytes','zm_rtp_source.cpp',345),(1510773487.171295,'zms',0,7717,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510773487.350097,'zms',0,7739,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510773487.353075,'zms',0,7739,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510773492.488561,'zmc_m1',0,7640,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773499.764543,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773499.767366,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 5444, 8608 bytes','zm_rtp_source.cpp',345),(1510773499.770687,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 5444, 0 bytes','zm_rtp_source.cpp',336),(1510773505.804178,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773505.806955,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 5599, 44458 bytes','zm_rtp_source.cpp',345),(1510773505.809445,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 5599, 0 bytes','zm_rtp_source.cpp',336),(1510773514.171274,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773514.176959,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 5816, 12910 bytes','zm_rtp_source.cpp',345),(1510773514.182039,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 5816, 0 bytes','zm_rtp_source.cpp',336),(1510773519.893877,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773519.896847,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 5964, 2872 bytes','zm_rtp_source.cpp',345),(1510773519.898392,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 5964, 0 bytes','zm_rtp_source.cpp',336),(1510773520.170830,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773520.174200,'zmc_m1',0,7676,-1,'WAR','Discarding frame 5970','zm_rtp_source.cpp',349),(1510773520.176683,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 5970, 0 bytes','zm_rtp_source.cpp',336),(1510773520.369711,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773520.373930,'zmc_m1',0,7676,-1,'WAR','Discarding frame 5974','zm_rtp_source.cpp',349),(1510773520.378735,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 5974, 0 bytes','zm_rtp_source.cpp',336),(1510773527.814510,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773527.820408,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 6166, 223708 bytes','zm_rtp_source.cpp',345),(1510773527.826143,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 6166, 0 bytes','zm_rtp_source.cpp',336),(1510773532.750710,'zmc_m1',0,7640,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773533.814538,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773533.817789,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 6321, 216538 bytes','zm_rtp_source.cpp',345),(1510773533.824260,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 6321, 0 bytes','zm_rtp_source.cpp',336),(1510773540.889813,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773540.894523,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 6504, 5740 bytes','zm_rtp_source.cpp',345),(1510773540.899569,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 6504, 0 bytes','zm_rtp_source.cpp',336),(1510773547.825829,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773547.829255,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 6683, 205066 bytes','zm_rtp_source.cpp',345),(1510773547.830969,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 6683, 0 bytes','zm_rtp_source.cpp',336),(1510773547.929613,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773547.933732,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 6686, 2872 bytes','zm_rtp_source.cpp',345),(1510773547.938515,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 6686, 0 bytes','zm_rtp_source.cpp',336),(1510773548.169475,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773548.174720,'zmc_m1',0,7676,-1,'WAR','Discarding frame 6691','zm_rtp_source.cpp',349),(1510773548.180105,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 6691, 0 bytes','zm_rtp_source.cpp',336),(1510773555.829440,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773555.834994,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 6888, 217972 bytes','zm_rtp_source.cpp',345),(1510773555.840529,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 6888, 0 bytes','zm_rtp_source.cpp',336),(1510773561.795812,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773561.799048,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 7043, 14344 bytes','zm_rtp_source.cpp',345),(1510773561.829892,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773561.835143,'zmc_m1',0,7676,-1,'WAR','Discarding frame 7043','zm_rtp_source.cpp',349),(1510773561.840462,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 7043, 0 bytes','zm_rtp_source.cpp',336),(1510773562.050426,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773562.056106,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 7049, 10042 bytes','zm_rtp_source.cpp',345),(1510773562.689192,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773562.694677,'zmc_m1',0,7676,-1,'WAR','Discarding frame 7064','zm_rtp_source.cpp',349),(1510773562.699772,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 7064, 0 bytes','zm_rtp_source.cpp',336),(1510773562.770061,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773562.774047,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 7065, 8608 bytes','zm_rtp_source.cpp',345),(1510773562.776421,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 7065, 0 bytes','zm_rtp_source.cpp',336),(1510773569.208570,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773569.214099,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 7230, 11476 bytes','zm_rtp_source.cpp',345),(1510773569.219470,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 7230, 0 bytes','zm_rtp_source.cpp',336),(1510773569.795707,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773569.800204,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 7245, 17212 bytes','zm_rtp_source.cpp',345),(1510773569.829618,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 7245, 0 bytes','zm_rtp_source.cpp',336),(1510773573.277853,'zmc_m1',0,7640,0,'INF','Monitor-1: 7000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510773576.809745,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773576.815309,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 7426, 8608 bytes','zm_rtp_source.cpp',345),(1510773576.820935,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 7426, 0 bytes','zm_rtp_source.cpp',336),(1510773583.569290,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773583.572213,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 7600, 7174 bytes','zm_rtp_source.cpp',345),(1510773583.574745,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 7600, 0 bytes','zm_rtp_source.cpp',336),(1510773583.829035,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773583.832376,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 7606, 123328 bytes','zm_rtp_source.cpp',345),(1510773583.836648,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773583.841813,'zmc_m1',0,7676,-1,'WAR','Discarding frame 7606','zm_rtp_source.cpp',349),(1510773583.852826,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 7606, 0 bytes','zm_rtp_source.cpp',336),(1510773590.049927,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773590.053485,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 7768, 10042 bytes','zm_rtp_source.cpp',345),(1510773597.794221,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773597.797435,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 7968, 8608 bytes','zm_rtp_source.cpp',345),(1510773597.832407,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 7968, 0 bytes','zm_rtp_source.cpp',336),(1510773603.925590,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773603.930800,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 8126, 1438 bytes','zm_rtp_source.cpp',345),(1510773603.935628,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 8126, 0 bytes','zm_rtp_source.cpp',336),(1510773611.528042,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773611.530972,'zmc_m1',0,7676,-1,'WAR','Discarding frame 8322','zm_rtp_source.cpp',349),(1510773611.533345,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 8322, 0 bytes','zm_rtp_source.cpp',336),(1510773613.551233,'zmc_m1',0,7640,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773618.282131,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773618.285142,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 8498, 7174 bytes','zm_rtp_source.cpp',345),(1510773618.286427,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 8498, 0 bytes','zm_rtp_source.cpp',336),(1510773625.883643,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773625.889596,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 8692, 235180 bytes','zm_rtp_source.cpp',345),(1510773625.895019,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 8692, 0 bytes','zm_rtp_source.cpp',336),(1510773628.654275,'zms',0,7739,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510773631.802000,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773631.807772,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 8847, 58798 bytes','zm_rtp_source.cpp',345),(1510773631.829157,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 8847, 0 bytes','zm_rtp_source.cpp',336),(1510773632.173160,'zms',0,7772,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510773632.178651,'zms',0,7772,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510773639.201326,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773639.207266,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 9038, 4306 bytes','zm_rtp_source.cpp',345),(1510773639.213611,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 9038, 0 bytes','zm_rtp_source.cpp',336),(1510773646.679389,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773646.684872,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 9232, 7174 bytes','zm_rtp_source.cpp',345),(1510773646.690246,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 9232, 0 bytes','zm_rtp_source.cpp',336),(1510773646.953517,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773646.958974,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 9238, 8608 bytes','zm_rtp_source.cpp',345),(1510773646.963844,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 9238, 0 bytes','zm_rtp_source.cpp',336),(1510773653.852066,'zmc_m1',0,7640,0,'INF','Monitor-1: 9000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773659.794888,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773659.800482,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 9571, 78874 bytes','zm_rtp_source.cpp',345),(1510773659.806320,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773659.811943,'zmc_m1',0,7676,-1,'WAR','Discarding frame 9571','zm_rtp_source.cpp',349),(1510773659.821777,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 9571, 0 bytes','zm_rtp_source.cpp',336),(1510773667.770608,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773667.774672,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 9778, 27250 bytes','zm_rtp_source.cpp',345),(1510773667.777752,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 9778, 0 bytes','zm_rtp_source.cpp',336),(1510773674.474466,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773674.477433,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 9951, 11476 bytes','zm_rtp_source.cpp',345),(1510773674.478776,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 9951, 0 bytes','zm_rtp_source.cpp',336),(1510773681.512035,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773681.517416,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 10131, 11476 bytes','zm_rtp_source.cpp',345),(1510773681.522558,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 10131, 0 bytes','zm_rtp_source.cpp',336),(1510773681.768841,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773681.774090,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 10139, 12910 bytes','zm_rtp_source.cpp',345),(1510773681.779533,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 10139, 0 bytes','zm_rtp_source.cpp',336),(1510773682.088770,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773682.092088,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 10146, 5740 bytes','zm_rtp_source.cpp',345),(1510773682.094612,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 10146, 0 bytes','zm_rtp_source.cpp',336),(1510773688.439439,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773688.442648,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 10310, 10042 bytes','zm_rtp_source.cpp',345),(1510773688.445342,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 10310, 0 bytes','zm_rtp_source.cpp',336),(1510773694.058738,'zmc_m1',0,7640,0,'INF','Monitor-1: 10000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510773695.897312,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773695.900071,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 10503, 4306 bytes','zm_rtp_source.cpp',345),(1510773695.902714,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 10503, 0 bytes','zm_rtp_source.cpp',336),(1510773701.718246,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773701.724244,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 10652, 4306 bytes','zm_rtp_source.cpp',345),(1510773701.730375,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 10652, 0 bytes','zm_rtp_source.cpp',336),(1510773709.820374,'zmc_m1',0,7676,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773709.823550,'zmc_m1',0,7676,-1,'WAR','Discarding partial frame 10862, 200764 bytes','zm_rtp_source.cpp',345),(1510773709.828768,'zmc_m1',0,7676,-1,'WAR','Discarding incomplete frame 10862, 0 bytes','zm_rtp_source.cpp',336),(1510773710.397510,'zmpkg',NULL,7800,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773710.403370,'zmpkg',NULL,7800,0,'INF','Command: restart','zmpkg.pl',NULL),(1510773710.504860,'zmsystemctl',NULL,7806,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510773710.584650,'zmpkg',NULL,7810,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773710.590400,'zmpkg',NULL,7810,0,'INF','Command: stop','zmpkg.pl',NULL),(1510773710.758850,'zmdc',NULL,7605,0,'INF','\'zmfilter.pl\' sending stop to pid 7642 at 17/11/15 21:21:50','zmdc.pl',NULL),(1510773710.764230,'zmdc',NULL,7605,0,'INF','\'zmc -m 1\' sending stop to pid 7640 at 17/11/15 21:21:50','zmdc.pl',NULL),(1510773710.767260,'zmdc',NULL,7605,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510773710.770094,'zmc_m1',0,7640,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510773710.770170,'zmdc',NULL,7605,0,'INF','\'zmtelemetry.pl\' sending stop to pid 7663 at 17/11/15 21:21:50','zmdc.pl',NULL),(1510773710.773590,'zmdc',NULL,7605,0,'INF','\'zmwatch.pl\' sending stop to pid 7656 at 17/11/15 21:21:50','zmdc.pl',NULL),(1510773710.774950,'zmdc',NULL,7605,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510773710.777870,'zmdc',NULL,7605,0,'INF','\'zmaudit.pl -c\' sending stop to pid 7649 at 17/11/15 21:21:50','zmdc.pl',NULL),(1510773710.780710,'zmdc',NULL,7605,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510773710.783260,'zmdc',NULL,7605,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510773715.786850,'zmdc',NULL,7605,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 21:21:55. Sending KILL to pid 7640','zmdc.pl',NULL),(1510773715.804560,'zmdc',NULL,7605,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510773720.841161,'zms',0,7772,-2,'ERR','Terminating, last frame sent time 10.006542 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510773725.899420,'zmdc',NULL,7605,0,'INF','Server shutdown at 17/11/15 21:22:05','zmdc.pl',NULL),(1510773726.023360,'zmpkg',NULL,7854,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773726.027460,'zmpkg',NULL,7854,0,'INF','Command: start','zmpkg.pl',NULL),(1510773726.267470,'zmdc',NULL,7868,0,'INF','Server starting at 17/11/15 21:22:06','zmdc.pl',NULL),(1510773729.274010,'zmpkg',NULL,7854,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510773729.380340,'zmdc',NULL,7868,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:22:09, pid = 7894','zmdc.pl',NULL),(1510773729.380420,'zmdc',NULL,7894,0,'INF','\'zmc -m 1\' started at 17/11/15 21:22:09','zmdc.pl',NULL),(1510773729.423070,'zmdc',NULL,7868,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510773729.428180,'zmdc',NULL,7868,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510773729.434900,'zmdc',NULL,7868,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:22:09, pid = 7899','zmdc.pl',NULL),(1510773729.434900,'zmdc',NULL,7899,0,'INF','\'zmc -m 1\' started at 17/11/15 21:22:09','zmdc.pl',NULL),(1510773729.472520,'zmdc',NULL,7868,0,'INF','\'zmfilter.pl\' starting at 17/11/15 21:22:09, pid = 7902','zmdc.pl',NULL),(1510773729.472520,'zmdc',NULL,7902,0,'INF','\'zmfilter.pl\' started at 17/11/15 21:22:09','zmdc.pl',NULL),(1510773729.576090,'zmdc',NULL,7868,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 21:22:09, pid = 7908','zmdc.pl',NULL),(1510773729.576100,'zmdc',NULL,7908,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 21:22:09','zmdc.pl',NULL),(1510773729.608875,'zmc_m1',0,7899,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510773729.614110,'zmfilter',NULL,7902,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510773729.668640,'zmdc',NULL,7916,0,'INF','\'zmwatch.pl\' started at 17/11/15 21:22:09','zmdc.pl',NULL),(1510773729.668630,'zmdc',NULL,7868,0,'INF','\'zmwatch.pl\' starting at 17/11/15 21:22:09, pid = 7916','zmdc.pl',NULL),(1510773729.748690,'zmwatch',NULL,7916,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510773729.751730,'zmwatch',NULL,7916,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510773729.757820,'zmdc',NULL,7922,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 21:22:09','zmdc.pl',NULL),(1510773729.757820,'zmdc',NULL,7868,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 21:22:09, pid = 7922','zmdc.pl',NULL),(1510773729.775358,'web_php',NULL,7617,-2,'ERR','socket_bind( /var/run/zm/zms-802235w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773729.775101,'web_php',NULL,7327,-2,'ERR','socket_bind( /var/run/zm/zms-802235w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773729.775693,'web_php',NULL,7630,-2,'ERR','socket_bind( /var/run/zm/zms-802235w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773731.776084,'web_php',NULL,7154,-2,'ERR','Socket /var/run/zm/zms-802235s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773734.586022,'zms',0,7947,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510773734.590205,'zms',0,7947,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510773737.206341,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773737.209046,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 174, 4306 bytes','zm_rtp_source.cpp',345),(1510773737.210279,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 174, 0 bytes','zm_rtp_source.cpp',336),(1510773737.366282,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773737.370674,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 177, 1438 bytes','zm_rtp_source.cpp',345),(1510773737.375773,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 177, 0 bytes','zm_rtp_source.cpp',336),(1510773737.567075,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773737.572610,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 181, 10042 bytes','zm_rtp_source.cpp',345),(1510773744.807512,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773744.812667,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 369, 12910 bytes','zm_rtp_source.cpp',345),(1510773744.816284,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 369, 0 bytes','zm_rtp_source.cpp',336),(1510773745.205955,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773745.208840,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 377, 14344 bytes','zm_rtp_source.cpp',345),(1510773745.210193,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 377, 0 bytes','zm_rtp_source.cpp',336),(1510773751.286564,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773751.291699,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 534, 7174 bytes','zm_rtp_source.cpp',345),(1510773751.297426,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 534, 0 bytes','zm_rtp_source.cpp',336),(1510773752.046636,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773752.052206,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 552, 5740 bytes','zm_rtp_source.cpp',345),(1510773752.057867,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773752.063203,'zmc_m1',0,7943,-1,'WAR','Discarding frame 552','zm_rtp_source.cpp',349),(1510773758.610759,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773758.613893,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 722, 195028 bytes','zm_rtp_source.cpp',345),(1510773758.618299,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 722, 0 bytes','zm_rtp_source.cpp',336),(1510773770.948630,'zmc_m1',0,7899,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510773772.414813,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773772.420164,'zmc_m1',0,7943,-1,'WAR','Discarding frame 1079','zm_rtp_source.cpp',349),(1510773772.425153,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 1079, 0 bytes','zm_rtp_source.cpp',336),(1510773779.925762,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773779.928721,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 1274, 4306 bytes','zm_rtp_source.cpp',345),(1510773779.931339,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 1274, 0 bytes','zm_rtp_source.cpp',336),(1510773786.046551,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773786.049410,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 1432, 10042 bytes','zm_rtp_source.cpp',345),(1510773786.590735,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773786.593721,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 1446, 60232 bytes','zm_rtp_source.cpp',345),(1510773786.608312,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 1446, 0 bytes','zm_rtp_source.cpp',336),(1510773811.105375,'zmc_m1',0,7899,0,'INF','Monitor-1: 2000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510773814.484885,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773814.490526,'zmc_m1',0,7943,-1,'WAR','Discarding frame 2169','zm_rtp_source.cpp',349),(1510773814.495737,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 2169, 0 bytes','zm_rtp_source.cpp',336),(1510773814.704956,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773814.708959,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 2175, 8608 bytes','zm_rtp_source.cpp',345),(1510773814.711586,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 2175, 0 bytes','zm_rtp_source.cpp',336),(1510773821.925001,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773821.929586,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 2361, 5740 bytes','zm_rtp_source.cpp',345),(1510773821.934153,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 2361, 0 bytes','zm_rtp_source.cpp',336),(1510773828.445409,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773828.448332,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 2529, 8608 bytes','zm_rtp_source.cpp',345),(1510773828.451080,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 2529, 0 bytes','zm_rtp_source.cpp',336),(1510773828.603109,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773828.605901,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 2533, 190726 bytes','zm_rtp_source.cpp',345),(1510773828.608318,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 2533, 0 bytes','zm_rtp_source.cpp',336),(1510773835.525325,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773835.530847,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 2712, 5740 bytes','zm_rtp_source.cpp',345),(1510773835.535999,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 2712, 0 bytes','zm_rtp_source.cpp',336),(1510773835.685340,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773835.688178,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 2715, 8608 bytes','zm_rtp_source.cpp',345),(1510773835.690698,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 2715, 0 bytes','zm_rtp_source.cpp',336),(1510773836.245356,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773836.248273,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 2728, 5740 bytes','zm_rtp_source.cpp',345),(1510773836.250711,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 2728, 0 bytes','zm_rtp_source.cpp',336),(1510773849.084945,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773849.088092,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 3062, 8608 bytes','zm_rtp_source.cpp',345),(1510773849.090640,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 3062, 0 bytes','zm_rtp_source.cpp',336),(1510773851.464885,'zmc_m1',0,7899,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773856.324639,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773856.330145,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 3248, 2872 bytes','zm_rtp_source.cpp',345),(1510773856.335131,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 3248, 0 bytes','zm_rtp_source.cpp',336),(1510773891.498847,'zmc_m1',0,7899,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510773891.564435,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773891.567268,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 4164, 4306 bytes','zm_rtp_source.cpp',345),(1510773891.570108,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 4164, 0 bytes','zm_rtp_source.cpp',336),(1510773891.804616,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773891.809225,'zmc_m1',0,7943,-1,'WAR','Discarding frame 4169','zm_rtp_source.cpp',349),(1510773891.814661,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 4169, 0 bytes','zm_rtp_source.cpp',336),(1510773898.723687,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773898.726701,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 4349, 2872 bytes','zm_rtp_source.cpp',345),(1510773898.729121,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 4349, 0 bytes','zm_rtp_source.cpp',336),(1510773899.044265,'zmc_m1',0,7943,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773899.047066,'zmc_m1',0,7943,-1,'WAR','Discarding partial frame 4356, 7174 bytes','zm_rtp_source.cpp',345),(1510773899.049573,'zmc_m1',0,7943,-1,'WAR','Discarding incomplete frame 4356, 0 bytes','zm_rtp_source.cpp',336),(1510773931.207360,'zmpkg',NULL,8017,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773931.212010,'zmpkg',NULL,8017,0,'INF','Command: restart','zmpkg.pl',NULL),(1510773931.311150,'zmsystemctl',NULL,8023,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510773931.387400,'zmpkg',NULL,8028,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773931.390920,'zmpkg',NULL,8028,0,'INF','Command: stop','zmpkg.pl',NULL),(1510773931.571470,'zmdc',NULL,7868,0,'INF','\'zmtelemetry.pl\' sending stop to pid 7922 at 17/11/15 21:25:31','zmdc.pl',NULL),(1510773931.574590,'zmdc',NULL,7868,0,'INF','\'zmwatch.pl\' sending stop to pid 7916 at 17/11/15 21:25:31','zmdc.pl',NULL),(1510773931.577360,'zmdc',NULL,7868,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510773931.578860,'zmdc',NULL,7868,0,'INF','\'zmaudit.pl -c\' sending stop to pid 7908 at 17/11/15 21:25:31','zmdc.pl',NULL),(1510773931.582090,'zmdc',NULL,7868,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510773931.587770,'zmdc',NULL,7868,0,'INF','\'zmfilter.pl\' sending stop to pid 7902 at 17/11/15 21:25:31','zmdc.pl',NULL),(1510773931.593210,'zmdc',NULL,7868,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510773931.599010,'zmdc',NULL,7868,0,'INF','\'zmc -m 1\' sending stop to pid 7899 at 17/11/15 21:25:31','zmdc.pl',NULL),(1510773931.604600,'zmdc',NULL,7868,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510773931.609816,'zmc_m1',0,7899,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510773937.610930,'zmdc',NULL,7868,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 21:25:37. Sending KILL to pid 7899','zmdc.pl',NULL),(1510773937.636100,'zmdc',NULL,7868,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510773941.680185,'zms',0,7947,-2,'ERR','Terminating, last frame sent time 10.013647 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510773947.714090,'zmdc',NULL,7868,0,'INF','Server shutdown at 17/11/15 21:25:47','zmdc.pl',NULL),(1510773947.825310,'zmpkg',NULL,8076,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510773947.829190,'zmpkg',NULL,8076,0,'INF','Command: start','zmpkg.pl',NULL),(1510773948.052670,'zmdc',NULL,8091,0,'INF','Server starting at 17/11/15 21:25:48','zmdc.pl',NULL),(1510773951.055390,'zmpkg',NULL,8076,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510773951.154720,'zmdc',NULL,8119,0,'INF','\'zmc -m 1\' started at 17/11/15 21:25:51','zmdc.pl',NULL),(1510773951.154710,'zmdc',NULL,8091,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:25:51, pid = 8119','zmdc.pl',NULL),(1510773951.209580,'zmdc',NULL,8091,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510773951.214840,'zmdc',NULL,8091,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510773951.221350,'zmdc',NULL,8091,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:25:51, pid = 8124','zmdc.pl',NULL),(1510773951.221370,'zmdc',NULL,8124,0,'INF','\'zmc -m 1\' started at 17/11/15 21:25:51','zmdc.pl',NULL),(1510773951.275430,'zmdc',NULL,8091,0,'INF','\'zmfilter.pl\' starting at 17/11/15 21:25:51, pid = 8127','zmdc.pl',NULL),(1510773951.275500,'zmdc',NULL,8127,0,'INF','\'zmfilter.pl\' started at 17/11/15 21:25:51','zmdc.pl',NULL),(1510773951.378690,'zmdc',NULL,8133,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 21:25:51','zmdc.pl',NULL),(1510773951.378680,'zmdc',NULL,8091,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 21:25:51, pid = 8133','zmdc.pl',NULL),(1510773951.435350,'zmc_m1',0,8124,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510773951.472270,'zmfilter',NULL,8127,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510773951.507620,'zmdc',NULL,8139,0,'INF','\'zmwatch.pl\' started at 17/11/15 21:25:51','zmdc.pl',NULL),(1510773951.507620,'zmdc',NULL,8091,0,'INF','\'zmwatch.pl\' starting at 17/11/15 21:25:51, pid = 8139','zmdc.pl',NULL),(1510773951.606800,'zmdc',NULL,8146,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 21:25:51','zmdc.pl',NULL),(1510773951.606740,'zmdc',NULL,8091,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 21:25:51, pid = 8146','zmdc.pl',NULL),(1510773951.614860,'zmwatch',NULL,8139,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510773951.621890,'zmwatch',NULL,8139,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510773951.625708,'web_php',NULL,7310,-2,'ERR','socket_bind( /var/run/zm/zms-579025w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773951.625366,'web_php',NULL,7828,-2,'ERR','socket_bind( /var/run/zm/zms-579025w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773951.626167,'web_php',NULL,7617,-2,'ERR','socket_bind( /var/run/zm/zms-579025w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773951.627855,'web_php',NULL,8050,-2,'ERR','socket_bind( /var/run/zm/zms-579025w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773951.628368,'web_php',NULL,8048,-2,'ERR','socket_bind( /var/run/zm/zms-579025w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773953.626217,'web_php',NULL,7841,-2,'ERR','Socket /var/run/zm/zms-579025s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510773960.423450,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773960.430158,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 210, 45892 bytes','zm_rtp_source.cpp',345),(1510773960.437000,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 210, 0 bytes','zm_rtp_source.cpp',336),(1510773961.043026,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773961.049582,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 225, 1438 bytes','zm_rtp_source.cpp',345),(1510773961.052784,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773961.055242,'zmc_m1',0,8158,-1,'WAR','Discarding frame 225','zm_rtp_source.cpp',349),(1510773961.163453,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773961.166207,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 227, 4306 bytes','zm_rtp_source.cpp',345),(1510773961.169072,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 227, 0 bytes','zm_rtp_source.cpp',336),(1510773961.323133,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773961.325948,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 230, 10042 bytes','zm_rtp_source.cpp',345),(1510773961.327271,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 230, 0 bytes','zm_rtp_source.cpp',336),(1510773961.523977,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773961.529492,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 234, 11476 bytes','zm_rtp_source.cpp',345),(1510773961.535155,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 234, 0 bytes','zm_rtp_source.cpp',336),(1510773961.682602,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773961.687872,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 237, 5740 bytes','zm_rtp_source.cpp',345),(1510773961.692901,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 237, 0 bytes','zm_rtp_source.cpp',336),(1510773963.527386,'zms',0,8165,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510773963.532699,'zms',0,8165,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510773974.420310,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773974.425675,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 568, 35854 bytes','zm_rtp_source.cpp',345),(1510773974.430813,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 568, 0 bytes','zm_rtp_source.cpp',336),(1510773974.562368,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510773974.567661,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 571, 2872 bytes','zm_rtp_source.cpp',345),(1510773974.572676,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 571, 0 bytes','zm_rtp_source.cpp',336),(1510773992.747714,'zmc_m1',0,8124,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510774016.121716,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774016.128659,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 1649, 4306 bytes','zm_rtp_source.cpp',345),(1510774016.135416,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 1649, 0 bytes','zm_rtp_source.cpp',336),(1510774023.002316,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774023.005178,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 1828, 8608 bytes','zm_rtp_source.cpp',345),(1510774023.006596,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 1828, 0 bytes','zm_rtp_source.cpp',336),(1510774023.931811,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774023.935355,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 1850, 4306 bytes','zm_rtp_source.cpp',345),(1510774023.938207,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 1850, 0 bytes','zm_rtp_source.cpp',336),(1510774030.761655,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774030.764896,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 2028, 5740 bytes','zm_rtp_source.cpp',345),(1510774030.767331,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 2028, 0 bytes','zm_rtp_source.cpp',336),(1510774032.901312,'zmc_m1',0,8124,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774037.002167,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774037.005056,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 2189, 10042 bytes','zm_rtp_source.cpp',345),(1510774044.081680,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774044.087511,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 2371, 8608 bytes','zm_rtp_source.cpp',345),(1510774044.093030,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 2371, 0 bytes','zm_rtp_source.cpp',336),(1510774044.201580,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774044.205564,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 2373, 2872 bytes','zm_rtp_source.cpp',345),(1510774044.208033,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 2373, 0 bytes','zm_rtp_source.cpp',336),(1510774071.801615,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774071.805068,'zmc_m1',0,8158,-1,'WAR','Discarding frame 3090','zm_rtp_source.cpp',349),(1510774071.807763,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 3090, 0 bytes','zm_rtp_source.cpp',336),(1510774073.059586,'zmc_m1',0,8124,0,'INF','Monitor-1: 3000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510774086.459877,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774086.463081,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 3470, 78874 bytes','zm_rtp_source.cpp',345),(1510774086.473851,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 3470, 0 bytes','zm_rtp_source.cpp',336),(1510774107.821191,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774107.827545,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 4025, 7174 bytes','zm_rtp_source.cpp',345),(1510774107.831313,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 4025, 0 bytes','zm_rtp_source.cpp',336),(1510774113.118755,'zmc_m1',0,8124,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774113.879607,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774113.882556,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 4181, 4306 bytes','zm_rtp_source.cpp',345),(1510774113.886618,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 4181, 0 bytes','zm_rtp_source.cpp',336),(1510774120.940547,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774120.943535,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 4365, 10042 bytes','zm_rtp_source.cpp',345),(1510774120.980063,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774120.983122,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 4365, 4306 bytes','zm_rtp_source.cpp',345),(1510774120.985807,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 4365, 0 bytes','zm_rtp_source.cpp',336),(1510774121.619518,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774121.624682,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 4380, 1438 bytes','zm_rtp_source.cpp',345),(1510774121.629443,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 4380, 0 bytes','zm_rtp_source.cpp',336),(1510774122.099754,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774122.105871,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 4391, 4306 bytes','zm_rtp_source.cpp',345),(1510774122.111600,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 4391, 0 bytes','zm_rtp_source.cpp',336),(1510774142.441410,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774142.444743,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 4920, 7174 bytes','zm_rtp_source.cpp',345),(1510774142.449561,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 4920, 0 bytes','zm_rtp_source.cpp',336),(1510774153.359434,'zmc_m1',0,8124,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774164.421743,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774164.427300,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 5490, 166348 bytes','zm_rtp_source.cpp',345),(1510774164.432447,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 5490, 0 bytes','zm_rtp_source.cpp',336),(1510774171.138861,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774171.142440,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 5664, 5740 bytes','zm_rtp_source.cpp',345),(1510774171.145166,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 5664, 0 bytes','zm_rtp_source.cpp',336),(1510774177.218518,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774177.224334,'zmc_m1',0,8158,-1,'WAR','Discarding frame 5821','zm_rtp_source.cpp',349),(1510774177.230855,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 5821, 0 bytes','zm_rtp_source.cpp',336),(1510774177.698347,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774177.705383,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 5831, 11476 bytes','zm_rtp_source.cpp',345),(1510774177.712057,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 5831, 0 bytes','zm_rtp_source.cpp',336),(1510774178.437139,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774178.442790,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 5849, 60232 bytes','zm_rtp_source.cpp',345),(1510774178.462669,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 5849, 0 bytes','zm_rtp_source.cpp',336),(1510774184.178616,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774184.183919,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 5997, 5740 bytes','zm_rtp_source.cpp',345),(1510774184.189209,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 5997, 0 bytes','zm_rtp_source.cpp',336),(1510774184.218541,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774184.221622,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 5997, 4306 bytes','zm_rtp_source.cpp',345),(1510774184.223062,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 5997, 0 bytes','zm_rtp_source.cpp',336),(1510774184.436108,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774184.439387,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 6002, 34420 bytes','zm_rtp_source.cpp',345),(1510774184.478017,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 6002, 0 bytes','zm_rtp_source.cpp',336),(1510774184.545189,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774184.547907,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 6005, 2872 bytes','zm_rtp_source.cpp',345),(1510774184.551629,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 6005, 0 bytes','zm_rtp_source.cpp',336),(1510774184.979002,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774184.984001,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 6015, 5740 bytes','zm_rtp_source.cpp',345),(1510774184.988787,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 6015, 0 bytes','zm_rtp_source.cpp',336),(1510774185.060226,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774185.065542,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 6016, 2872 bytes','zm_rtp_source.cpp',345),(1510774185.078487,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 6016, 0 bytes','zm_rtp_source.cpp',336),(1510774185.218757,'zmc_m1',0,8158,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774185.221703,'zmc_m1',0,8158,-1,'WAR','Discarding partial frame 6019, 2872 bytes','zm_rtp_source.cpp',345),(1510774185.223413,'zmc_m1',0,8158,-1,'WAR','Discarding incomplete frame 6019, 0 bytes','zm_rtp_source.cpp',336),(1510774189.763320,'zmpkg',NULL,8250,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510774189.769910,'zmpkg',NULL,8250,0,'INF','Command: stop','zmpkg.pl',NULL),(1510774189.946380,'zmdc',NULL,8091,0,'INF','\'zmfilter.pl\' sending stop to pid 8127 at 17/11/15 21:29:49','zmdc.pl',NULL),(1510774189.953710,'zmdc',NULL,8091,0,'INF','\'zmwatch.pl\' sending stop to pid 8139 at 17/11/15 21:29:49','zmdc.pl',NULL),(1510774189.960060,'zmdc',NULL,8091,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510774189.966940,'zmdc',NULL,8091,0,'INF','\'zmtelemetry.pl\' sending stop to pid 8146 at 17/11/15 21:29:49','zmdc.pl',NULL),(1510774189.973640,'zmdc',NULL,8091,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510774189.980140,'zmdc',NULL,8091,0,'INF','\'zmaudit.pl -c\' sending stop to pid 8133 at 17/11/15 21:29:49','zmdc.pl',NULL),(1510774189.985120,'zmdc',NULL,8091,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510774189.987990,'zmdc',NULL,8091,0,'INF','\'zmc -m 1\' sending stop to pid 8124 at 17/11/15 21:29:49','zmdc.pl',NULL),(1510774189.990590,'zmdc',NULL,8091,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510774189.993245,'zmc_m1',0,8124,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510774195.994410,'zmdc',NULL,8091,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 21:29:55. Sending KILL to pid 8124','zmdc.pl',NULL),(1510774196.010450,'zmdc',NULL,8091,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510774200.051934,'zms',0,8165,-2,'ERR','Terminating, last frame sent time 10.002316 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510774202.142023,'web_php',NULL,7566,-2,'ERR','Socket /var/run/zm/zms-896811s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510774202.161526,'web_js',NULL,7566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-896811s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510774202.201066,'zms',0,8285,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510774202.204261,'zms',0,8285,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510774206.117350,'zmdc',NULL,8091,0,'INF','Server shutdown at 17/11/15 21:30:06','zmdc.pl',NULL),(1510774210.924110,'zmpkg',NULL,8310,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510774210.930810,'zmpkg',NULL,8310,0,'INF','Command: start','zmpkg.pl',NULL),(1510774211.104780,'zmdc',NULL,8324,0,'INF','Server starting at 17/11/15 21:30:11','zmdc.pl',NULL),(1510774212.241603,'zms',0,8285,-2,'ERR','Terminating, last frame sent time 10.014937 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510774214.111360,'zmpkg',NULL,8310,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510774214.147294,'web_php',NULL,7326,-2,'ERR','socket_bind( /var/run/zm/zms-896811w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510774214.162868,'web_js',NULL,7326,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-896811w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510774214.200768,'zms',0,8349,-2,'ERR','Got empty memory map file size 0, is the zmc process for this monitor running?','zm_monitor.cpp',533),(1510774214.205683,'zms',0,8349,-2,'ERR','Got signal 11 (Segmentation fault), crashing','zm_signal.cpp',50),(1510774214.207420,'zmdc',NULL,8351,0,'INF','\'zmc -m 1\' started at 17/11/15 21:30:14','zmdc.pl',NULL),(1510774214.207410,'zmdc',NULL,8324,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:30:14, pid = 8351','zmdc.pl',NULL),(1510774214.210413,'zms',0,8349,-2,'ERR','Signal address is (nil), from 0x558e5254079d','zm_signal.cpp',81),(1510774214.217586,'zms',0,8349,-2,'ERR','Backtrace 0: /usr/lib/zoneminder/cgi-bin/nph-zms(_Z14zm_die_handleriP9siginfo_tPv+0x78) [0x558e525910c8]','zm_signal.cpp',102),(1510774214.218965,'zms',0,8349,-2,'ERR','Backtrace 1: /lib/x86_64-linux-gnu/libpthread.so.0(+0x13150) [0x7f3f634a2150]','zm_signal.cpp',102),(1510774214.221446,'zms',0,8349,-2,'ERR','Backtrace 2: /usr/lib/zoneminder/cgi-bin/nph-zms(_ZNK7Monitor6GetFPSEv+0xd) [0x558e5254079d]','zm_signal.cpp',102),(1510774214.222741,'zms',0,8349,-2,'ERR','Backtrace 3: /usr/lib/zoneminder/cgi-bin/nph-zms(_ZN13MonitorStream9runStreamEv+0x48) [0x558e5254cf38]','zm_signal.cpp',102),(1510774214.225309,'zms',0,8349,-2,'ERR','Backtrace 4: /usr/lib/zoneminder/cgi-bin/nph-zms(main+0xb00) [0x558e52515010]','zm_signal.cpp',102),(1510774214.226594,'zms',0,8349,-2,'ERR','Backtrace 5: /lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf1) [0x7f3f5f7a51c1]','zm_signal.cpp',102),(1510774214.229136,'zms',0,8349,-2,'ERR','Backtrace 6: /usr/lib/zoneminder/cgi-bin/nph-zms(_start+0x2a) [0x558e52515e7a]','zm_signal.cpp',102),(1510774214.230423,'zms',0,8349,0,'INF','Backtrace complete, please execute the following command for more information','zm_signal.cpp',109),(1510774214.232890,'zms',0,8349,0,'INF','addr2line -e /usr/lib/zoneminder/cgi-bin/nph-zms 0x558e525910c8 0x7f3f634a2150 0x558e5254079d 0x558e5254cf38 0x558e52515010 0x7f3f5f7a51c1 0x558e52515e7a','zm_signal.cpp',110),(1510774214.250580,'zmdc',NULL,8324,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510774214.260290,'zmdc',NULL,8324,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510774214.266570,'zmdc',NULL,8324,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:30:14, pid = 8355','zmdc.pl',NULL),(1510774214.266570,'zmdc',NULL,8355,0,'INF','\'zmc -m 1\' started at 17/11/15 21:30:14','zmdc.pl',NULL),(1510774214.305190,'zmdc',NULL,8324,0,'INF','\'zmfilter.pl\' starting at 17/11/15 21:30:14, pid = 8357','zmdc.pl',NULL),(1510774214.305790,'zmdc',NULL,8357,0,'INF','\'zmfilter.pl\' started at 17/11/15 21:30:14','zmdc.pl',NULL),(1510774214.359163,'web_php',NULL,7841,-2,'ERR','socket_sendto( /var/run/zm/zms-896811s.sock ) failed: Connection refused','/usr/share/zoneminder/www/includes/functions.php',2033),(1510774214.396340,'zmdc',NULL,8324,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 21:30:14, pid = 8362','zmdc.pl',NULL),(1510774214.396820,'zmdc',NULL,8362,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 21:30:14','zmdc.pl',NULL),(1510774214.447596,'zmc_m1',0,8355,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510774214.463070,'zmfilter',NULL,8357,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510774214.493850,'zmdc',NULL,8324,0,'INF','\'zmwatch.pl\' starting at 17/11/15 21:30:14, pid = 8368','zmdc.pl',NULL),(1510774214.493860,'zmdc',NULL,8368,0,'INF','\'zmwatch.pl\' started at 17/11/15 21:30:14','zmdc.pl',NULL),(1510774214.565800,'zmwatch',NULL,8368,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510774214.568910,'zmwatch',NULL,8368,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510774214.573330,'zmdc',NULL,8324,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 21:30:14, pid = 8373','zmdc.pl',NULL),(1510774214.573330,'zmdc',NULL,8373,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 21:30:14','zmdc.pl',NULL),(1510774216.143611,'web_php',NULL,7326,-2,'ERR','socket_sendto( /var/run/zm/zms-896811s.sock ) failed: Connection refused','/usr/share/zoneminder/www/includes/functions.php',2033),(1510774216.160510,'web_js',NULL,7326,-2,'ERR','getStreamCmdResponse stream error: socket_sendto( /var/run/zm/zms-896811s.sock ) failed: Connection refused - checkStreamForErrors()','?view=watch',NULL),(1510774216.201654,'zms',0,8378,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510774216.207190,'zms',0,8378,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510774217.658894,'zms',0,8378,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510774223.605376,'zms',0,8392,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510774223.611279,'zms',0,8392,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510774234.377851,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774234.383514,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 492, 5740 bytes','zm_rtp_source.cpp',345),(1510774241.378183,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774241.381348,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 672, 4306 bytes','zm_rtp_source.cpp',345),(1510774241.382865,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 672, 0 bytes','zm_rtp_source.cpp',336),(1510774241.578229,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774241.581116,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 678, 4306 bytes','zm_rtp_source.cpp',345),(1510774241.582509,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 678, 0 bytes','zm_rtp_source.cpp',336),(1510774248.657625,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774248.660953,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 860, 4306 bytes','zm_rtp_source.cpp',345),(1510774248.663790,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 860, 0 bytes','zm_rtp_source.cpp',336),(1510774254.978452,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774254.984821,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 1023, 8608 bytes','zm_rtp_source.cpp',345),(1510774254.991148,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 1023, 0 bytes','zm_rtp_source.cpp',336),(1510774255.719115,'zmc_m1',0,8355,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510774262.598059,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774262.600933,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 1220, 11476 bytes','zm_rtp_source.cpp',345),(1510774262.602406,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 1220, 0 bytes','zm_rtp_source.cpp',336),(1510774268.978109,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774268.982849,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 1385, 7174 bytes','zm_rtp_source.cpp',345),(1510774268.986410,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 1385, 0 bytes','zm_rtp_source.cpp',336),(1510774269.338099,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774269.341401,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 1393, 8608 bytes','zm_rtp_source.cpp',345),(1510774269.342885,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 1393, 0 bytes','zm_rtp_source.cpp',336),(1510774269.617291,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774269.620566,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 1401, 4306 bytes','zm_rtp_source.cpp',345),(1510774269.623356,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 1401, 0 bytes','zm_rtp_source.cpp',336),(1510774283.218135,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774283.220923,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 1752, 8608 bytes','zm_rtp_source.cpp',345),(1510774283.222185,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 1752, 0 bytes','zm_rtp_source.cpp',336),(1510774283.777853,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774283.781364,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 1767, 7174 bytes','zm_rtp_source.cpp',345),(1510774283.784090,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 1767, 0 bytes','zm_rtp_source.cpp',336),(1510774295.958493,'zmc_m1',0,8355,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774296.977824,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774296.980717,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 2108, 11476 bytes','zm_rtp_source.cpp',345),(1510774296.983425,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 2108, 0 bytes','zm_rtp_source.cpp',336),(1510774304.699702,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774304.705558,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 2308, 14344 bytes','zm_rtp_source.cpp',345),(1510774304.857003,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774304.860049,'zmc_m1',0,8376,-1,'WAR','Discarding frame 2311','zm_rtp_source.cpp',349),(1510774304.863097,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 2311, 0 bytes','zm_rtp_source.cpp',336),(1510774311.859141,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774311.862269,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 2492, 2872 bytes','zm_rtp_source.cpp',345),(1510774311.865260,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 2492, 0 bytes','zm_rtp_source.cpp',336),(1510774312.303426,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774312.306258,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 2503, 7174 bytes','zm_rtp_source.cpp',345),(1510774312.308796,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774312.309935,'zmc_m1',0,8376,-1,'WAR','Discarding frame 2503','zm_rtp_source.cpp',349),(1510774312.311275,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 2503, 0 bytes','zm_rtp_source.cpp',336),(1510774336.157365,'zmc_m1',0,8355,0,'INF','Monitor-1: 3000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510774339.936953,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774339.941563,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 3221, 11476 bytes','zm_rtp_source.cpp',345),(1510774339.944049,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 3221, 0 bytes','zm_rtp_source.cpp',336),(1510774340.776849,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774340.779703,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 3241, 11476 bytes','zm_rtp_source.cpp',345),(1510774340.782210,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 3241, 0 bytes','zm_rtp_source.cpp',336),(1510774347.256288,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774347.259607,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 3408, 7174 bytes','zm_rtp_source.cpp',345),(1510774347.262252,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 3408, 0 bytes','zm_rtp_source.cpp',336),(1510774361.501736,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774361.507164,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 3779, 43024 bytes','zm_rtp_source.cpp',345),(1510774361.512813,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 3779, 0 bytes','zm_rtp_source.cpp',336),(1510774368.428710,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774368.435067,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 3957, 12910 bytes','zm_rtp_source.cpp',345),(1510774375.511371,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774375.515618,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 4141, 91780 bytes','zm_rtp_source.cpp',345),(1510774375.520523,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 4141, 0 bytes','zm_rtp_source.cpp',336),(1510774376.396095,'zmc_m1',0,8355,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774381.576461,'zms',0,8392,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510774382.335462,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774382.340932,'zmc_m1',0,8376,-1,'WAR','Discarding frame 4317','zm_rtp_source.cpp',349),(1510774382.346307,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 4317, 0 bytes','zm_rtp_source.cpp',336),(1510774382.415559,'zmc_m1',0,8376,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774382.420990,'zmc_m1',0,8376,-1,'WAR','Discarding partial frame 4318, 2872 bytes','zm_rtp_source.cpp',345),(1510774382.425897,'zmc_m1',0,8376,-1,'WAR','Discarding incomplete frame 4318, 0 bytes','zm_rtp_source.cpp',336),(1510774414.645900,'zmpkg',NULL,8471,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510774414.652260,'zmpkg',NULL,8471,0,'INF','Command: stop','zmpkg.pl',NULL),(1510774414.827980,'zmdc',NULL,8324,0,'INF','\'zmfilter.pl\' sending stop to pid 8357 at 17/11/15 21:33:34','zmdc.pl',NULL),(1510774414.833770,'zmdc',NULL,8324,0,'INF','\'zmtelemetry.pl\' sending stop to pid 8373 at 17/11/15 21:33:34','zmdc.pl',NULL),(1510774414.839210,'zmdc',NULL,8324,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510774414.844890,'zmdc',NULL,8324,0,'INF','\'zmwatch.pl\' sending stop to pid 8368 at 17/11/15 21:33:34','zmdc.pl',NULL),(1510774414.850080,'zmdc',NULL,8324,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510774414.854890,'zmdc',NULL,8324,0,'INF','\'zmc -m 1\' sending stop to pid 8355 at 17/11/15 21:33:34','zmdc.pl',NULL),(1510774414.858220,'zmdc',NULL,8324,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510774414.861345,'zmc_m1',0,8355,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510774414.861420,'zmdc',NULL,8324,0,'INF','\'zmaudit.pl -c\' sending stop to pid 8362 at 17/11/15 21:33:34','zmdc.pl',NULL),(1510774414.868370,'zmdc',NULL,8324,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510774419.872370,'zmdc',NULL,8324,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 21:33:39. Sending KILL to pid 8355','zmdc.pl',NULL),(1510774419.894400,'zmdc',NULL,8324,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510774429.983060,'zmdc',NULL,8324,0,'INF','Server shutdown at 17/11/15 21:33:49','zmdc.pl',NULL),(1510774459.535160,'zmpkg',NULL,1302,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510774459.546200,'zmpkg',NULL,1302,0,'INF','Command: start','zmpkg.pl',NULL),(1510774459.721350,'zmdc',NULL,1432,0,'INF','Server starting at 17/11/15 21:34:19','zmdc.pl',NULL),(1510774462.723750,'zmpkg',NULL,1302,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510774462.795300,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:34:22, pid = 1635','zmdc.pl',NULL),(1510774462.795300,'zmdc',NULL,1635,0,'INF','\'zmc -m 1\' started at 17/11/15 21:34:22','zmdc.pl',NULL),(1510774462.878490,'zmdc',NULL,1639,0,'INF','\'zmfilter.pl\' started at 17/11/15 21:34:22','zmdc.pl',NULL),(1510774462.878490,'zmdc',NULL,1432,0,'INF','\'zmfilter.pl\' starting at 17/11/15 21:34:22, pid = 1639','zmdc.pl',NULL),(1510774462.917590,'zmdc',NULL,1432,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510774462.920500,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510774462.922940,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:34:22, pid = 1644','zmdc.pl',NULL),(1510774462.923460,'zmdc',NULL,1644,0,'INF','\'zmc -m 1\' started at 17/11/15 21:34:22','zmdc.pl',NULL),(1510774462.981410,'zmdc',NULL,1432,0,'INF','\'zmaudit.pl -c\' starting at 17/11/15 21:34:22, pid = 1649','zmdc.pl',NULL),(1510774462.981420,'zmdc',NULL,1649,0,'INF','\'zmaudit.pl -c\' started at 17/11/15 21:34:22','zmdc.pl',NULL),(1510774463.069660,'zmdc',NULL,1432,0,'INF','\'zmwatch.pl\' starting at 17/11/15 21:34:23, pid = 1655','zmdc.pl',NULL),(1510774463.069800,'zmdc',NULL,1655,0,'INF','\'zmwatch.pl\' started at 17/11/15 21:34:23','zmdc.pl',NULL),(1510774463.081663,'zmc_m1',0,1644,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510774463.087380,'zmfilter',NULL,1639,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510774463.149550,'zmwatch',NULL,1655,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510774463.153330,'zmwatch',NULL,1655,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510774463.156800,'zmdc',NULL,1432,0,'INF','\'zmtelemetry.pl\' starting at 17/11/15 21:34:23, pid = 1665','zmdc.pl',NULL),(1510774463.156830,'zmdc',NULL,1665,0,'INF','\'zmtelemetry.pl\' started at 17/11/15 21:34:23','zmdc.pl',NULL),(1510774473.719345,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774473.722638,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 251, 7174 bytes','zm_rtp_source.cpp',345),(1510774473.724393,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 251, 0 bytes','zm_rtp_source.cpp',336),(1510774474.123883,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774474.127079,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 261, 107554 bytes','zm_rtp_source.cpp',345),(1510774474.140803,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 261, 0 bytes','zm_rtp_source.cpp',336),(1510774481.598918,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774481.604953,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 454, 1438 bytes','zm_rtp_source.cpp',345),(1510774481.610003,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 454, 0 bytes','zm_rtp_source.cpp',336),(1510774493.776560,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 615','zm_rtp_source.cpp',127),(1510774493.782752,'zmc_m1',0,1690,-1,'WAR','Discarding frame 716','zm_rtp_source.cpp',349),(1510774493.788718,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 716, 0 bytes','zm_rtp_source.cpp',336),(1510774495.104607,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774495.107652,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 750, 5740 bytes','zm_rtp_source.cpp',345),(1510774495.110620,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 750, 0 bytes','zm_rtp_source.cpp',336),(1510774501.842661,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774501.845615,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 922, 11476 bytes','zm_rtp_source.cpp',345),(1510774501.848344,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 922, 0 bytes','zm_rtp_source.cpp',336),(1510774502.484538,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774502.487581,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 939, 1438 bytes','zm_rtp_source.cpp',345),(1510774502.490134,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 939, 0 bytes','zm_rtp_source.cpp',336),(1510774506.522578,'zmc_m1',0,1644,0,'INF','Monitor-1: 1000 - Capturing at 23.26 fps','zm_monitor.cpp',3125),(1510774516.224367,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774516.230237,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 1294, 140536 bytes','zm_rtp_source.cpp',345),(1510774516.236689,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 1294, 0 bytes','zm_rtp_source.cpp',336),(1510774529.697296,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774529.702793,'zmc_m1',0,1690,-1,'WAR','Discarding frame 1643','zm_rtp_source.cpp',349),(1510774529.708889,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 1643, 0 bytes','zm_rtp_source.cpp',336),(1510774530.239362,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774530.244920,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 1656, 219406 bytes','zm_rtp_source.cpp',345),(1510774530.251247,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 1656, 0 bytes','zm_rtp_source.cpp',336),(1510774546.639521,'zmc_m1',0,1644,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774551.671370,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774551.677548,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 2212, 2872 bytes','zm_rtp_source.cpp',345),(1510774551.682943,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 2212, 0 bytes','zm_rtp_source.cpp',336),(1510774552.214452,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774552.219945,'zmc_m1',0,1690,-1,'WAR','Discarding frame 2226','zm_rtp_source.cpp',349),(1510774552.242297,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 2226, 0 bytes','zm_rtp_source.cpp',336),(1510774554.235164,'zms',0,2974,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510774554.238654,'zms',0,2974,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510774557.243410,'zmcontrol',NULL,2978,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510774557.269420,'zmcontrol',NULL,2982,0,'INF','Control server 1/Floureon starting at 17/11/15 21:35:57','zmcontrol.pl',NULL),(1510774558.237314,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774558.241557,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 2381, 184990 bytes','zm_rtp_source.cpp',345),(1510774558.246903,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 2381, 0 bytes','zm_rtp_source.cpp',336),(1510774564.941944,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774564.948028,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 2555, 7174 bytes','zm_rtp_source.cpp',345),(1510774564.953909,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 2555, 0 bytes','zm_rtp_source.cpp',336),(1510774565.422981,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774565.428876,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 2566, 11476 bytes','zm_rtp_source.cpp',345),(1510774565.433595,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 2566, 0 bytes','zm_rtp_source.cpp',336),(1510774565.980569,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774565.986697,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 2579, 5740 bytes','zm_rtp_source.cpp',345),(1510774565.993106,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 2579, 0 bytes','zm_rtp_source.cpp',336),(1510774578.960544,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774578.966165,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 2916, 5740 bytes','zm_rtp_source.cpp',345),(1510774578.971137,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 2916, 0 bytes','zm_rtp_source.cpp',336),(1510774579.780164,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774579.783102,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 2936, 4306 bytes','zm_rtp_source.cpp',345),(1510774579.785552,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 2936, 0 bytes','zm_rtp_source.cpp',336),(1510774586.462090,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774586.468952,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 3110, 4306 bytes','zm_rtp_source.cpp',345),(1510774586.474345,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 3110, 0 bytes','zm_rtp_source.cpp',336),(1510774587.000357,'zmc_m1',0,1644,0,'INF','Monitor-1: 3000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510774594.182019,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774594.184912,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 3310, 12910 bytes','zm_rtp_source.cpp',345),(1510774594.186479,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 3310, 0 bytes','zm_rtp_source.cpp',336),(1510774598.833573,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 699','zm_rtp_source.cpp',127),(1510774598.839224,'zmc_m1',0,1690,-1,'WAR','Discarding frame 3371','zm_rtp_source.cpp',349),(1510774598.842138,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 3371, 0 bytes','zm_rtp_source.cpp',336),(1510774629.316194,'zmc_m1',0,1644,0,'INF','Monitor-1: 4000 - Capturing at 23.81 fps','zm_monitor.cpp',3125),(1510774636.297210,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774636.302747,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 4344, 14344 bytes','zm_rtp_source.cpp',345),(1510774636.308158,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 4344, 0 bytes','zm_rtp_source.cpp',336),(1510774664.183325,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774664.188778,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 5068, 53062 bytes','zm_rtp_source.cpp',345),(1510774664.194258,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 5068, 0 bytes','zm_rtp_source.cpp',336),(1510774669.464565,'zmc_m1',0,1644,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774693.989082,'zms',0,2974,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510774693.991946,'zms',0,2974,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510774696.695677,'web_php',NULL,3106,-2,'ERR','socket_bind( /var/run/zm/zms-028562w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510774696.715912,'web_js',NULL,3106,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-028562w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510774696.749038,'zms',0,3112,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510774696.751647,'zms',0,3112,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510774696.752803,'zms',0,3112,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510774699.753588,'web_php',NULL,3104,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-028562s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510774700.041100,'zmcontrol',NULL,3114,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510774700.067420,'zmcontrol',NULL,3116,0,'INF','Control server 1/Floureon starting at 17/11/15 21:38:20','zmcontrol.pl',NULL),(1510774706.457366,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774706.460665,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 6165, 1438 bytes','zm_rtp_source.cpp',345),(1510774706.462250,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 6165, 0 bytes','zm_rtp_source.cpp',336),(1510774709.476605,'zmc_m1',0,1644,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774734.237975,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774734.241461,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 6886, 255256 bytes','zm_rtp_source.cpp',345),(1510774748.222894,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774748.226163,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 7249, 153442 bytes','zm_rtp_source.cpp',345),(1510774748.237926,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 7249, 0 bytes','zm_rtp_source.cpp',336),(1510774749.589261,'zmc_m1',0,1644,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774769.786357,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774769.789234,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 7808, 5740 bytes','zm_rtp_source.cpp',345),(1510774769.791703,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 7808, 0 bytes','zm_rtp_source.cpp',336),(1510774770.229680,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774770.232423,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 7819, 97516 bytes','zm_rtp_source.cpp',345),(1510774770.252555,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 7819, 0 bytes','zm_rtp_source.cpp',336),(1510774776.465581,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774776.468435,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 7981, 5740 bytes','zm_rtp_source.cpp',345),(1510774776.469733,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 7981, 0 bytes','zm_rtp_source.cpp',336),(1510774789.677970,'zmc_m1',0,1644,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774790.217148,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774790.223917,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 8337, 104686 bytes','zm_rtp_source.cpp',345),(1510774790.233798,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 8337, 0 bytes','zm_rtp_source.cpp',336),(1510774800.865132,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 694','zm_rtp_source.cpp',127),(1510774800.870844,'zmc_m1',0,1690,-1,'WAR','Discarding frame 8552','zm_rtp_source.cpp',349),(1510774800.876396,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 8552, 0 bytes','zm_rtp_source.cpp',336),(1510774804.214567,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774804.220014,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 8638, 144838 bytes','zm_rtp_source.cpp',345),(1510774804.225229,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 3','zm_rtp_source.cpp',127),(1510774804.230563,'zmc_m1',0,1690,-1,'WAR','Discarding frame 8638','zm_rtp_source.cpp',349),(1510774804.235802,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774804.241100,'zmc_m1',0,1690,-1,'WAR','Discarding frame 8638','zm_rtp_source.cpp',349),(1510774804.245231,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 8638, 0 bytes','zm_rtp_source.cpp',336),(1510774805.094175,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774805.096967,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 8660, 8608 bytes','zm_rtp_source.cpp',345),(1510774805.144452,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774805.147809,'zmc_m1',0,1690,-1,'WAR','Discarding frame 8660','zm_rtp_source.cpp',349),(1510774805.150942,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 8660, 0 bytes','zm_rtp_source.cpp',336),(1510774811.732794,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774811.738169,'zmc_m1',0,1690,-1,'WAR','Discarding frame 8830','zm_rtp_source.cpp',349),(1510774811.743141,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 8830, 0 bytes','zm_rtp_source.cpp',336),(1510774812.133715,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774812.138830,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 8839, 8608 bytes','zm_rtp_source.cpp',345),(1510774812.143645,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 8839, 0 bytes','zm_rtp_source.cpp',336),(1510774812.218891,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774812.222118,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 8841, 196462 bytes','zm_rtp_source.cpp',345),(1510774812.225158,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 8841, 0 bytes','zm_rtp_source.cpp',336),(1510774825.892708,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774825.899313,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 9195, 1438 bytes','zm_rtp_source.cpp',345),(1510774825.906197,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 9195, 0 bytes','zm_rtp_source.cpp',336),(1510774826.217970,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774826.221962,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 9203, 117592 bytes','zm_rtp_source.cpp',345),(1510774826.226267,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774826.229231,'zmc_m1',0,1690,-1,'WAR','Discarding frame 9203','zm_rtp_source.cpp',349),(1510774826.234924,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 9203, 0 bytes','zm_rtp_source.cpp',336),(1510774832.217676,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774832.220936,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 9358, 55930 bytes','zm_rtp_source.cpp',345),(1510774832.253208,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 9358, 0 bytes','zm_rtp_source.cpp',336),(1510774832.472119,'zmc_m1',0,1644,0,'INF','Monitor-1: 9000 - Capturing at 23.26 fps','zm_monitor.cpp',3125),(1510774833.052843,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774833.058702,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 9379, 2872 bytes','zm_rtp_source.cpp',345),(1510774833.064001,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 9379, 0 bytes','zm_rtp_source.cpp',336),(1510774833.173084,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774833.179009,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 9381, 5740 bytes','zm_rtp_source.cpp',345),(1510774833.184193,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 9381, 0 bytes','zm_rtp_source.cpp',336),(1510774839.493671,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774839.498902,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 9544, 10042 bytes','zm_rtp_source.cpp',345),(1510774846.234539,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774846.240598,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 9718, 126196 bytes','zm_rtp_source.cpp',345),(1510774846.255400,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 9718, 0 bytes','zm_rtp_source.cpp',336),(1510774847.393654,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774847.396728,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 9747, 5740 bytes','zm_rtp_source.cpp',345),(1510774847.399867,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 9747, 0 bytes','zm_rtp_source.cpp',336),(1510774854.213194,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774854.218533,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 9924, 51628 bytes','zm_rtp_source.cpp',345),(1510774854.233395,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 9924, 0 bytes','zm_rtp_source.cpp',336),(1510774860.229566,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774860.235199,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 10079, 200764 bytes','zm_rtp_source.cpp',345),(1510774860.240506,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 10079, 0 bytes','zm_rtp_source.cpp',336),(1510774860.585113,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774860.591027,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 10088, 4306 bytes','zm_rtp_source.cpp',345),(1510774860.593959,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 10088, 0 bytes','zm_rtp_source.cpp',336),(1510774867.542943,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774867.548461,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 10266, 11476 bytes','zm_rtp_source.cpp',345),(1510774867.553588,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 10266, 0 bytes','zm_rtp_source.cpp',336),(1510774867.783433,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774867.786410,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 10271, 2872 bytes','zm_rtp_source.cpp',345),(1510774867.789459,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 10271, 0 bytes','zm_rtp_source.cpp',336),(1510774867.863830,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774867.866662,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 10272, 5740 bytes','zm_rtp_source.cpp',345),(1510774867.869150,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 10272, 0 bytes','zm_rtp_source.cpp',336),(1510774868.143864,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774868.147204,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 10278, 7174 bytes','zm_rtp_source.cpp',345),(1510774868.152291,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 10278, 0 bytes','zm_rtp_source.cpp',336),(1510774872.993533,'zmc_m1',0,1644,0,'INF','Monitor-1: 10000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774873.985282,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774873.991249,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 10429, 4306 bytes','zm_rtp_source.cpp',345),(1510774873.996518,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 10429, 0 bytes','zm_rtp_source.cpp',336),(1510774874.221133,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774874.226608,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 10435, 162046 bytes','zm_rtp_source.cpp',345),(1510774874.233133,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 10435, 0 bytes','zm_rtp_source.cpp',336),(1510774882.144187,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774882.149266,'zmc_m1',0,1690,-1,'WAR','Discarding frame 10639','zm_rtp_source.cpp',349),(1510774882.154090,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 10639, 0 bytes','zm_rtp_source.cpp',336),(1510774882.220593,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774882.224592,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 10641, 153442 bytes','zm_rtp_source.cpp',345),(1510774882.232268,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 10641, 0 bytes','zm_rtp_source.cpp',336),(1510774896.412520,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774896.415244,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 11010, 8608 bytes','zm_rtp_source.cpp',345),(1510774896.419454,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 11010, 0 bytes','zm_rtp_source.cpp',336),(1510774899.544041,'zms',0,3112,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510774902.230099,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774902.235676,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 11159, 206500 bytes','zm_rtp_source.cpp',345),(1510774902.241199,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774902.246755,'zmc_m1',0,1690,-1,'WAR','Discarding frame 11159','zm_rtp_source.cpp',349),(1510774902.252799,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 11159, 0 bytes','zm_rtp_source.cpp',336),(1510774913.244852,'zmc_m1',0,1644,0,'INF','Monitor-1: 11000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510774924.190007,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774924.193257,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 11730, 14344 bytes','zm_rtp_source.cpp',345),(1510774924.225672,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 11730, 0 bytes','zm_rtp_source.cpp',336),(1510774930.011195,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774930.014336,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 11878, 11476 bytes','zm_rtp_source.cpp',345),(1510774930.017350,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 11878, 0 bytes','zm_rtp_source.cpp',336),(1510774930.217836,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774930.220876,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 11883, 130498 bytes','zm_rtp_source.cpp',345),(1510774930.232152,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 11883, 0 bytes','zm_rtp_source.cpp',336),(1510774950.931900,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774950.935120,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 12421, 2872 bytes','zm_rtp_source.cpp',345),(1510774950.938441,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 12421, 0 bytes','zm_rtp_source.cpp',336),(1510774951.091936,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774951.095128,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 12424, 7174 bytes','zm_rtp_source.cpp',345),(1510774951.098232,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 12424, 0 bytes','zm_rtp_source.cpp',336),(1510774951.462248,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774951.466497,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 12431, 11476 bytes','zm_rtp_source.cpp',345),(1510774951.471707,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 12431, 0 bytes','zm_rtp_source.cpp',336),(1510774951.622655,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774951.628455,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 12433, 11476 bytes','zm_rtp_source.cpp',345),(1510774951.634195,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 12433, 0 bytes','zm_rtp_source.cpp',336),(1510774953.649107,'zmc_m1',0,1644,0,'INF','Monitor-1: 12000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510774965.251498,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774965.256598,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 12787, 7174 bytes','zm_rtp_source.cpp',345),(1510774965.261156,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 12787, 0 bytes','zm_rtp_source.cpp',336),(1510774972.010779,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774972.014214,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 12960, 11476 bytes','zm_rtp_source.cpp',345),(1510774972.017496,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 12960, 0 bytes','zm_rtp_source.cpp',336),(1510774978.783711,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774978.792878,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 13136, 4306 bytes','zm_rtp_source.cpp',345),(1510774978.803326,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 13136, 0 bytes','zm_rtp_source.cpp',336),(1510774980.063543,'zmc_m1',0,1690,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510774980.066935,'zmc_m1',0,1690,-1,'WAR','Discarding partial frame 13167, 2872 bytes','zm_rtp_source.cpp',345),(1510774980.070205,'zmc_m1',0,1690,-1,'WAR','Discarding incomplete frame 13167, 0 bytes','zm_rtp_source.cpp',336),(1510774985.124890,'zmdc',NULL,1432,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510774985.201950,'zmdc',NULL,1432,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510774985.276090,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' sending stop to pid 1644 at 17/11/15 21:43:05','zmdc.pl',NULL),(1510774985.280314,'zmc_m1',0,1644,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510774991.281330,'zmdc',NULL,1432,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/15 21:43:11. Sending KILL to pid 1644','zmdc.pl',NULL),(1510774991.296080,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510774991.379490,'zmdc',NULL,3480,0,'INF','\'zmc -m 1\' started at 17/11/15 21:43:11','zmdc.pl',NULL),(1510774991.379490,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/15 21:43:11, pid = 3480','zmdc.pl',NULL),(1510774991.465540,'zmdc',NULL,1432,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510774991.504633,'zmc_m1',0,3480,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510774991.542050,'zmdc',NULL,1432,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510774993.231536,'zms',0,3502,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510774993.236281,'zms',0,3502,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510774998.295550,'zmcontrol',NULL,3504,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510774998.317330,'zmcontrol',NULL,3506,0,'INF','Control server 1/Floureon starting at 17/11/15 21:43:18','zmcontrol.pl',NULL),(1510775007.341837,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775007.347340,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 386, 1438 bytes','zm_rtp_source.cpp',345),(1510775007.352353,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 386, 0 bytes','zm_rtp_source.cpp',336),(1510775014.579298,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775014.585253,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 573, 207934 bytes','zm_rtp_source.cpp',345),(1510775014.590903,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 573, 0 bytes','zm_rtp_source.cpp',336),(1510775021.982628,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775021.988232,'zmc_m1',0,3497,-1,'WAR','Discarding frame 764','zm_rtp_source.cpp',349),(1510775021.993316,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 764, 0 bytes','zm_rtp_source.cpp',336),(1510775028.565390,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775028.568919,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 935, 54496 bytes','zm_rtp_source.cpp',345),(1510775028.587268,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 935, 0 bytes','zm_rtp_source.cpp',336),(1510775028.592674,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775028.597830,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 935, 4306 bytes','zm_rtp_source.cpp',345),(1510775028.603339,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 935, 0 bytes','zm_rtp_source.cpp',336),(1510775032.762137,'zmc_m1',0,3480,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510775048.703181,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775048.708488,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 1457, 2872 bytes','zm_rtp_source.cpp',345),(1510775048.713751,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 1457, 0 bytes','zm_rtp_source.cpp',336),(1510775049.742437,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775049.748148,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 1482, 2872 bytes','zm_rtp_source.cpp',345),(1510775049.753256,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 1482, 0 bytes','zm_rtp_source.cpp',336),(1510775055.783128,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775055.788365,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 1638, 7174 bytes','zm_rtp_source.cpp',345),(1510775055.793369,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 1638, 0 bytes','zm_rtp_source.cpp',336),(1510775056.142775,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775056.148237,'zmc_m1',0,3497,-1,'WAR','Discarding frame 1646','zm_rtp_source.cpp',349),(1510775056.151218,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 1646, 0 bytes','zm_rtp_source.cpp',336),(1510775072.911435,'zmc_m1',0,3480,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775076.330090,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775076.335885,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 2170, 2872 bytes','zm_rtp_source.cpp',345),(1510775076.341114,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 2170, 0 bytes','zm_rtp_source.cpp',336),(1510775081.046083,'zms',0,3502,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510775081.050112,'zms',0,3502,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510775083.360326,'web_php',NULL,3550,-2,'ERR','socket_bind( /var/run/zm/zms-452219w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510775083.374894,'web_js',NULL,3550,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-452219w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510775083.411388,'zms',0,3555,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510775083.414045,'zms',0,3555,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510775083.631401,'zms',0,3555,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510775083.890018,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775083.895419,'zmc_m1',0,3497,-1,'WAR','Discarding frame 2366','zm_rtp_source.cpp',349),(1510775083.900936,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 2366, 0 bytes','zm_rtp_source.cpp',336),(1510775083.930902,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775083.936260,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 2366, 10042 bytes','zm_rtp_source.cpp',345),(1510775084.050249,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775084.055427,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 2368, 4306 bytes','zm_rtp_source.cpp',345),(1510775084.060292,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 2368, 0 bytes','zm_rtp_source.cpp',336),(1510775084.585818,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775084.588913,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 2381, 174952 bytes','zm_rtp_source.cpp',345),(1510775084.591752,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775084.593205,'zmc_m1',0,3497,-1,'WAR','Discarding frame 2381','zm_rtp_source.cpp',349),(1510775084.596172,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 2381, 0 bytes','zm_rtp_source.cpp',336),(1510775085.710520,'zmcontrol',NULL,3559,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510775085.731610,'zmcontrol',NULL,3561,0,'INF','Control server 1/Floureon starting at 17/11/15 21:44:45','zmcontrol.pl',NULL),(1510775086.611651,'web_php',NULL,3549,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-452219s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510775098.545824,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775098.549467,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 2744, 67402 bytes','zm_rtp_source.cpp',345),(1510775098.552118,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 2744, 0 bytes','zm_rtp_source.cpp',336),(1510775104.782212,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775104.787266,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 2905, 7174 bytes','zm_rtp_source.cpp',345),(1510775104.792028,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 2905, 0 bytes','zm_rtp_source.cpp',336),(1510775112.209877,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775112.215325,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 3095, 14344 bytes','zm_rtp_source.cpp',345),(1510775112.220799,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 3095, 0 bytes','zm_rtp_source.cpp',336),(1510775113.271053,'zmc_m1',0,3480,0,'INF','Monitor-1: 3000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510775132.559373,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775132.562219,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 3624, 54496 bytes','zm_rtp_source.cpp',345),(1510775132.572943,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 3624, 0 bytes','zm_rtp_source.cpp',336),(1510775144.209382,'zms',0,3555,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510775144.212508,'zms',0,3555,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510775146.563844,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775146.569474,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 3987, 84610 bytes','zm_rtp_source.cpp',345),(1510775146.574751,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775146.580031,'zmc_m1',0,3497,-1,'WAR','Discarding frame 3987','zm_rtp_source.cpp',349),(1510775146.585549,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 3987, 0 bytes','zm_rtp_source.cpp',336),(1510775146.825017,'web_php',NULL,3592,-2,'ERR','Socket /var/run/zm/zms-452219s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510775146.840207,'web_js',NULL,3592,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-452219s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510775146.875880,'zms',0,3598,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510775146.878489,'zms',0,3598,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510775153.350126,'zmc_m1',0,3480,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775154.009018,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775154.014999,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 4179, 2872 bytes','zm_rtp_source.cpp',345),(1510775154.020014,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 4179, 0 bytes','zm_rtp_source.cpp',336),(1510775160.810652,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775160.816277,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 4356, 11476 bytes','zm_rtp_source.cpp',345),(1510775161.449301,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775161.454621,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 4371, 7174 bytes','zm_rtp_source.cpp',345),(1510775161.459773,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 4371, 0 bytes','zm_rtp_source.cpp',336),(1510775167.050118,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775167.055347,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 4516, 4306 bytes','zm_rtp_source.cpp',345),(1510775167.060541,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 4516, 0 bytes','zm_rtp_source.cpp',336),(1510775174.209023,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775174.214187,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 4700, 2872 bytes','zm_rtp_source.cpp',345),(1510775174.219394,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 4700, 0 bytes','zm_rtp_source.cpp',336),(1510775174.768967,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775174.774399,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 4715, 1438 bytes','zm_rtp_source.cpp',345),(1510775174.779473,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 4715, 0 bytes','zm_rtp_source.cpp',336),(1510775175.408904,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775175.411809,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 4730, 5740 bytes','zm_rtp_source.cpp',345),(1510775175.413109,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 4730, 0 bytes','zm_rtp_source.cpp',336),(1510775181.169183,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775181.171934,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 4879, 5740 bytes','zm_rtp_source.cpp',345),(1510775181.173156,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 4879, 0 bytes','zm_rtp_source.cpp',336),(1510775188.569574,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775188.572751,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 5070, 150574 bytes','zm_rtp_source.cpp',345),(1510775188.575922,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 5070, 0 bytes','zm_rtp_source.cpp',336),(1510775193.707823,'zmc_m1',0,3480,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775195.812340,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775195.816050,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 5257, 2872 bytes','zm_rtp_source.cpp',345),(1510775195.819287,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 5257, 0 bytes','zm_rtp_source.cpp',336),(1510775232.975910,'zmcontrol',NULL,3614,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510775232.998100,'zmcontrol',NULL,3616,0,'INF','Control server 1/Floureon starting at 17/11/15 21:47:12','zmcontrol.pl',NULL),(1510775233.757824,'zmc_m1',0,3480,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775258.419614,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775258.424785,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 6883, 2872 bytes','zm_rtp_source.cpp',345),(1510775258.429435,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 6883, 0 bytes','zm_rtp_source.cpp',336),(1510775265.621481,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775265.628679,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 7070, 1438 bytes','zm_rtp_source.cpp',345),(1510775265.633985,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 7070, 0 bytes','zm_rtp_source.cpp',336),(1510775272.139978,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775272.145364,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 7238, 12910 bytes','zm_rtp_source.cpp',345),(1510775272.150648,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 7238, 0 bytes','zm_rtp_source.cpp',336),(1510775273.866167,'zmc_m1',0,3480,0,'INF','Monitor-1: 7000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775286.848213,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775286.853246,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 7621, 4306 bytes','zm_rtp_source.cpp',345),(1510775286.856822,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 7621, 0 bytes','zm_rtp_source.cpp',336),(1510775294.288692,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775294.293990,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 7812, 11476 bytes','zm_rtp_source.cpp',345),(1510775313.948420,'zmc_m1',0,3480,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775329.100186,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775329.106997,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 8717, 2872 bytes','zm_rtp_source.cpp',345),(1510775329.113392,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 8717, 0 bytes','zm_rtp_source.cpp',336),(1510775353.999373,'zmc_m1',0,3480,0,'INF','Monitor-1: 9000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775357.367820,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775357.370837,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 9451, 2872 bytes','zm_rtp_source.cpp',345),(1510775357.373959,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 9451, 0 bytes','zm_rtp_source.cpp',336),(1510775357.407930,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775357.410670,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 9451, 10042 bytes','zm_rtp_source.cpp',345),(1510775357.414619,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 9451, 0 bytes','zm_rtp_source.cpp',336),(1510775363.568148,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775363.573089,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 9610, 10042 bytes','zm_rtp_source.cpp',345),(1510775363.577876,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 9610, 0 bytes','zm_rtp_source.cpp',336),(1510775364.542587,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775364.547777,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 9635, 30118 bytes','zm_rtp_source.cpp',345),(1510775364.580894,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 9635, 0 bytes','zm_rtp_source.cpp',336),(1510775370.562015,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775370.567220,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 9790, 91780 bytes','zm_rtp_source.cpp',345),(1510775370.572023,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 9790, 0 bytes','zm_rtp_source.cpp',336),(1510775377.940005,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775377.944239,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 9980, 5740 bytes','zm_rtp_source.cpp',345),(1510775377.949329,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775377.954754,'zmc_m1',0,3497,-1,'WAR','Discarding frame 9980','zm_rtp_source.cpp',349),(1510775377.960173,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 9980, 0 bytes','zm_rtp_source.cpp',336),(1510775378.541064,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775378.546122,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 9996, 10042 bytes','zm_rtp_source.cpp',345),(1510775378.548511,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775378.549819,'zmc_m1',0,3497,-1,'WAR','Discarding frame 9996','zm_rtp_source.cpp',349),(1510775378.552256,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775378.553687,'zmc_m1',0,3497,-1,'WAR','Discarding frame 9996','zm_rtp_source.cpp',349),(1510775378.572532,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 9996, 0 bytes','zm_rtp_source.cpp',336),(1510775384.859527,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775384.862467,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 10159, 11476 bytes','zm_rtp_source.cpp',345),(1510775391.437037,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775391.442753,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 10328, 2872 bytes','zm_rtp_source.cpp',345),(1510775391.447969,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 10328, 0 bytes','zm_rtp_source.cpp',336),(1510775394.352903,'zmc_m1',0,3480,0,'INF','Monitor-1: 10000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510775398.528196,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775398.531041,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 10513, 1438 bytes','zm_rtp_source.cpp',345),(1510775398.533539,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775398.536399,'zmc_m1',0,3497,-1,'WAR','Discarding frame 10513','zm_rtp_source.cpp',349),(1510775398.546477,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 10513, 0 bytes','zm_rtp_source.cpp',336),(1510775419.346332,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775419.352391,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11052, 12910 bytes','zm_rtp_source.cpp',345),(1510775420.541356,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775420.547485,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11083, 2872 bytes','zm_rtp_source.cpp',345),(1510775420.563871,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11083, 0 bytes','zm_rtp_source.cpp',336),(1510775426.698194,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775426.704499,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11242, 4306 bytes','zm_rtp_source.cpp',345),(1510775426.708847,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11242, 0 bytes','zm_rtp_source.cpp',336),(1510775426.737835,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775426.740721,'zmc_m1',0,3497,-1,'WAR','Discarding frame 11242','zm_rtp_source.cpp',349),(1510775426.742226,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11242, 0 bytes','zm_rtp_source.cpp',336),(1510775427.379528,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775427.382386,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11257, 5740 bytes','zm_rtp_source.cpp',345),(1510775427.384601,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11257, 0 bytes','zm_rtp_source.cpp',336),(1510775433.498909,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775433.502341,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11414, 12910 bytes','zm_rtp_source.cpp',345),(1510775433.505390,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11414, 0 bytes','zm_rtp_source.cpp',336),(1510775433.538380,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775433.541736,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11414, 8608 bytes','zm_rtp_source.cpp',345),(1510775433.547185,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11414, 0 bytes','zm_rtp_source.cpp',336),(1510775434.720164,'zmc_m1',0,3480,0,'INF','Monitor-1: 11000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775440.737771,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775440.743262,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11601, 1438 bytes','zm_rtp_source.cpp',345),(1510775440.748583,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11601, 0 bytes','zm_rtp_source.cpp',336),(1510775441.177688,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775441.183335,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11611, 4306 bytes','zm_rtp_source.cpp',345),(1510775441.188768,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775441.191789,'zmc_m1',0,3497,-1,'WAR','Discarding frame 11611','zm_rtp_source.cpp',349),(1510775441.193276,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11611, 0 bytes','zm_rtp_source.cpp',336),(1510775447.899926,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775447.903950,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11784, 5740 bytes','zm_rtp_source.cpp',345),(1510775447.906606,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11784, 0 bytes','zm_rtp_source.cpp',336),(1510775448.058737,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775448.061650,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11787, 5740 bytes','zm_rtp_source.cpp',345),(1510775448.064171,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11787, 0 bytes','zm_rtp_source.cpp',336),(1510775455.297303,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775455.300345,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 11975, 1438 bytes','zm_rtp_source.cpp',345),(1510775455.301946,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 11975, 0 bytes','zm_rtp_source.cpp',336),(1510775462.569895,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775462.572939,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 12163, 104686 bytes','zm_rtp_source.cpp',345),(1510775462.577614,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 12163, 0 bytes','zm_rtp_source.cpp',336),(1510775469.810205,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775469.813118,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 12350, 11476 bytes','zm_rtp_source.cpp',345),(1510775474.998298,'zmc_m1',0,3480,0,'INF','Monitor-1: 12000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775476.529578,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775476.535444,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 12525, 4306 bytes','zm_rtp_source.cpp',345),(1510775476.540312,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775476.544734,'zmc_m1',0,3497,-1,'WAR','Discarding frame 12525','zm_rtp_source.cpp',349),(1510775476.547547,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 12525, 0 bytes','zm_rtp_source.cpp',336),(1510775482.846336,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775482.849254,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 12688, 4306 bytes','zm_rtp_source.cpp',345),(1510775482.851857,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 12688, 0 bytes','zm_rtp_source.cpp',336),(1510775483.446846,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775483.450218,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 12702, 7174 bytes','zm_rtp_source.cpp',345),(1510775483.452978,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 12702, 0 bytes','zm_rtp_source.cpp',336),(1510775490.542464,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775490.545404,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 12886, 22948 bytes','zm_rtp_source.cpp',345),(1510775490.566800,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 12886, 0 bytes','zm_rtp_source.cpp',336),(1510775496.619078,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775496.621966,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 13043, 2872 bytes','zm_rtp_source.cpp',345),(1510775496.624745,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13043, 0 bytes','zm_rtp_source.cpp',336),(1510775504.542388,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775504.548065,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 13248, 11476 bytes','zm_rtp_source.cpp',345),(1510775504.571252,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13248, 0 bytes','zm_rtp_source.cpp',336),(1510775515.226683,'zmc_m1',0,3480,0,'INF','Monitor-1: 13000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510775518.297310,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775518.300342,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 13603, 10042 bytes','zm_rtp_source.cpp',345),(1510775518.301482,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13603, 0 bytes','zm_rtp_source.cpp',336),(1510775518.496659,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775518.501887,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 13607, 1438 bytes','zm_rtp_source.cpp',345),(1510775518.506730,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13607, 0 bytes','zm_rtp_source.cpp',336),(1510775518.556617,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775518.562045,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 13609, 94648 bytes','zm_rtp_source.cpp',345),(1510775518.567698,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13609, 0 bytes','zm_rtp_source.cpp',336),(1510775525.816325,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775525.821464,'zmc_m1',0,3497,-1,'WAR','Discarding frame 13796','zm_rtp_source.cpp',349),(1510775525.826767,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13796, 0 bytes','zm_rtp_source.cpp',336),(1510775532.017337,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775532.022542,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 13956, 1438 bytes','zm_rtp_source.cpp',345),(1510775532.027514,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13956, 0 bytes','zm_rtp_source.cpp',336),(1510775532.057280,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775532.062887,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 13956, 7174 bytes','zm_rtp_source.cpp',345),(1510775532.068318,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13956, 0 bytes','zm_rtp_source.cpp',336),(1510775532.137762,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775532.141743,'zmc_m1',0,3497,-1,'WAR','Discarding frame 13957','zm_rtp_source.cpp',349),(1510775532.144526,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13957, 0 bytes','zm_rtp_source.cpp',336),(1510775532.216334,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775532.219084,'zmc_m1',0,3497,-1,'WAR','Discarding frame 13958','zm_rtp_source.cpp',349),(1510775532.221774,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13958, 0 bytes','zm_rtp_source.cpp',336),(1510775532.499370,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775532.502284,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 13964, 1438 bytes','zm_rtp_source.cpp',345),(1510775532.504765,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 13964, 0 bytes','zm_rtp_source.cpp',336),(1510775538.765806,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775538.769461,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 14128, 4306 bytes','zm_rtp_source.cpp',345),(1510775538.773403,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 14128, 0 bytes','zm_rtp_source.cpp',336),(1510775539.176604,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775539.182207,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 14137, 5740 bytes','zm_rtp_source.cpp',345),(1510775539.188068,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 14137, 0 bytes','zm_rtp_source.cpp',336),(1510775546.539364,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775546.544873,'zmc_m1',0,3497,-1,'WAR','Discarding frame 14328','zm_rtp_source.cpp',349),(1510775546.563190,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 14328, 0 bytes','zm_rtp_source.cpp',336),(1510775546.884908,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775546.887858,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 14335, 12910 bytes','zm_rtp_source.cpp',345),(1510775546.889368,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 14335, 0 bytes','zm_rtp_source.cpp',336),(1510775553.017706,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775553.020961,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 14493, 5740 bytes','zm_rtp_source.cpp',345),(1510775553.024079,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 14493, 0 bytes','zm_rtp_source.cpp',336),(1510775555.836688,'zmc_m1',0,3480,0,'INF','Monitor-1: 14000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775559.815708,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775559.818743,'zmc_m1',0,3497,-1,'WAR','Discarding frame 14668','zm_rtp_source.cpp',349),(1510775559.821317,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 14668, 0 bytes','zm_rtp_source.cpp',336),(1510775567.216232,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775567.219080,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 14860, 5740 bytes','zm_rtp_source.cpp',345),(1510775567.221630,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 14860, 0 bytes','zm_rtp_source.cpp',336),(1510775580.377622,'zms',0,3598,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510775581.055135,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775581.057957,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 15219, 4306 bytes','zm_rtp_source.cpp',345),(1510775581.060355,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 15219, 0 bytes','zm_rtp_source.cpp',336),(1510775588.528873,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775588.531917,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 15413, 22948 bytes','zm_rtp_source.cpp',345),(1510775588.577298,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 15413, 0 bytes','zm_rtp_source.cpp',336),(1510775588.614735,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775588.617570,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 15414, 1438 bytes','zm_rtp_source.cpp',345),(1510775588.621368,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 15414, 0 bytes','zm_rtp_source.cpp',336),(1510775596.024568,'zmc_m1',0,3480,0,'INF','Monitor-1: 15000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510775602.765382,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775602.768752,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 15781, 12910 bytes','zm_rtp_source.cpp',345),(1510775603.164673,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775603.167562,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 15790, 7174 bytes','zm_rtp_source.cpp',345),(1510775603.169100,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 15790, 0 bytes','zm_rtp_source.cpp',336),(1510775603.244416,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775603.247569,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 15791, 5740 bytes','zm_rtp_source.cpp',345),(1510775603.250373,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 15791, 0 bytes','zm_rtp_source.cpp',336),(1510775624.537861,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775624.543111,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 16344, 61666 bytes','zm_rtp_source.cpp',345),(1510775624.551246,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 16344, 0 bytes','zm_rtp_source.cpp',336),(1510775636.185324,'zmc_m1',0,3480,0,'INF','Monitor-1: 16000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775637.094742,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775637.098083,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 16669, 2872 bytes','zm_rtp_source.cpp',345),(1510775637.101267,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 16669, 0 bytes','zm_rtp_source.cpp',336),(1510775637.923366,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775637.929323,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 16688, 12910 bytes','zm_rtp_source.cpp',345),(1510775637.935058,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 16688, 0 bytes','zm_rtp_source.cpp',336),(1510775651.204907,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775651.210474,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17033, 8608 bytes','zm_rtp_source.cpp',345),(1510775651.216298,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17033, 0 bytes','zm_rtp_source.cpp',336),(1510775652.567930,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775652.573034,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17068, 8608 bytes','zm_rtp_source.cpp',345),(1510775652.577856,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17068, 0 bytes','zm_rtp_source.cpp',336),(1510775658.603555,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775658.606757,'zmc_m1',0,3497,-1,'WAR','Discarding frame 17224','zm_rtp_source.cpp',349),(1510775658.609702,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17224, 0 bytes','zm_rtp_source.cpp',336),(1510775658.643508,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775658.646608,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17224, 1438 bytes','zm_rtp_source.cpp',345),(1510775658.649623,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17224, 0 bytes','zm_rtp_source.cpp',336),(1510775666.203946,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775666.209558,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17418, 10042 bytes','zm_rtp_source.cpp',345),(1510775666.215075,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17418, 0 bytes','zm_rtp_source.cpp',336),(1510775666.536945,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775666.542355,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17427, 53062 bytes','zm_rtp_source.cpp',345),(1510775666.547726,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17427, 0 bytes','zm_rtp_source.cpp',336),(1510775672.854337,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775672.859929,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17590, 4306 bytes','zm_rtp_source.cpp',345),(1510775672.864953,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17590, 0 bytes','zm_rtp_source.cpp',336),(1510775676.630109,'zmc_m1',0,3480,0,'INF','Monitor-1: 17000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775679.814520,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775679.819578,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17769, 7174 bytes','zm_rtp_source.cpp',345),(1510775679.824486,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17769, 0 bytes','zm_rtp_source.cpp',336),(1510775680.574833,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775680.577781,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17789, 7174 bytes','zm_rtp_source.cpp',345),(1510775680.580259,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17789, 0 bytes','zm_rtp_source.cpp',336),(1510775686.695081,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775686.697968,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17947, 12910 bytes','zm_rtp_source.cpp',345),(1510775686.700522,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17947, 0 bytes','zm_rtp_source.cpp',336),(1510775687.254151,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775687.257814,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17960, 4306 bytes','zm_rtp_source.cpp',345),(1510775687.261147,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17960, 0 bytes','zm_rtp_source.cpp',336),(1510775687.294670,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775687.297728,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 17960, 8608 bytes','zm_rtp_source.cpp',345),(1510775687.300531,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 17960, 0 bytes','zm_rtp_source.cpp',336),(1510775694.525344,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775694.531114,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 18148, 15778 bytes','zm_rtp_source.cpp',345),(1510775694.536360,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 18148, 0 bytes','zm_rtp_source.cpp',336),(1510775707.482722,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775707.488203,'zmc_m1',0,3497,-1,'WAR','Discarding frame 18483','zm_rtp_source.cpp',349),(1510775707.493545,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 18483, 0 bytes','zm_rtp_source.cpp',336),(1510775716.410699,'zms',0,3752,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510775716.416176,'zms',0,3752,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510775716.872452,'zmc_m1',0,3480,0,'INF','Monitor-1: 18000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775728.493285,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775728.497306,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 19027, 4306 bytes','zm_rtp_source.cpp',345),(1510775728.499676,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 19027, 0 bytes','zm_rtp_source.cpp',336),(1510775728.935965,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775728.938590,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 19039, 7174 bytes','zm_rtp_source.cpp',345),(1510775728.941282,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 19039, 0 bytes','zm_rtp_source.cpp',336),(1510775736.122700,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775736.126536,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 19224, 10042 bytes','zm_rtp_source.cpp',345),(1510775736.413389,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775736.416817,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 19230, 4306 bytes','zm_rtp_source.cpp',345),(1510775736.420163,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 19230, 0 bytes','zm_rtp_source.cpp',336),(1510775749.925614,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775749.928943,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 19581, 14344 bytes','zm_rtp_source.cpp',345),(1510775756.177662,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 6','zm_rtp_source.cpp',127),(1510775756.180639,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 19737, 7174 bytes','zm_rtp_source.cpp',345),(1510775756.183479,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 19737, 0 bytes','zm_rtp_source.cpp',336),(1510775756.233059,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 9','zm_rtp_source.cpp',127),(1510775756.238169,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 19740, 10042 bytes','zm_rtp_source.cpp',345),(1510775756.243388,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 19740, 0 bytes','zm_rtp_source.cpp',336),(1510775756.723024,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775756.728440,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 19755, 1438 bytes','zm_rtp_source.cpp',345),(1510775756.733451,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 19755, 0 bytes','zm_rtp_source.cpp',336),(1510775757.223029,'zmc_m1',0,3480,0,'INF','Monitor-1: 19000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510775784.735041,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775784.740565,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 20482, 14344 bytes','zm_rtp_source.cpp',345),(1510775784.746113,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 20482, 0 bytes','zm_rtp_source.cpp',336),(1510775785.133211,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775785.138669,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 20491, 5740 bytes','zm_rtp_source.cpp',345),(1510775785.142957,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 20491, 0 bytes','zm_rtp_source.cpp',336),(1510775785.535243,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775785.538415,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 20499, 25816 bytes','zm_rtp_source.cpp',345),(1510775793.622662,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 29','zm_rtp_source.cpp',127),(1510775793.625596,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 20705, 4306 bytes','zm_rtp_source.cpp',345),(1510775793.628389,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 20705, 0 bytes','zm_rtp_source.cpp',336),(1510775797.513502,'zmc_m1',0,3480,0,'INF','Monitor-1: 20000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775799.573502,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775799.578913,'zmc_m1',0,3497,-1,'WAR','Discarding frame 20860','zm_rtp_source.cpp',349),(1510775799.584559,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 20860, 0 bytes','zm_rtp_source.cpp',336),(1510775805.762097,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775805.767746,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 21020, 10042 bytes','zm_rtp_source.cpp',345),(1510775805.772647,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21020, 0 bytes','zm_rtp_source.cpp',336),(1510775806.720883,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775806.726151,'zmc_m1',0,3497,-1,'WAR','Discarding frame 21045','zm_rtp_source.cpp',349),(1510775806.731135,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21045, 0 bytes','zm_rtp_source.cpp',336),(1510775813.079103,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775813.083993,'zmc_m1',0,3497,-1,'WAR','Discarding frame 21209','zm_rtp_source.cpp',349),(1510775813.089157,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21209, 0 bytes','zm_rtp_source.cpp',336),(1510775813.881989,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775813.888126,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 21227, 14344 bytes','zm_rtp_source.cpp',345),(1510775813.893170,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21227, 0 bytes','zm_rtp_source.cpp',336),(1510775819.760832,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775819.766254,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 21379, 1438 bytes','zm_rtp_source.cpp',345),(1510775819.771327,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21379, 0 bytes','zm_rtp_source.cpp',336),(1510775819.921502,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775819.924755,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 21382, 10042 bytes','zm_rtp_source.cpp',345),(1510775819.926439,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21382, 0 bytes','zm_rtp_source.cpp',336),(1510775825.707383,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 6','zm_rtp_source.cpp',127),(1510775825.710553,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 21518, 12910 bytes','zm_rtp_source.cpp',345),(1510775825.713340,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21518, 0 bytes','zm_rtp_source.cpp',336),(1510775825.943858,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 8','zm_rtp_source.cpp',127),(1510775825.948168,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 21531, 1438 bytes','zm_rtp_source.cpp',345),(1510775825.953267,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21531, 0 bytes','zm_rtp_source.cpp',336),(1510775833.812513,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775833.818051,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 21738, 7174 bytes','zm_rtp_source.cpp',345),(1510775833.822892,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21738, 0 bytes','zm_rtp_source.cpp',336),(1510775838.030417,'zmc_m1',0,3480,0,'INF','Monitor-1: 21000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510775841.451975,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775841.454951,'zmc_m1',0,3497,-1,'WAR','Discarding frame 21936','zm_rtp_source.cpp',349),(1510775841.457714,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21936, 0 bytes','zm_rtp_source.cpp',336),(1510775841.572085,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775841.574869,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 21938, 7174 bytes','zm_rtp_source.cpp',345),(1510775841.577350,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21938, 0 bytes','zm_rtp_source.cpp',336),(1510775841.917590,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775841.921703,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 21946, 4306 bytes','zm_rtp_source.cpp',345),(1510775841.926420,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 21946, 0 bytes','zm_rtp_source.cpp',336),(1510775873.416727,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 26','zm_rtp_source.cpp',127),(1510775873.420172,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 22757, 14344 bytes','zm_rtp_source.cpp',345),(1510775873.421295,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 22757, 0 bytes','zm_rtp_source.cpp',336),(1510775875.963088,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775875.969078,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 22826, 5740 bytes','zm_rtp_source.cpp',345),(1510775875.974455,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 22826, 0 bytes','zm_rtp_source.cpp',336),(1510775876.001238,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775876.007515,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 22826, 14344 bytes','zm_rtp_source.cpp',345),(1510775878.383252,'zmc_m1',0,3480,0,'INF','Monitor-1: 22000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510775883.472909,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 3','zm_rtp_source.cpp',127),(1510775883.475797,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 23006, 4306 bytes','zm_rtp_source.cpp',345),(1510775883.477105,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 23006, 0 bytes','zm_rtp_source.cpp',336),(1510775883.546880,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 61','zm_rtp_source.cpp',127),(1510775883.549933,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 23010, 12910 bytes','zm_rtp_source.cpp',345),(1510775883.552676,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 23010, 0 bytes','zm_rtp_source.cpp',336),(1510775883.555532,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 15','zm_rtp_source.cpp',127),(1510775883.560486,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 23010, 21514 bytes','zm_rtp_source.cpp',345),(1510775883.565378,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 23010, 0 bytes','zm_rtp_source.cpp',336),(1510775890.280025,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775890.284855,'zmc_m1',0,3497,-1,'WAR','Discarding frame 23186','zm_rtp_source.cpp',349),(1510775890.288887,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 23186, 0 bytes','zm_rtp_source.cpp',336),(1510775893.575817,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 814','zm_rtp_source.cpp',127),(1510775893.581590,'zmc_m1',0,3497,-1,'WAR','Discarding frame 23200','zm_rtp_source.cpp',349),(1510775893.586857,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 23200, 0 bytes','zm_rtp_source.cpp',336),(1510775896.920677,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775896.925046,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 23287, 8608 bytes','zm_rtp_source.cpp',345),(1510775896.930129,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 23287, 0 bytes','zm_rtp_source.cpp',336),(1510775904.632256,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775904.638333,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 23486, 5740 bytes','zm_rtp_source.cpp',345),(1510775904.643345,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 23486, 0 bytes','zm_rtp_source.cpp',336),(1510775911.211549,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775911.216924,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 23656, 2872 bytes','zm_rtp_source.cpp',345),(1510775911.222227,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 23656, 0 bytes','zm_rtp_source.cpp',336),(1510775911.346134,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775911.352131,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 23657, 12910 bytes','zm_rtp_source.cpp',345),(1510775911.355925,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 23657, 0 bytes','zm_rtp_source.cpp',336),(1510775918.774167,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775918.779381,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 23840, 11476 bytes','zm_rtp_source.cpp',345),(1510775921.863985,'zmc_m1',0,3480,0,'INF','Monitor-1: 23000 - Capturing at 23.26 fps','zm_monitor.cpp',3125),(1510775939.439367,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775939.445366,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 24386, 4306 bytes','zm_rtp_source.cpp',345),(1510775939.479141,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775939.484567,'zmc_m1',0,3497,-1,'WAR','Discarding frame 24386','zm_rtp_source.cpp',349),(1510775939.488601,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 24386, 0 bytes','zm_rtp_source.cpp',336),(1510775946.439740,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775946.445062,'zmc_m1',0,3497,-1,'WAR','Discarding frame 24565','zm_rtp_source.cpp',349),(1510775946.450590,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 24565, 0 bytes','zm_rtp_source.cpp',336),(1510775953.639343,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775953.644505,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 24752, 2872 bytes','zm_rtp_source.cpp',345),(1510775953.649213,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 24752, 0 bytes','zm_rtp_source.cpp',336),(1510775962.019863,'zmc_m1',0,3480,0,'INF','Monitor-1: 24000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510775982.442598,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510775982.445538,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 25499, 17212 bytes','zm_rtp_source.cpp',345),(1510775982.448176,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 25499, 0 bytes','zm_rtp_source.cpp',336),(1510776002.071310,'zmc_m1',0,3480,0,'INF','Monitor-1: 25000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776002.399933,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776002.405381,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 26017, 10042 bytes','zm_rtp_source.cpp',345),(1510776002.410587,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 26017, 0 bytes','zm_rtp_source.cpp',336),(1510776002.561909,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776002.567770,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 26021, 117592 bytes','zm_rtp_source.cpp',345),(1510776002.573515,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 26021, 0 bytes','zm_rtp_source.cpp',336),(1510776008.856467,'zms',0,3752,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510776008.859191,'zms',0,3752,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510776010.078958,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776010.082181,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 26215, 2872 bytes','zm_rtp_source.cpp',345),(1510776010.084604,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 26215, 0 bytes','zm_rtp_source.cpp',336),(1510776010.358982,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776010.361774,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 26221, 4306 bytes','zm_rtp_source.cpp',345),(1510776010.366591,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 26221, 0 bytes','zm_rtp_source.cpp',336),(1510776010.703983,'web_php',NULL,3829,-2,'ERR','socket_bind( /var/run/zm/zms-678625w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510776010.720501,'web_js',NULL,3829,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-678625w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510776010.756921,'zms',0,3834,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510776010.762136,'zms',0,3834,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510776010.811934,'zms',0,3834,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510776011.613140,'zmcontrol',NULL,3838,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510776011.638280,'zmcontrol',NULL,3840,0,'INF','Control server 1/Floureon starting at 17/11/15 22:00:11','zmcontrol.pl',NULL),(1510776013.805191,'web_php',NULL,3828,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-678625s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510776016.239185,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776016.242128,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 26373, 4306 bytes','zm_rtp_source.cpp',345),(1510776016.244992,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 26373, 0 bytes','zm_rtp_source.cpp',336),(1510776016.560771,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776016.566288,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 26381, 104686 bytes','zm_rtp_source.cpp',345),(1510776016.571693,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 26381, 0 bytes','zm_rtp_source.cpp',336),(1510776023.999229,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776024.002198,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 26573, 8608 bytes','zm_rtp_source.cpp',345),(1510776024.005011,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 26573, 0 bytes','zm_rtp_source.cpp',336),(1510776024.079217,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776024.083816,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 26574, 5740 bytes','zm_rtp_source.cpp',345),(1510776024.089302,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 26574, 0 bytes','zm_rtp_source.cpp',336),(1510776026.281168,'zms',0,3834,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510776028.320590,'zmcontrol',NULL,3881,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510776028.343590,'zmcontrol',NULL,3883,0,'INF','Control server 1/Floureon starting at 17/11/15 22:00:28','zmcontrol.pl',NULL),(1510776028.707081,'web_php',NULL,3875,-2,'ERR','socket_bind( /var/run/zm/zms-678625w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510776028.735422,'web_js',NULL,3875,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-678625w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510776028.782226,'zms',0,3886,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510776028.784862,'zms',0,3886,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510776028.903363,'zms',0,3886,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510776030.656331,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776030.659406,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 26745, 5740 bytes','zm_rtp_source.cpp',345),(1510776030.662056,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 26745, 0 bytes','zm_rtp_source.cpp',336),(1510776031.886743,'web_php',NULL,3873,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-678625s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510776042.477499,'zmc_m1',0,3480,0,'INF','Monitor-1: 26000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776051.196005,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776051.202369,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 27278, 10042 bytes','zm_rtp_source.cpp',345),(1510776051.208868,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 27278, 0 bytes','zm_rtp_source.cpp',336),(1510776052.129726,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776052.133314,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 27300, 10042 bytes','zm_rtp_source.cpp',345),(1510776052.136067,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 27300, 0 bytes','zm_rtp_source.cpp',336),(1510776052.168812,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776052.171887,'zmc_m1',0,3497,-1,'WAR','Discarding frame 27300','zm_rtp_source.cpp',349),(1510776052.173681,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 27300, 0 bytes','zm_rtp_source.cpp',336),(1510776065.170008,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776065.175020,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 27638, 8608 bytes','zm_rtp_source.cpp',345),(1510776065.179502,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 27638, 0 bytes','zm_rtp_source.cpp',336),(1510776065.209499,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776065.214150,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 27638, 8608 bytes','zm_rtp_source.cpp',345),(1510776065.218958,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 27638, 0 bytes','zm_rtp_source.cpp',336),(1510776065.289691,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776065.294691,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 27639, 5740 bytes','zm_rtp_source.cpp',345),(1510776065.297138,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 27639, 0 bytes','zm_rtp_source.cpp',336),(1510776072.208724,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776072.211593,'zmc_m1',0,3497,-1,'WAR','Discarding frame 27817','zm_rtp_source.cpp',349),(1510776072.214128,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 27817, 0 bytes','zm_rtp_source.cpp',336),(1510776073.010029,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776073.013136,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 27838, 10042 bytes','zm_rtp_source.cpp',345),(1510776073.015861,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 27838, 0 bytes','zm_rtp_source.cpp',336),(1510776073.249569,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776073.253842,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 27843, 2872 bytes','zm_rtp_source.cpp',345),(1510776073.258838,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 27843, 0 bytes','zm_rtp_source.cpp',336),(1510776079.279051,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776079.284211,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 27999, 11476 bytes','zm_rtp_source.cpp',345),(1510776079.289179,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 27999, 0 bytes','zm_rtp_source.cpp',336),(1510776079.359375,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776079.364548,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 28000, 12910 bytes','zm_rtp_source.cpp',345),(1510776079.478070,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776079.480959,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 28002, 5740 bytes','zm_rtp_source.cpp',345),(1510776079.483495,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 28002, 0 bytes','zm_rtp_source.cpp',336),(1510776082.914752,'zmc_m1',0,3480,0,'INF','Monitor-1: 27000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776087.598293,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776087.603686,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 28212, 10042 bytes','zm_rtp_source.cpp',345),(1510776087.609441,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 28212, 0 bytes','zm_rtp_source.cpp',336),(1510776094.521977,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776094.525891,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 28392, 32986 bytes','zm_rtp_source.cpp',345),(1510776094.530242,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 28392, 0 bytes','zm_rtp_source.cpp',336),(1510776100.529520,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776100.535736,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 28547, 54496 bytes','zm_rtp_source.cpp',345),(1510776100.541950,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 28547, 0 bytes','zm_rtp_source.cpp',336),(1510776101.728854,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776101.733103,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 28576, 1438 bytes','zm_rtp_source.cpp',345),(1510776101.737920,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 28576, 0 bytes','zm_rtp_source.cpp',336),(1510776108.729772,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776108.732649,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 28758, 11476 bytes','zm_rtp_source.cpp',345),(1510776108.733991,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 28758, 0 bytes','zm_rtp_source.cpp',336),(1510776115.158417,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776115.161178,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 28924, 8608 bytes','zm_rtp_source.cpp',345),(1510776115.163579,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 28924, 0 bytes','zm_rtp_source.cpp',336),(1510776115.318661,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776115.321440,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 28927, 10042 bytes','zm_rtp_source.cpp',345),(1510776115.323939,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 28927, 0 bytes','zm_rtp_source.cpp',336),(1510776115.437634,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776115.440406,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 28929, 2872 bytes','zm_rtp_source.cpp',345),(1510776115.443026,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 28929, 0 bytes','zm_rtp_source.cpp',336),(1510776123.230944,'zmc_m1',0,3480,0,'INF','Monitor-1: 28000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510776129.769122,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776129.771965,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 29300, 10042 bytes','zm_rtp_source.cpp',345),(1510776129.773373,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 29300, 0 bytes','zm_rtp_source.cpp',336),(1510776143.517629,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776143.520580,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 29657, 7174 bytes','zm_rtp_source.cpp',345),(1510776143.522078,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 29657, 0 bytes','zm_rtp_source.cpp',336),(1510776143.598626,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776143.603108,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 29658, 10042 bytes','zm_rtp_source.cpp',345),(1510776143.608937,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 29658, 0 bytes','zm_rtp_source.cpp',336),(1510776156.488770,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776156.494921,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 29991, 2872 bytes','zm_rtp_source.cpp',345),(1510776156.500393,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 29991, 0 bytes','zm_rtp_source.cpp',336),(1510776156.531095,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776156.536804,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 29993, 11476 bytes','zm_rtp_source.cpp',345),(1510776156.542516,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 29993, 0 bytes','zm_rtp_source.cpp',336),(1510776156.568827,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776156.572192,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 29993, 1438 bytes','zm_rtp_source.cpp',345),(1510776156.573791,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 29993, 0 bytes','zm_rtp_source.cpp',336),(1510776156.609261,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776156.612395,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 29993, 8608 bytes','zm_rtp_source.cpp',345),(1510776156.614186,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 29993, 0 bytes','zm_rtp_source.cpp',336),(1510776157.289283,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776157.292385,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 30009, 14344 bytes','zm_rtp_source.cpp',345),(1510776157.728460,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776157.731420,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 30019, 7174 bytes','zm_rtp_source.cpp',345),(1510776157.735085,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 30019, 0 bytes','zm_rtp_source.cpp',336),(1510776163.589458,'zmc_m1',0,3480,0,'INF','Monitor-1: 29000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776184.648372,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776184.653694,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 30719, 7174 bytes','zm_rtp_source.cpp',345),(1510776184.659502,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 30719, 0 bytes','zm_rtp_source.cpp',336),(1510776185.968900,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776185.971810,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 30751, 7174 bytes','zm_rtp_source.cpp',345),(1510776185.973127,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 30751, 0 bytes','zm_rtp_source.cpp',336),(1510776192.476618,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776192.479540,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 30919, 1438 bytes','zm_rtp_source.cpp',345),(1510776192.482012,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 30919, 0 bytes','zm_rtp_source.cpp',336),(1510776203.708688,'zmc_m1',0,3480,0,'INF','Monitor-1: 30000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776220.076514,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776220.080623,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 31636, 2872 bytes','zm_rtp_source.cpp',345),(1510776220.083478,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 31636, 0 bytes','zm_rtp_source.cpp',336),(1510776221.156706,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776221.159582,'zmc_m1',0,3497,-1,'WAR','Discarding frame 31664','zm_rtp_source.cpp',349),(1510776221.162377,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 31664, 0 bytes','zm_rtp_source.cpp',336),(1510776234.607428,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776234.610988,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 32013, 2872 bytes','zm_rtp_source.cpp',345),(1510776234.616320,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 32013, 0 bytes','zm_rtp_source.cpp',336),(1510776234.727457,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776234.732785,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 32015, 5740 bytes','zm_rtp_source.cpp',345),(1510776234.738281,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 32015, 0 bytes','zm_rtp_source.cpp',336),(1510776242.248388,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776242.254127,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 32208, 11476 bytes','zm_rtp_source.cpp',345),(1510776242.259755,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 32208, 0 bytes','zm_rtp_source.cpp',336),(1510776243.908395,'zmc_m1',0,3480,0,'INF','Monitor-1: 31000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776248.436800,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776248.442101,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 32368, 1438 bytes','zm_rtp_source.cpp',345),(1510776248.447194,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 32368, 0 bytes','zm_rtp_source.cpp',336),(1510776248.518258,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776248.521347,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 32371, 2872 bytes','zm_rtp_source.cpp',345),(1510776248.526808,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776248.529543,'zmc_m1',0,3497,-1,'WAR','Discarding frame 32371','zm_rtp_source.cpp',349),(1510776248.532615,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 32371, 0 bytes','zm_rtp_source.cpp',336),(1510776262.207055,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776262.209982,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 32724, 1438 bytes','zm_rtp_source.cpp',345),(1510776262.212444,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 32724, 0 bytes','zm_rtp_source.cpp',336),(1510776262.607010,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776262.609895,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 32735, 4306 bytes','zm_rtp_source.cpp',345),(1510776262.612440,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 32735, 0 bytes','zm_rtp_source.cpp',336),(1510776276.520263,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776276.525563,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 33096, 28684 bytes','zm_rtp_source.cpp',345),(1510776276.531167,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 33096, 0 bytes','zm_rtp_source.cpp',336),(1510776283.288065,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776283.293177,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 33270, 14344 bytes','zm_rtp_source.cpp',345),(1510776283.327215,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776283.332639,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 33270, 4306 bytes','zm_rtp_source.cpp',345),(1510776283.338665,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 33270, 0 bytes','zm_rtp_source.cpp',336),(1510776283.686776,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776283.692342,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 33278, 4306 bytes','zm_rtp_source.cpp',345),(1510776283.698324,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 33278, 0 bytes','zm_rtp_source.cpp',336),(1510776284.226543,'zmc_m1',0,3480,0,'INF','Monitor-1: 32000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510776290.316378,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776290.319338,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 33449, 5740 bytes','zm_rtp_source.cpp',345),(1510776290.322056,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 33449, 0 bytes','zm_rtp_source.cpp',336),(1510776290.476601,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776290.479999,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 33452, 14344 bytes','zm_rtp_source.cpp',345),(1510776304.607054,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776304.610255,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 33820, 10042 bytes','zm_rtp_source.cpp',345),(1510776304.612954,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 33820, 0 bytes','zm_rtp_source.cpp',336),(1510776305.046659,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776305.052153,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 33830, 4306 bytes','zm_rtp_source.cpp',345),(1510776305.057426,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 33830, 0 bytes','zm_rtp_source.cpp',336),(1510776311.396025,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776311.398900,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 33994, 5740 bytes','zm_rtp_source.cpp',345),(1510776311.401513,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 33994, 0 bytes','zm_rtp_source.cpp',336),(1510776323.447986,'zms',0,3900,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510776323.449102,'zms',0,3886,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510776323.455930,'zms',0,3900,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510776323.459945,'zms',0,3886,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510776323.469314,'zms',0,3900,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510776323.474080,'zms',0,3900,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510776324.414346,'zmc_m1',0,3480,0,'INF','Monitor-1: 33000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776325.848840,'zmcontrol',NULL,3985,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510776325.870540,'zmcontrol',NULL,3989,0,'INF','Control server 1/Floureon starting at 17/11/15 22:05:25','zmcontrol.pl',NULL),(1510776326.390276,'web_php',NULL,3978,-2,'ERR','Socket /var/run/zm/zms-678625s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510776326.406583,'web_js',NULL,3978,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-678625s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510776326.443429,'zms',0,3990,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510776326.448904,'zms',0,3990,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510776332.647266,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776332.652654,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 34546, 10042 bytes','zm_rtp_source.cpp',345),(1510776332.658016,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 34546, 0 bytes','zm_rtp_source.cpp',336),(1510776332.887222,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776332.892648,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 34551, 11476 bytes','zm_rtp_source.cpp',345),(1510776332.897783,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 34551, 0 bytes','zm_rtp_source.cpp',336),(1510776354.206154,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776354.211285,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 35103, 1438 bytes','zm_rtp_source.cpp',345),(1510776354.216511,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 35103, 0 bytes','zm_rtp_source.cpp',336),(1510776354.246108,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776354.251483,'zmc_m1',0,3497,-1,'WAR','Discarding frame 35103','zm_rtp_source.cpp',349),(1510776354.257047,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 35103, 0 bytes','zm_rtp_source.cpp',336),(1510776361.327301,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776361.333507,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 35287, 12910 bytes','zm_rtp_source.cpp',345),(1510776364.628895,'zmc_m1',0,3480,0,'INF','Monitor-1: 34000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776381.405303,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776381.408254,'zmc_m1',0,3497,-1,'WAR','Discarding frame 35808','zm_rtp_source.cpp',349),(1510776381.409608,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 35808, 0 bytes','zm_rtp_source.cpp',336),(1510776381.446152,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776381.451487,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 35808, 8608 bytes','zm_rtp_source.cpp',345),(1510776381.456765,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 35808, 0 bytes','zm_rtp_source.cpp',336),(1510776381.525879,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776381.531311,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 35809, 1438 bytes','zm_rtp_source.cpp',345),(1510776381.536457,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 35809, 0 bytes','zm_rtp_source.cpp',336),(1510776382.085987,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776382.091316,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 35822, 5740 bytes','zm_rtp_source.cpp',345),(1510776382.094102,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 35822, 0 bytes','zm_rtp_source.cpp',336),(1510776382.286600,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776382.289403,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 35826, 7174 bytes','zm_rtp_source.cpp',345),(1510776382.291917,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 35826, 0 bytes','zm_rtp_source.cpp',336),(1510776382.486754,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776382.489664,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 35830, 12910 bytes','zm_rtp_source.cpp',345),(1510776382.492409,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 35830, 0 bytes','zm_rtp_source.cpp',336),(1510776395.887067,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776395.890058,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 36178, 14344 bytes','zm_rtp_source.cpp',345),(1510776396.711441,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776396.716668,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 36200, 11476 bytes','zm_rtp_source.cpp',345),(1510776396.719150,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 36200, 0 bytes','zm_rtp_source.cpp',336),(1510776404.947060,'zmc_m1',0,3480,0,'INF','Monitor-1: 35000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776409.634919,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776409.637990,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 36534, 2872 bytes','zm_rtp_source.cpp',345),(1510776409.640650,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 36534, 0 bytes','zm_rtp_source.cpp',336),(1510776409.754312,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776409.759473,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 36535, 14344 bytes','zm_rtp_source.cpp',345),(1510776409.762077,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 36535, 0 bytes','zm_rtp_source.cpp',336),(1510776416.518094,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776416.523242,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 36711, 28684 bytes','zm_rtp_source.cpp',345),(1510776416.528115,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 36711, 0 bytes','zm_rtp_source.cpp',336),(1510776423.766584,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776423.772162,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 36897, 11476 bytes','zm_rtp_source.cpp',345),(1510776423.774930,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 36897, 0 bytes','zm_rtp_source.cpp',336),(1510776423.846517,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776423.849440,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 36898, 7174 bytes','zm_rtp_source.cpp',345),(1510776423.852263,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 36898, 0 bytes','zm_rtp_source.cpp',336),(1510776424.125823,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776424.128579,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 36904, 5740 bytes','zm_rtp_source.cpp',345),(1510776424.129927,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 36904, 0 bytes','zm_rtp_source.cpp',336),(1510776431.246371,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776431.249162,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 37089, 10042 bytes','zm_rtp_source.cpp',345),(1510776431.251586,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 37089, 0 bytes','zm_rtp_source.cpp',336),(1510776438.035179,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776438.038452,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 37264, 8608 bytes','zm_rtp_source.cpp',345),(1510776438.043626,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 37264, 0 bytes','zm_rtp_source.cpp',336),(1510776438.154544,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776438.159074,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 37266, 2872 bytes','zm_rtp_source.cpp',345),(1510776438.160348,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 37266, 0 bytes','zm_rtp_source.cpp',336),(1510776438.355296,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776438.358189,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 37270, 14344 bytes','zm_rtp_source.cpp',345),(1510776438.476042,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776438.478910,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 37272, 12910 bytes','zm_rtp_source.cpp',345),(1510776438.481467,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 37272, 0 bytes','zm_rtp_source.cpp',336),(1510776445.423983,'zmc_m1',0,3480,0,'INF','Monitor-1: 36000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510776452.804950,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776452.808137,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 37645, 4306 bytes','zm_rtp_source.cpp',345),(1510776452.809505,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 37645, 0 bytes','zm_rtp_source.cpp',336),(1510776465.845686,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776465.848742,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 37982, 11476 bytes','zm_rtp_source.cpp',345),(1510776465.850409,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 37982, 0 bytes','zm_rtp_source.cpp',336),(1510776485.505874,'zmc_m1',0,3480,0,'INF','Monitor-1: 37000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776486.645096,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776486.649296,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 38523, 5740 bytes','zm_rtp_source.cpp',345),(1510776486.654146,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 38523, 0 bytes','zm_rtp_source.cpp',336),(1510776487.404481,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776487.410116,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 38541, 2872 bytes','zm_rtp_source.cpp',345),(1510776487.415491,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 38541, 0 bytes','zm_rtp_source.cpp',336),(1510776493.566218,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776493.571452,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 38700, 14344 bytes','zm_rtp_source.cpp',345),(1510776493.805261,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776493.810635,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 38705, 4306 bytes','zm_rtp_source.cpp',345),(1510776493.815897,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 38705, 0 bytes','zm_rtp_source.cpp',336),(1510776494.707750,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776494.712645,'zmc_m1',0,3497,-1,'WAR','Discarding frame 38729','zm_rtp_source.cpp',349),(1510776494.715408,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 38729, 0 bytes','zm_rtp_source.cpp',336),(1510776515.554396,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776515.559835,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 39269, 12910 bytes','zm_rtp_source.cpp',345),(1510776515.565612,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 39269, 0 bytes','zm_rtp_source.cpp',336),(1510776515.914101,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776515.920053,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 39277, 11476 bytes','zm_rtp_source.cpp',345),(1510776515.925850,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 39277, 0 bytes','zm_rtp_source.cpp',336),(1510776525.774295,'zmc_m1',0,3480,0,'INF','Monitor-1: 38000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776536.233999,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776536.236553,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 39804, 14344 bytes','zm_rtp_source.cpp',345),(1510776542.804762,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776542.810163,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 39975, 14344 bytes','zm_rtp_source.cpp',345),(1510776542.924641,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776542.930226,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 39977, 12910 bytes','zm_rtp_source.cpp',345),(1510776542.935494,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 39977, 0 bytes','zm_rtp_source.cpp',336),(1510776543.044727,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776543.049686,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 39979, 14344 bytes','zm_rtp_source.cpp',345),(1510776549.724377,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776549.730363,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 40151, 8608 bytes','zm_rtp_source.cpp',345),(1510776549.735647,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 40151, 0 bytes','zm_rtp_source.cpp',336),(1510776549.803379,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776549.808941,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 40151, 14344 bytes','zm_rtp_source.cpp',345),(1510776549.814538,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 40151, 0 bytes','zm_rtp_source.cpp',336),(1510776566.053905,'zmc_m1',0,3480,0,'INF','Monitor-1: 39000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510776570.952897,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776570.958226,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 40701, 10042 bytes','zm_rtp_source.cpp',345),(1510776570.964304,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 40701, 0 bytes','zm_rtp_source.cpp',336),(1510776578.991839,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776578.994819,'zmc_m1',0,3497,-1,'WAR','Discarding frame 40909','zm_rtp_source.cpp',349),(1510776578.997466,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 40909, 0 bytes','zm_rtp_source.cpp',336),(1510776591.832995,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776591.838545,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 41241, 7174 bytes','zm_rtp_source.cpp',345),(1510776591.844268,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 41241, 0 bytes','zm_rtp_source.cpp',336),(1510776592.282422,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776592.287922,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 41251, 1438 bytes','zm_rtp_source.cpp',345),(1510776592.294032,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 41251, 0 bytes','zm_rtp_source.cpp',336),(1510776593.243062,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776593.247827,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 41276, 1438 bytes','zm_rtp_source.cpp',345),(1510776593.251065,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 41276, 0 bytes','zm_rtp_source.cpp',336),(1510776599.722602,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776599.725824,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 41443, 7174 bytes','zm_rtp_source.cpp',345),(1510776599.728784,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 41443, 0 bytes','zm_rtp_source.cpp',336),(1510776599.763138,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776599.765982,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 41443, 5740 bytes','zm_rtp_source.cpp',345),(1510776599.768747,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 41443, 0 bytes','zm_rtp_source.cpp',336),(1510776599.802845,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776599.807307,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 41443, 7174 bytes','zm_rtp_source.cpp',345),(1510776599.812752,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 41443, 0 bytes','zm_rtp_source.cpp',336),(1510776606.403146,'zmc_m1',0,3480,0,'INF','Monitor-1: 40000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776613.762976,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776613.766626,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 41805, 10042 bytes','zm_rtp_source.cpp',345),(1510776613.769636,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 41805, 0 bytes','zm_rtp_source.cpp',336),(1510776620.514737,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776620.517566,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 41981, 27250 bytes','zm_rtp_source.cpp',345),(1510776620.523811,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 41981, 0 bytes','zm_rtp_source.cpp',336),(1510776646.451719,'zmc_m1',0,3480,0,'INF','Monitor-1: 41000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776670.520587,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776670.523557,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 43280, 48760 bytes','zm_rtp_source.cpp',345),(1510776670.526151,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 43280, 0 bytes','zm_rtp_source.cpp',336),(1510776676.162029,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776676.167310,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 43424, 12910 bytes','zm_rtp_source.cpp',345),(1510776676.170828,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 43424, 0 bytes','zm_rtp_source.cpp',336),(1510776676.561555,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776676.565017,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 43435, 10042 bytes','zm_rtp_source.cpp',345),(1510776676.568089,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 43435, 0 bytes','zm_rtp_source.cpp',336),(1510776676.642139,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776676.645006,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 43436, 14344 bytes','zm_rtp_source.cpp',345),(1510776676.681688,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776676.684851,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 43436, 10042 bytes','zm_rtp_source.cpp',345),(1510776676.688075,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 43436, 0 bytes','zm_rtp_source.cpp',336),(1510776684.042021,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776684.047808,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 43625, 14344 bytes','zm_rtp_source.cpp',345),(1510776684.320928,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776684.327031,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 43631, 5740 bytes','zm_rtp_source.cpp',345),(1510776684.332409,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 43631, 0 bytes','zm_rtp_source.cpp',336),(1510776686.743423,'zmc_m1',0,3480,0,'INF','Monitor-1: 42000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776690.320398,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776690.323281,'zmc_m1',0,3497,-1,'WAR','Discarding frame 43786','zm_rtp_source.cpp',349),(1510776690.324575,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 43786, 0 bytes','zm_rtp_source.cpp',336),(1510776691.189475,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776691.192551,'zmc_m1',0,3497,-1,'WAR','Discarding frame 43809','zm_rtp_source.cpp',349),(1510776691.194033,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 43809, 0 bytes','zm_rtp_source.cpp',336),(1510776704.870662,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776704.873525,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 44164, 10042 bytes','zm_rtp_source.cpp',345),(1510776704.877266,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44164, 0 bytes','zm_rtp_source.cpp',336),(1510776704.989682,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776704.995164,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 44166, 2872 bytes','zm_rtp_source.cpp',345),(1510776705.000905,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44166, 0 bytes','zm_rtp_source.cpp',336),(1510776711.720509,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776711.723458,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 44339, 5740 bytes','zm_rtp_source.cpp',345),(1510776711.724836,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44339, 0 bytes','zm_rtp_source.cpp',336),(1510776711.960031,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776711.965177,'zmc_m1',0,3497,-1,'WAR','Discarding frame 44344','zm_rtp_source.cpp',349),(1510776711.980479,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44344, 0 bytes','zm_rtp_source.cpp',336),(1510776712.600420,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776712.605447,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 44361, 1438 bytes','zm_rtp_source.cpp',345),(1510776712.610500,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44361, 0 bytes','zm_rtp_source.cpp',336),(1510776726.160180,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776726.163396,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 44711, 2872 bytes','zm_rtp_source.cpp',345),(1510776726.166426,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44711, 0 bytes','zm_rtp_source.cpp',336),(1510776727.061071,'zmc_m1',0,3480,0,'INF','Monitor-1: 43000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510776732.240886,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776732.243776,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 44868, 10042 bytes','zm_rtp_source.cpp',345),(1510776732.245110,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44868, 0 bytes','zm_rtp_source.cpp',336),(1510776732.280318,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776732.283652,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 44868, 1438 bytes','zm_rtp_source.cpp',345),(1510776732.286899,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44868, 0 bytes','zm_rtp_source.cpp',336),(1510776732.760932,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776732.767415,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 44881, 4306 bytes','zm_rtp_source.cpp',345),(1510776732.772589,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44881, 0 bytes','zm_rtp_source.cpp',336),(1510776733.119872,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776733.126335,'zmc_m1',0,3497,-1,'WAR','Discarding frame 44889','zm_rtp_source.cpp',349),(1510776733.131788,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44889, 0 bytes','zm_rtp_source.cpp',336),(1510776733.559552,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776733.565297,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 44898, 14344 bytes','zm_rtp_source.cpp',345),(1510776733.569710,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 44898, 0 bytes','zm_rtp_source.cpp',336),(1510776746.375326,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776746.380321,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 45229, 12910 bytes','zm_rtp_source.cpp',345),(1510776746.385586,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 45229, 0 bytes','zm_rtp_source.cpp',336),(1510776761.279525,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776761.285271,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 45617, 7174 bytes','zm_rtp_source.cpp',345),(1510776761.291483,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 45617, 0 bytes','zm_rtp_source.cpp',336),(1510776761.599454,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776761.604518,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 45624, 2872 bytes','zm_rtp_source.cpp',345),(1510776761.609608,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 45624, 0 bytes','zm_rtp_source.cpp',336),(1510776767.418291,'zmc_m1',0,3480,0,'INF','Monitor-1: 44000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776788.388497,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776788.393873,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 46319, 7174 bytes','zm_rtp_source.cpp',345),(1510776788.398587,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 46319, 0 bytes','zm_rtp_source.cpp',336),(1510776788.788501,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776788.791640,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 46330, 1438 bytes','zm_rtp_source.cpp',345),(1510776788.794746,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 46330, 0 bytes','zm_rtp_source.cpp',336),(1510776788.908350,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776788.911187,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 46332, 4306 bytes','zm_rtp_source.cpp',345),(1510776788.913707,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 46332, 0 bytes','zm_rtp_source.cpp',336),(1510776795.468516,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776795.471629,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 46501, 8608 bytes','zm_rtp_source.cpp',345),(1510776795.475708,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 46501, 0 bytes','zm_rtp_source.cpp',336),(1510776795.508216,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776795.513730,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 46501, 5740 bytes','zm_rtp_source.cpp',345),(1510776795.518998,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 46501, 0 bytes','zm_rtp_source.cpp',336),(1510776807.619260,'zmc_m1',0,3480,0,'INF','Monitor-1: 45000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776809.548615,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 3','zm_rtp_source.cpp',127),(1510776809.553911,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 46865, 12910 bytes','zm_rtp_source.cpp',345),(1510776809.668898,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776809.674712,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 46867, 11476 bytes','zm_rtp_source.cpp',345),(1510776809.677453,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 46867, 0 bytes','zm_rtp_source.cpp',336),(1510776810.515213,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776810.518334,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 46889, 37288 bytes','zm_rtp_source.cpp',345),(1510776810.520820,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 46889, 0 bytes','zm_rtp_source.cpp',336),(1510776816.948709,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776816.951622,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 47055, 14344 bytes','zm_rtp_source.cpp',345),(1510776817.908588,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776817.914019,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 47078, 14344 bytes','zm_rtp_source.cpp',345),(1510776824.227311,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776824.230355,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 47241, 2872 bytes','zm_rtp_source.cpp',345),(1510776824.233446,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 47241, 0 bytes','zm_rtp_source.cpp',336),(1510776830.514395,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776830.517352,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 47405, 27250 bytes','zm_rtp_source.cpp',345),(1510776830.520050,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 47405, 0 bytes','zm_rtp_source.cpp',336),(1510776830.627081,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776830.629991,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 47407, 8608 bytes','zm_rtp_source.cpp',345),(1510776830.632968,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 47407, 0 bytes','zm_rtp_source.cpp',336),(1510776830.827285,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776830.830126,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 47411, 2872 bytes','zm_rtp_source.cpp',345),(1510776830.834948,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 47411, 0 bytes','zm_rtp_source.cpp',336),(1510776847.968249,'zmc_m1',0,3480,0,'INF','Monitor-1: 46000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776866.157364,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776866.160268,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 48327, 2872 bytes','zm_rtp_source.cpp',345),(1510776866.161566,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 48327, 0 bytes','zm_rtp_source.cpp',336),(1510776872.371358,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776872.377669,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 48487, 1438 bytes','zm_rtp_source.cpp',345),(1510776872.383047,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 48487, 0 bytes','zm_rtp_source.cpp',336),(1510776873.373465,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776873.377321,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 48513, 7174 bytes','zm_rtp_source.cpp',345),(1510776873.380287,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 48513, 0 bytes','zm_rtp_source.cpp',336),(1510776888.089702,'zmc_m1',0,3480,0,'INF','Monitor-1: 47000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510776894.514695,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776894.526179,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 49063, 45892 bytes','zm_rtp_source.cpp',345),(1510776894.530917,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 49063, 0 bytes','zm_rtp_source.cpp',336),(1510776900.266894,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776900.272621,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 49210, 10042 bytes','zm_rtp_source.cpp',345),(1510776900.278034,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 49210, 0 bytes','zm_rtp_source.cpp',336),(1510776900.346665,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776900.351886,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 49211, 10042 bytes','zm_rtp_source.cpp',345),(1510776900.354685,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 49211, 0 bytes','zm_rtp_source.cpp',336),(1510776901.306623,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776901.309432,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 49236, 8608 bytes','zm_rtp_source.cpp',345),(1510776901.312111,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 49236, 0 bytes','zm_rtp_source.cpp',336),(1510776914.186050,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776914.191612,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 49569, 5740 bytes','zm_rtp_source.cpp',345),(1510776914.196648,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 49569, 0 bytes','zm_rtp_source.cpp',336),(1510776914.906484,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776914.911828,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 49588, 10042 bytes','zm_rtp_source.cpp',345),(1510776914.917796,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 49588, 0 bytes','zm_rtp_source.cpp',336),(1510776921.186559,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776921.189379,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 49750, 8608 bytes','zm_rtp_source.cpp',345),(1510776921.194657,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 49750, 0 bytes','zm_rtp_source.cpp',336),(1510776921.465958,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776921.471161,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 49756, 4306 bytes','zm_rtp_source.cpp',345),(1510776921.476409,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 49756, 0 bytes','zm_rtp_source.cpp',336),(1510776928.420375,'zmc_m1',0,3480,0,'INF','Monitor-1: 48000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776928.466023,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776928.468717,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 49936, 5740 bytes','zm_rtp_source.cpp',345),(1510776928.470009,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 49936, 0 bytes','zm_rtp_source.cpp',336),(1510776956.796290,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776956.799521,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 50673, 2872 bytes','zm_rtp_source.cpp',345),(1510776956.802350,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 50673, 0 bytes','zm_rtp_source.cpp',336),(1510776956.876297,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776956.881722,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 50674, 10042 bytes','zm_rtp_source.cpp',345),(1510776956.886730,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 50674, 0 bytes','zm_rtp_source.cpp',336),(1510776968.545280,'zmc_m1',0,3480,0,'INF','Monitor-1: 49000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510776977.195699,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776977.201057,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 51201, 4306 bytes','zm_rtp_source.cpp',345),(1510776977.206104,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 51201, 0 bytes','zm_rtp_source.cpp',336),(1510776984.715463,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776984.719752,'zmc_m1',0,3497,-1,'WAR','Discarding frame 51396','zm_rtp_source.cpp',349),(1510776984.722998,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776984.725789,'zmc_m1',0,3497,-1,'WAR','Discarding frame 51396','zm_rtp_source.cpp',349),(1510776997.664288,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776997.669455,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 51731, 1438 bytes','zm_rtp_source.cpp',345),(1510776997.675855,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 51731, 0 bytes','zm_rtp_source.cpp',336),(1510776998.515452,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510776998.522126,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 51753, 48760 bytes','zm_rtp_source.cpp',345),(1510776998.529118,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 51753, 0 bytes','zm_rtp_source.cpp',336),(1510777004.995399,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777005.000829,'zmc_m1',0,3497,-1,'WAR','Discarding frame 51920','zm_rtp_source.cpp',349),(1510777005.006862,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 51920, 0 bytes','zm_rtp_source.cpp',336),(1510777005.155701,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777005.160871,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 51923, 8608 bytes','zm_rtp_source.cpp',345),(1510777005.167025,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 51923, 0 bytes','zm_rtp_source.cpp',336),(1510777008.781518,'zmc_m1',0,3480,0,'INF','Monitor-1: 50000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510777011.944006,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777011.949167,'zmc_m1',0,3497,-1,'WAR','Discarding frame 52098','zm_rtp_source.cpp',349),(1510777011.954684,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52098, 0 bytes','zm_rtp_source.cpp',336),(1510777012.795589,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777012.800774,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52120, 7174 bytes','zm_rtp_source.cpp',345),(1510777012.805220,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52120, 0 bytes','zm_rtp_source.cpp',336),(1510777018.515170,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777018.518001,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52268, 61666 bytes','zm_rtp_source.cpp',345),(1510777018.521150,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52268, 0 bytes','zm_rtp_source.cpp',336),(1510777025.715240,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777025.720726,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52453, 4306 bytes','zm_rtp_source.cpp',345),(1510777025.725892,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52453, 0 bytes','zm_rtp_source.cpp',336),(1510777026.075166,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777026.078000,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52461, 5740 bytes','zm_rtp_source.cpp',345),(1510777026.080481,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52461, 0 bytes','zm_rtp_source.cpp',336),(1510777026.474641,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777026.477537,'zmc_m1',0,3497,-1,'WAR','Discarding frame 52470','zm_rtp_source.cpp',349),(1510777026.480322,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52470, 0 bytes','zm_rtp_source.cpp',336),(1510777026.756040,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777026.759087,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52478, 10042 bytes','zm_rtp_source.cpp',345),(1510777026.761754,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52478, 0 bytes','zm_rtp_source.cpp',336),(1510777032.511268,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777032.516833,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52627, 31552 bytes','zm_rtp_source.cpp',345),(1510777032.521906,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52627, 0 bytes','zm_rtp_source.cpp',336),(1510777032.634756,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777032.640155,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52629, 4306 bytes','zm_rtp_source.cpp',345),(1510777032.645153,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52629, 0 bytes','zm_rtp_source.cpp',336),(1510777032.674647,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777032.677289,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52629, 2872 bytes','zm_rtp_source.cpp',345),(1510777032.679852,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52629, 0 bytes','zm_rtp_source.cpp',336),(1510777033.394452,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777033.397253,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52646, 1438 bytes','zm_rtp_source.cpp',345),(1510777033.399754,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52646, 0 bytes','zm_rtp_source.cpp',336),(1510777039.515182,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777039.517999,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52804, 4306 bytes','zm_rtp_source.cpp',345),(1510777039.522058,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52804, 0 bytes','zm_rtp_source.cpp',336),(1510777039.555256,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777039.560551,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52804, 8608 bytes','zm_rtp_source.cpp',345),(1510777039.565680,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52804, 0 bytes','zm_rtp_source.cpp',336),(1510777040.368498,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777040.374003,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52823, 1438 bytes','zm_rtp_source.cpp',345),(1510777040.379094,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52823, 0 bytes','zm_rtp_source.cpp',336),(1510777040.554538,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777040.558787,'zmc_m1',0,3497,-1,'WAR','Discarding frame 52829','zm_rtp_source.cpp',349),(1510777040.561466,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777040.564164,'zmc_m1',0,3497,-1,'WAR','Discarding frame 52829','zm_rtp_source.cpp',349),(1510777040.565539,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52829, 0 bytes','zm_rtp_source.cpp',336),(1510777046.435143,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777046.438119,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 52979, 1438 bytes','zm_rtp_source.cpp',345),(1510777046.440627,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 52979, 0 bytes','zm_rtp_source.cpp',336),(1510777047.235753,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777047.241003,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 53000, 12910 bytes','zm_rtp_source.cpp',345),(1510777047.245950,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 53000, 0 bytes','zm_rtp_source.cpp',336),(1510777049.455417,'zmc_m1',0,3480,0,'INF','Monitor-1: 51000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510777076.602028,'zms',0,3990,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510777081.263117,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777081.268280,'zmc_m1',0,3497,-1,'WAR','Discarding frame 53884','zm_rtp_source.cpp',349),(1510777081.273176,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 53884, 0 bytes','zm_rtp_source.cpp',336),(1510777082.064243,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777082.070499,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 53903, 11476 bytes','zm_rtp_source.cpp',345),(1510777082.075770,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 53903, 0 bytes','zm_rtp_source.cpp',336),(1510777082.346337,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777082.351926,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 53909, 12910 bytes','zm_rtp_source.cpp',345),(1510777082.355614,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 53909, 0 bytes','zm_rtp_source.cpp',336),(1510777082.505097,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777082.508472,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 53914, 1438 bytes','zm_rtp_source.cpp',345),(1510777082.516411,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 53914, 0 bytes','zm_rtp_source.cpp',336),(1510777088.224580,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777088.227961,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 54060, 12910 bytes','zm_rtp_source.cpp',345),(1510777088.344062,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777088.347698,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 54062, 11476 bytes','zm_rtp_source.cpp',345),(1510777088.351759,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 54062, 0 bytes','zm_rtp_source.cpp',336),(1510777089.695012,'zmc_m1',0,3480,0,'INF','Monitor-1: 52000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510777095.463706,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777095.468003,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 54247, 10042 bytes','zm_rtp_source.cpp',345),(1510777095.473054,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 54247, 0 bytes','zm_rtp_source.cpp',336),(1510777095.943440,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777095.949136,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 54258, 4306 bytes','zm_rtp_source.cpp',345),(1510777095.954453,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 54258, 0 bytes','zm_rtp_source.cpp',336),(1510777096.424039,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777096.429634,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 54269, 12910 bytes','zm_rtp_source.cpp',345),(1510777096.434989,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 54269, 0 bytes','zm_rtp_source.cpp',336),(1510777102.303402,'zmc_m1',0,3497,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510777102.309141,'zmc_m1',0,3497,-1,'WAR','Discarding partial frame 54421, 10042 bytes','zm_rtp_source.cpp',345),(1510777102.312111,'zmc_m1',0,3497,-1,'WAR','Discarding incomplete frame 54421, 0 bytes','zm_rtp_source.cpp',336),(1510777117.426860,'zmc_m1',0,3497,-2,'ERR','RTP timed out','zm_rtp_data.cpp',93),(1510777120.883589,'zmc_m1',0,3498,-2,'ERR','Unable to send: Invalid argument','zm_rtp_ctrl.cpp',322),(1510777123.357420,'zmwatch',NULL,1655,0,'INF','Restarting capture daemon for Monitor-1, time since last capture 9 seconds (1510777123-1510777114)','zmwatch.pl',NULL),(1510777123.445100,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' sending stop to pid 3480 at 17/11/15 22:18:43','zmdc.pl',NULL),(1510777123.451130,'zmc_m1',0,3480,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510810280.990670,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' exited normally','zmdc.pl',NULL),(1510810281.102920,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510810281.106830,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 07:31:21, pid = 5609','zmdc.pl',NULL),(1510810281.106840,'zmdc',NULL,5609,0,'INF','\'zmc -m 1\' started at 17/11/16 07:31:21','zmdc.pl',NULL),(1510810281.146243,'zmc_m1',0,5622,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510810281.147800,'zmdc',NULL,1432,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510810286.057820,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510810286.062210,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 07:31:26, pid = 6338','zmdc.pl',NULL),(1510810286.062300,'zmdc',NULL,6338,0,'INF','\'zmc -m 1\' started at 17/11/16 07:31:26','zmdc.pl',NULL),(1510810286.231547,'zmc_m1',0,6338,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510810287.395306,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810287.400826,'zmc_m1',0,6363,-1,'WAR','Discarding frame 4','zm_rtp_source.cpp',349),(1510810288.016311,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810288.021370,'zmc_m1',0,6363,-1,'WAR','Discarding frame 19','zm_rtp_source.cpp',349),(1510810288.026190,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19, 0 bytes','zm_rtp_source.cpp',336),(1510810288.056261,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810288.061667,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 19, 4306 bytes','zm_rtp_source.cpp',345),(1510810288.064085,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19, 0 bytes','zm_rtp_source.cpp',336),(1510810288.176561,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810288.179089,'zmc_m1',0,6363,-1,'WAR','Discarding frame 21','zm_rtp_source.cpp',349),(1510810288.181899,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 21, 0 bytes','zm_rtp_source.cpp',336),(1510810288.376587,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810288.379331,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25, 2872 bytes','zm_rtp_source.cpp',345),(1510810288.381706,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 25, 0 bytes','zm_rtp_source.cpp',336),(1510810295.300396,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810295.306643,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 205, 87478 bytes','zm_rtp_source.cpp',345),(1510810295.313329,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 205, 0 bytes','zm_rtp_source.cpp',336),(1510810301.296832,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810301.299641,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 360, 47326 bytes','zm_rtp_source.cpp',345),(1510810301.302404,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 360, 0 bytes','zm_rtp_source.cpp',336),(1510810308.406039,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810308.409304,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 543, 8608 bytes','zm_rtp_source.cpp',345),(1510810308.410621,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 543, 0 bytes','zm_rtp_source.cpp',336),(1510810308.726147,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810308.733559,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 550, 7174 bytes','zm_rtp_source.cpp',345),(1510810308.739828,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 550, 0 bytes','zm_rtp_source.cpp',336),(1510810315.016303,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810315.023958,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 712, 4306 bytes','zm_rtp_source.cpp',345),(1510810315.029128,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 712, 0 bytes','zm_rtp_source.cpp',336),(1510810315.205570,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810315.208377,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 716, 4306 bytes','zm_rtp_source.cpp',345),(1510810315.210888,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 716, 0 bytes','zm_rtp_source.cpp',336),(1510810315.324646,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810315.329645,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 720, 5740 bytes','zm_rtp_source.cpp',345),(1510810315.334831,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 720, 0 bytes','zm_rtp_source.cpp',336),(1510810327.786339,'zmc_m1',0,6338,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510810329.325725,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810329.328615,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 1083, 7174 bytes','zm_rtp_source.cpp',345),(1510810329.329830,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 1083, 0 bytes','zm_rtp_source.cpp',336),(1510810329.445659,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810329.451468,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 1085, 4306 bytes','zm_rtp_source.cpp',345),(1510810329.485327,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810329.490623,'zmc_m1',0,6363,-1,'WAR','Discarding frame 1085','zm_rtp_source.cpp',349),(1510810329.493817,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 1085, 0 bytes','zm_rtp_source.cpp',336),(1510810342.936156,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810342.941792,'zmc_m1',0,6363,-1,'WAR','Discarding frame 1432','zm_rtp_source.cpp',349),(1510810342.947202,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 1432, 0 bytes','zm_rtp_source.cpp',336),(1510810343.365430,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810343.370488,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 1444, 4306 bytes','zm_rtp_source.cpp',345),(1510810343.375270,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 1444, 0 bytes','zm_rtp_source.cpp',336),(1510810350.056005,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810350.059135,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 1616, 10042 bytes','zm_rtp_source.cpp',345),(1510810350.061665,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 1616, 0 bytes','zm_rtp_source.cpp',336),(1510810351.217213,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810351.222928,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 1644, 12910 bytes','zm_rtp_source.cpp',345),(1510810358.135604,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810358.138431,'zmc_m1',0,6363,-1,'WAR','Discarding frame 1824','zm_rtp_source.cpp',349),(1510810358.141180,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 1824, 0 bytes','zm_rtp_source.cpp',336),(1510810368.127149,'zmc_m1',0,6338,0,'INF','Monitor-1: 2000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510810379.404743,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810379.411809,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 2377, 1438 bytes','zm_rtp_source.cpp',345),(1510810379.418647,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 2377, 0 bytes','zm_rtp_source.cpp',336),(1510810399.975292,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810399.978499,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 2910, 8608 bytes','zm_rtp_source.cpp',345),(1510810399.981281,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 2910, 0 bytes','zm_rtp_source.cpp',336),(1510810408.197771,'zmc_m1',0,6338,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810413.309406,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810413.312365,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3256, 76006 bytes','zm_rtp_source.cpp',345),(1510810413.315043,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3256, 0 bytes','zm_rtp_source.cpp',336),(1510810414.495479,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810414.500703,'zmc_m1',0,6363,-1,'WAR','Discarding frame 3285','zm_rtp_source.cpp',349),(1510810414.506649,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3285, 0 bytes','zm_rtp_source.cpp',336),(1510810421.016737,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810421.020056,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3453, 8608 bytes','zm_rtp_source.cpp',345),(1510810421.023065,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3453, 0 bytes','zm_rtp_source.cpp',336),(1510810421.574463,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810421.577664,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3467, 14344 bytes','zm_rtp_source.cpp',345),(1510810421.580707,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3467, 0 bytes','zm_rtp_source.cpp',336),(1510810427.298062,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810427.301719,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3615, 8608 bytes','zm_rtp_source.cpp',345),(1510810427.315731,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3615, 0 bytes','zm_rtp_source.cpp',336),(1510810427.654749,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810427.657968,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3623, 2872 bytes','zm_rtp_source.cpp',345),(1510810427.663094,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3623, 0 bytes','zm_rtp_source.cpp',336),(1510810427.935404,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810427.941081,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3629, 5740 bytes','zm_rtp_source.cpp',345),(1510810427.946406,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3629, 0 bytes','zm_rtp_source.cpp',336),(1510810434.694390,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810434.700215,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3802, 14344 bytes','zm_rtp_source.cpp',345),(1510810434.705888,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3802, 0 bytes','zm_rtp_source.cpp',336),(1510810434.816895,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810434.822759,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3804, 11476 bytes','zm_rtp_source.cpp',345),(1510810434.828139,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3804, 0 bytes','zm_rtp_source.cpp',336),(1510810435.298090,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810435.300933,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3817, 2872 bytes','zm_rtp_source.cpp',345),(1510810435.302341,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810435.305151,'zmc_m1',0,6363,-1,'WAR','Discarding frame 3817','zm_rtp_source.cpp',349),(1510810435.310956,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3817, 0 bytes','zm_rtp_source.cpp',336),(1510810441.524189,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810441.527840,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3978, 1438 bytes','zm_rtp_source.cpp',345),(1510810441.530754,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3978, 0 bytes','zm_rtp_source.cpp',336),(1510810441.964217,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810441.970757,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 3988, 4306 bytes','zm_rtp_source.cpp',345),(1510810441.977335,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 3988, 0 bytes','zm_rtp_source.cpp',336),(1510810448.766010,'zmc_m1',0,6338,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810476.455813,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810476.458417,'zmc_m1',0,6363,-1,'WAR','Discarding frame 4883','zm_rtp_source.cpp',349),(1510810476.461101,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 4883, 0 bytes','zm_rtp_source.cpp',336),(1510810477.310148,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810477.313730,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 4905, 81742 bytes','zm_rtp_source.cpp',345),(1510810477.724303,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810477.730032,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 4915, 10042 bytes','zm_rtp_source.cpp',345),(1510810477.735362,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 4915, 0 bytes','zm_rtp_source.cpp',336),(1510810488.872790,'zmc_m1',0,6338,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810490.495642,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810490.501199,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 5245, 4306 bytes','zm_rtp_source.cpp',345),(1510810490.506721,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 5245, 0 bytes','zm_rtp_source.cpp',336),(1510810490.654476,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810490.659978,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 5248, 5740 bytes','zm_rtp_source.cpp',345),(1510810490.665140,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 5248, 0 bytes','zm_rtp_source.cpp',336),(1510810490.894025,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810490.898599,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 5253, 1438 bytes','zm_rtp_source.cpp',345),(1510810490.901467,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 5253, 0 bytes','zm_rtp_source.cpp',336),(1510810497.816386,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810497.819728,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 5433, 8608 bytes','zm_rtp_source.cpp',345),(1510810497.822332,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 5433, 0 bytes','zm_rtp_source.cpp',336),(1510810497.854070,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810497.857353,'zmc_m1',0,6363,-1,'WAR','Discarding frame 5433','zm_rtp_source.cpp',349),(1510810497.859180,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 5433, 0 bytes','zm_rtp_source.cpp',336),(1510810498.453629,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810498.460657,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 5446, 14344 bytes','zm_rtp_source.cpp',345),(1510810498.467309,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 5446, 0 bytes','zm_rtp_source.cpp',336),(1510810498.814236,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810498.820966,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 5454, 7174 bytes','zm_rtp_source.cpp',345),(1510810498.827419,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 5454, 0 bytes','zm_rtp_source.cpp',336),(1510810504.655321,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810504.661101,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 5605, 4306 bytes','zm_rtp_source.cpp',345),(1510810504.666334,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 5605, 0 bytes','zm_rtp_source.cpp',336),(1510810505.015843,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810505.018895,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 5613, 8608 bytes','zm_rtp_source.cpp',345),(1510810505.021532,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 5613, 0 bytes','zm_rtp_source.cpp',336),(1510810505.300412,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810505.303320,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 5621, 57364 bytes','zm_rtp_source.cpp',345),(1510810505.306244,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810505.308979,'zmc_m1',0,6363,-1,'WAR','Discarding frame 5621','zm_rtp_source.cpp',349),(1510810505.310739,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 5621, 0 bytes','zm_rtp_source.cpp',336),(1510810525.603131,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810525.606615,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6148, 2872 bytes','zm_rtp_source.cpp',345),(1510810525.609653,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810525.612607,'zmc_m1',0,6363,-1,'WAR','Discarding frame 6148','zm_rtp_source.cpp',349),(1510810525.614182,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6148, 0 bytes','zm_rtp_source.cpp',336),(1510810525.723672,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810525.727182,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6150, 5740 bytes','zm_rtp_source.cpp',345),(1510810525.730614,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6150, 0 bytes','zm_rtp_source.cpp',336),(1510810525.883192,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810525.887810,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6153, 5740 bytes','zm_rtp_source.cpp',345),(1510810525.893105,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810525.898417,'zmc_m1',0,6363,-1,'WAR','Discarding frame 6153','zm_rtp_source.cpp',349),(1510810525.904146,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6153, 0 bytes','zm_rtp_source.cpp',336),(1510810526.564203,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810526.570916,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6169, 12910 bytes','zm_rtp_source.cpp',345),(1510810529.460991,'zmc_m1',0,6338,0,'INF','Monitor-1: 6000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510810539.733433,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810539.736524,'zmc_m1',0,6363,-1,'WAR','Discarding frame 6511','zm_rtp_source.cpp',349),(1510810539.739568,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6511, 0 bytes','zm_rtp_source.cpp',336),(1510810540.175471,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810540.180904,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6521, 10042 bytes','zm_rtp_source.cpp',345),(1510810540.186313,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6521, 0 bytes','zm_rtp_source.cpp',336),(1510810543.442101,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 225','zm_rtp_source.cpp',127),(1510810543.446921,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6585, 1438 bytes','zm_rtp_source.cpp',345),(1510810543.449566,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6585, 0 bytes','zm_rtp_source.cpp',336),(1510810546.613935,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810546.617128,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6668, 8608 bytes','zm_rtp_source.cpp',345),(1510810546.618660,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6668, 0 bytes','zm_rtp_source.cpp',336),(1510810546.693573,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810546.696552,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6669, 4306 bytes','zm_rtp_source.cpp',345),(1510810546.699334,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6669, 0 bytes','zm_rtp_source.cpp',336),(1510810547.298626,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810547.301367,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6685, 18646 bytes','zm_rtp_source.cpp',345),(1510810547.307690,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6685, 0 bytes','zm_rtp_source.cpp',336),(1510810547.734816,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810547.740802,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6695, 1438 bytes','zm_rtp_source.cpp',345),(1510810547.746414,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6695, 0 bytes','zm_rtp_source.cpp',336),(1510810547.854693,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810547.860083,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 6697, 2872 bytes','zm_rtp_source.cpp',345),(1510810547.865362,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 6697, 0 bytes','zm_rtp_source.cpp',336),(1510810560.883711,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810560.889483,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 7034, 12910 bytes','zm_rtp_source.cpp',345),(1510810570.494392,'zmc_m1',0,6338,0,'INF','Monitor-1: 7000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510810575.643187,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810575.645943,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 7418, 11476 bytes','zm_rtp_source.cpp',345),(1510810575.649042,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 7418, 0 bytes','zm_rtp_source.cpp',336),(1510810588.613146,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810588.615945,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 7753, 5740 bytes','zm_rtp_source.cpp',345),(1510810588.618812,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 7753, 0 bytes','zm_rtp_source.cpp',336),(1510810589.093103,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810589.096059,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 7764, 10042 bytes','zm_rtp_source.cpp',345),(1510810589.099002,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 7764, 0 bytes','zm_rtp_source.cpp',336),(1510810596.133762,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810596.136694,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 7947, 12910 bytes','zm_rtp_source.cpp',345),(1510810603.534099,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810603.537153,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 8139, 2872 bytes','zm_rtp_source.cpp',345),(1510810603.538797,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 8139, 0 bytes','zm_rtp_source.cpp',336),(1510810610.677003,'zmc_m1',0,6338,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810617.297828,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810617.304097,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 8496, 43024 bytes','zm_rtp_source.cpp',345),(1510810617.310837,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 8496, 0 bytes','zm_rtp_source.cpp',336),(1510810617.321890,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810617.325644,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 8496, 1438 bytes','zm_rtp_source.cpp',345),(1510810617.361541,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810617.364916,'zmc_m1',0,6363,-1,'WAR','Discarding frame 8496','zm_rtp_source.cpp',349),(1510810617.366498,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 8496, 0 bytes','zm_rtp_source.cpp',336),(1510810617.402296,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810617.405677,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 8496, 5740 bytes','zm_rtp_source.cpp',345),(1510810617.409061,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 8496, 0 bytes','zm_rtp_source.cpp',336),(1510810617.442649,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810617.445880,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 8496, 5740 bytes','zm_rtp_source.cpp',345),(1510810617.451299,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810617.456940,'zmc_m1',0,6363,-1,'WAR','Discarding frame 8496','zm_rtp_source.cpp',349),(1510810617.462499,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 8496, 0 bytes','zm_rtp_source.cpp',336),(1510810617.562503,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810617.568364,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 8498, 10042 bytes','zm_rtp_source.cpp',345),(1510810617.573924,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 8498, 0 bytes','zm_rtp_source.cpp',336),(1510810624.972183,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810624.975382,'zmc_m1',0,6363,-1,'WAR','Discarding frame 8688','zm_rtp_source.cpp',349),(1510810624.976875,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 8688, 0 bytes','zm_rtp_source.cpp',336),(1510810630.692238,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810630.697761,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 8836, 2872 bytes','zm_rtp_source.cpp',345),(1510810630.703138,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 8836, 0 bytes','zm_rtp_source.cpp',336),(1510810639.174802,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810639.178253,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 9055, 12910 bytes','zm_rtp_source.cpp',345),(1510810645.481872,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810645.484883,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 9220, 5740 bytes','zm_rtp_source.cpp',345),(1510810645.486005,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 9220, 0 bytes','zm_rtp_source.cpp',336),(1510810645.721374,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810645.725003,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 9225, 1438 bytes','zm_rtp_source.cpp',345),(1510810645.727976,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 9225, 0 bytes','zm_rtp_source.cpp',336),(1510810646.121545,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810646.127386,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 9234, 1438 bytes','zm_rtp_source.cpp',345),(1510810646.132587,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 9234, 0 bytes','zm_rtp_source.cpp',336),(1510810646.242221,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810646.247776,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 9236, 8608 bytes','zm_rtp_source.cpp',345),(1510810646.253274,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 9236, 0 bytes','zm_rtp_source.cpp',336),(1510810651.194617,'zmc_m1',0,6338,0,'INF','Monitor-1: 9000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510810652.532020,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810652.537671,'zmc_m1',0,6363,-1,'WAR','Discarding frame 9398','zm_rtp_source.cpp',349),(1510810652.540351,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 9398, 0 bytes','zm_rtp_source.cpp',336),(1510810652.892323,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810652.897753,'zmc_m1',0,6363,-1,'WAR','Discarding frame 9406','zm_rtp_source.cpp',349),(1510810652.903024,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 9406, 0 bytes','zm_rtp_source.cpp',336),(1510810680.011958,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810680.015593,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 10111, 2872 bytes','zm_rtp_source.cpp',345),(1510810680.018826,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 10111, 0 bytes','zm_rtp_source.cpp',336),(1510810680.652433,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810680.655929,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 10126, 10042 bytes','zm_rtp_source.cpp',345),(1510810680.658874,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 10126, 0 bytes','zm_rtp_source.cpp',336),(1510810680.932938,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810680.938893,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 10131, 14344 bytes','zm_rtp_source.cpp',345),(1510810680.944082,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 10131, 0 bytes','zm_rtp_source.cpp',336),(1510810687.132331,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810687.138913,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 10291, 7174 bytes','zm_rtp_source.cpp',345),(1510810687.144281,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 10291, 0 bytes','zm_rtp_source.cpp',336),(1510810687.295317,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810687.300605,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 10296, 4306 bytes','zm_rtp_source.cpp',345),(1510810687.307903,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 10296, 0 bytes','zm_rtp_source.cpp',336),(1510810688.493117,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810688.496112,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 10325, 4306 bytes','zm_rtp_source.cpp',345),(1510810688.498794,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 10325, 0 bytes','zm_rtp_source.cpp',336),(1510810691.540958,'zmc_m1',0,6338,0,'INF','Monitor-1: 10000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810695.294836,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810695.300245,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 10502, 12910 bytes','zm_rtp_source.cpp',345),(1510810695.306277,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 10502, 0 bytes','zm_rtp_source.cpp',336),(1510810701.321871,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810701.324737,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 10658, 12910 bytes','zm_rtp_source.cpp',345),(1510810715.487651,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810715.491079,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 11025, 1438 bytes','zm_rtp_source.cpp',345),(1510810715.493710,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 11025, 0 bytes','zm_rtp_source.cpp',336),(1510810716.115472,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810716.121170,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 11039, 14344 bytes','zm_rtp_source.cpp',345),(1510810716.126141,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 11039, 0 bytes','zm_rtp_source.cpp',336),(1510810731.742076,'zmc_m1',0,6338,0,'INF','Monitor-1: 11000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810743.410867,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810743.417110,'zmc_m1',0,6363,-1,'WAR','Discarding frame 11748','zm_rtp_source.cpp',349),(1510810743.423963,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 11748, 0 bytes','zm_rtp_source.cpp',336),(1510810743.453643,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810743.460859,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 11748, 8608 bytes','zm_rtp_source.cpp',345),(1510810743.467807,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 11748, 0 bytes','zm_rtp_source.cpp',336),(1510810744.532077,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810744.536089,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 11774, 1438 bytes','zm_rtp_source.cpp',345),(1510810744.539239,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810744.544655,'zmc_m1',0,6363,-1,'WAR','Discarding frame 11774','zm_rtp_source.cpp',349),(1510810744.550000,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 11774, 0 bytes','zm_rtp_source.cpp',336),(1510810757.281804,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810757.285396,'zmc_m1',0,6363,-1,'WAR','Discarding frame 12106','zm_rtp_source.cpp',349),(1510810757.292567,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 12106, 0 bytes','zm_rtp_source.cpp',336),(1510810758.453501,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810758.456807,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 12134, 11476 bytes','zm_rtp_source.cpp',345),(1510810758.459387,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 12134, 0 bytes','zm_rtp_source.cpp',336),(1510810771.951874,'zmc_m1',0,6338,0,'INF','Monitor-1: 12000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810778.891040,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810778.894473,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 12664, 7174 bytes','zm_rtp_source.cpp',345),(1510810778.897479,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 12664, 0 bytes','zm_rtp_source.cpp',336),(1510810811.980711,'zmc_m1',0,6338,0,'INF','Monitor-1: 13000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810814.410409,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810814.413661,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 13587, 4306 bytes','zm_rtp_source.cpp',345),(1510810814.415454,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 13587, 0 bytes','zm_rtp_source.cpp',336),(1510810820.930590,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810820.933539,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 13755, 10042 bytes','zm_rtp_source.cpp',345),(1510810820.934886,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 13755, 0 bytes','zm_rtp_source.cpp',336),(1510810821.091598,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810821.097274,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 13758, 4306 bytes','zm_rtp_source.cpp',345),(1510810821.102457,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 13758, 0 bytes','zm_rtp_source.cpp',336),(1510810821.170079,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810821.175391,'zmc_m1',0,6363,-1,'WAR','Discarding frame 13759','zm_rtp_source.cpp',349),(1510810821.180604,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 13759, 0 bytes','zm_rtp_source.cpp',336),(1510810822.129435,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810822.135175,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 13783, 14344 bytes','zm_rtp_source.cpp',345),(1510810822.138409,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 13783, 0 bytes','zm_rtp_source.cpp',336),(1510810835.439434,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810835.442683,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 14129, 2872 bytes','zm_rtp_source.cpp',345),(1510810835.445503,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 14129, 0 bytes','zm_rtp_source.cpp',336),(1510810835.919613,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810835.923830,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 14140, 7174 bytes','zm_rtp_source.cpp',345),(1510810835.929223,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810835.934670,'zmc_m1',0,6363,-1,'WAR','Discarding frame 14140','zm_rtp_source.cpp',349),(1510810849.730146,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810849.735530,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 14498, 1438 bytes','zm_rtp_source.cpp',345),(1510810849.740582,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 14498, 0 bytes','zm_rtp_source.cpp',336),(1510810852.351384,'zmc_m1',0,6338,0,'INF','Monitor-1: 14000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510810857.294923,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810857.298037,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 14694, 40156 bytes','zm_rtp_source.cpp',345),(1510810857.303791,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 14694, 0 bytes','zm_rtp_source.cpp',336),(1510810878.610287,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810878.617349,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 15246, 12910 bytes','zm_rtp_source.cpp',345),(1510810892.430401,'zmc_m1',0,6338,0,'INF','Monitor-1: 15000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810912.569305,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810912.574323,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 16128, 4306 bytes','zm_rtp_source.cpp',345),(1510810912.579706,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 16128, 0 bytes','zm_rtp_source.cpp',336),(1510810920.451330,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810920.456041,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 16332, 12910 bytes','zm_rtp_source.cpp',345),(1510810932.509924,'zmc_m1',0,6338,0,'INF','Monitor-1: 16000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810940.449085,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810940.452303,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 16851, 8608 bytes','zm_rtp_source.cpp',345),(1510810940.454915,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 16851, 0 bytes','zm_rtp_source.cpp',336),(1510810947.290470,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810947.295794,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 17029, 1438 bytes','zm_rtp_source.cpp',345),(1510810947.303103,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 17029, 0 bytes','zm_rtp_source.cpp',336),(1510810953.797565,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810953.800616,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 17197, 2872 bytes','zm_rtp_source.cpp',345),(1510810953.803663,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 17197, 0 bytes','zm_rtp_source.cpp',336),(1510810960.968932,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810960.974359,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 17381, 10042 bytes','zm_rtp_source.cpp',345),(1510810960.979566,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 17381, 0 bytes','zm_rtp_source.cpp',336),(1510810961.208940,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810961.214335,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 17386, 10042 bytes','zm_rtp_source.cpp',345),(1510810961.219691,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 17386, 0 bytes','zm_rtp_source.cpp',336),(1510810967.758271,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810967.764205,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 17557, 7174 bytes','zm_rtp_source.cpp',345),(1510810967.770376,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 17557, 0 bytes','zm_rtp_source.cpp',336),(1510810968.438675,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810968.444451,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 17573, 11476 bytes','zm_rtp_source.cpp',345),(1510810968.450007,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 17573, 0 bytes','zm_rtp_source.cpp',336),(1510810972.789286,'zmc_m1',0,6338,0,'INF','Monitor-1: 17000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510810974.888310,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810974.895132,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 17739, 7174 bytes','zm_rtp_source.cpp',345),(1510810974.902060,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 17739, 0 bytes','zm_rtp_source.cpp',336),(1510810974.968086,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810974.974833,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 17740, 5740 bytes','zm_rtp_source.cpp',345),(1510810974.981432,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 17740, 0 bytes','zm_rtp_source.cpp',336),(1510810982.477423,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810982.480494,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 17935, 2872 bytes','zm_rtp_source.cpp',345),(1510810982.483277,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 17935, 0 bytes','zm_rtp_source.cpp',336),(1510810996.447865,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810996.451249,'zmc_m1',0,6363,-1,'WAR','Discarding frame 18297','zm_rtp_source.cpp',349),(1510810996.454060,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 18297, 0 bytes','zm_rtp_source.cpp',336),(1510810996.728970,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510810996.733551,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 18303, 10042 bytes','zm_rtp_source.cpp',345),(1510810996.738790,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 18303, 0 bytes','zm_rtp_source.cpp',336),(1510811003.637323,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811003.640481,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 18483, 2872 bytes','zm_rtp_source.cpp',345),(1510811003.643411,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 18483, 0 bytes','zm_rtp_source.cpp',336),(1510811003.677455,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811003.681963,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 18483, 2872 bytes','zm_rtp_source.cpp',345),(1510811003.687336,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 18483, 0 bytes','zm_rtp_source.cpp',336),(1510811010.036671,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811010.042421,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 18646, 14344 bytes','zm_rtp_source.cpp',345),(1510811010.047574,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 18646, 0 bytes','zm_rtp_source.cpp',336),(1510811013.143428,'zmc_m1',0,6338,0,'INF','Monitor-1: 18000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510811016.450062,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811016.452921,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 18811, 12910 bytes','zm_rtp_source.cpp',345),(1510811023.528509,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811023.533765,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 18995, 1438 bytes','zm_rtp_source.cpp',345),(1510811023.536733,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 18995, 0 bytes','zm_rtp_source.cpp',336),(1510811024.129806,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811024.133379,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 19009, 11476 bytes','zm_rtp_source.cpp',345),(1510811024.135122,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19009, 0 bytes','zm_rtp_source.cpp',336),(1510811030.637812,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811030.641071,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 19177, 11476 bytes','zm_rtp_source.cpp',345),(1510811030.642842,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19177, 0 bytes','zm_rtp_source.cpp',336),(1510811038.567540,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811038.571285,'zmc_m1',0,6363,-1,'WAR','Discarding frame 19382','zm_rtp_source.cpp',349),(1510811038.574743,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19382, 0 bytes','zm_rtp_source.cpp',336),(1510811044.687552,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811044.690807,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 19540, 4306 bytes','zm_rtp_source.cpp',345),(1510811044.693717,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19540, 0 bytes','zm_rtp_source.cpp',336),(1510811044.768227,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811044.771371,'zmc_m1',0,6363,-1,'WAR','Discarding frame 19541','zm_rtp_source.cpp',349),(1510811044.774154,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19541, 0 bytes','zm_rtp_source.cpp',336),(1510811044.888564,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811044.891533,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 19543, 1438 bytes','zm_rtp_source.cpp',345),(1510811044.894257,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19543, 0 bytes','zm_rtp_source.cpp',336),(1510811045.292289,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811045.297764,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 19554, 35854 bytes','zm_rtp_source.cpp',345),(1510811045.302930,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19554, 0 bytes','zm_rtp_source.cpp',336),(1510811051.291627,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811051.297123,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 19709, 30118 bytes','zm_rtp_source.cpp',345),(1510811051.302863,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19709, 0 bytes','zm_rtp_source.cpp',336),(1510811051.436765,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811051.442203,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 19712, 4306 bytes','zm_rtp_source.cpp',345),(1510811051.447380,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 19712, 0 bytes','zm_rtp_source.cpp',336),(1510811053.577773,'zmc_m1',0,6338,0,'INF','Monitor-1: 19000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811072.247962,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811072.254400,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 20250, 14344 bytes','zm_rtp_source.cpp',345),(1510811072.260983,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 20250, 0 bytes','zm_rtp_source.cpp',336),(1510811079.316725,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811079.322946,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 20434, 7174 bytes','zm_rtp_source.cpp',345),(1510811079.329112,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 20434, 0 bytes','zm_rtp_source.cpp',336),(1510811080.047010,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811080.052544,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 20451, 2872 bytes','zm_rtp_source.cpp',345),(1510811080.055400,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 20451, 0 bytes','zm_rtp_source.cpp',336),(1510811080.168334,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811080.171259,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 20453, 7174 bytes','zm_rtp_source.cpp',345),(1510811080.174268,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 20453, 0 bytes','zm_rtp_source.cpp',336),(1510811080.207132,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811080.210186,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 20453, 4306 bytes','zm_rtp_source.cpp',345),(1510811080.214716,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811080.220228,'zmc_m1',0,6363,-1,'WAR','Discarding frame 20453','zm_rtp_source.cpp',349),(1510811080.225661,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 20453, 0 bytes','zm_rtp_source.cpp',336),(1510811093.827824,'zmc_m1',0,6338,0,'INF','Monitor-1: 20000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811107.246965,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811107.251682,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 21154, 4306 bytes','zm_rtp_source.cpp',345),(1510811107.255057,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 21154, 0 bytes','zm_rtp_source.cpp',336),(1510811114.207463,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811114.212932,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 21335, 12910 bytes','zm_rtp_source.cpp',345),(1510811114.369059,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811114.374639,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 21338, 12910 bytes','zm_rtp_source.cpp',345),(1510811120.848690,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811120.853791,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 21505, 11476 bytes','zm_rtp_source.cpp',345),(1510811120.858741,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 21505, 0 bytes','zm_rtp_source.cpp',336),(1510811121.290228,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811121.295621,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 21517, 22948 bytes','zm_rtp_source.cpp',345),(1510811121.301888,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 21517, 0 bytes','zm_rtp_source.cpp',336),(1510811128.033102,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811128.039435,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 21691, 10042 bytes','zm_rtp_source.cpp',345),(1510811128.045608,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 21691, 0 bytes','zm_rtp_source.cpp',336),(1510811134.090087,'zmc_m1',0,6338,0,'INF','Monitor-1: 21000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510811141.556009,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811141.560789,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22042, 7174 bytes','zm_rtp_source.cpp',345),(1510811141.563741,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22042, 0 bytes','zm_rtp_source.cpp',336),(1510811148.327282,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811148.333303,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22216, 1438 bytes','zm_rtp_source.cpp',345),(1510811148.339651,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22216, 0 bytes','zm_rtp_source.cpp',336),(1510811149.302397,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811149.309379,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22241, 58798 bytes','zm_rtp_source.cpp',345),(1510811149.315983,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22241, 0 bytes','zm_rtp_source.cpp',336),(1510811149.485543,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811149.492426,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22244, 14344 bytes','zm_rtp_source.cpp',345),(1510811149.496310,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22244, 0 bytes','zm_rtp_source.cpp',336),(1510811155.447351,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811155.453919,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22398, 12910 bytes','zm_rtp_source.cpp',345),(1510811156.247174,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811156.254181,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22417, 4306 bytes','zm_rtp_source.cpp',345),(1510811156.260912,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22417, 0 bytes','zm_rtp_source.cpp',336),(1510811156.686022,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811156.693237,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22427, 4306 bytes','zm_rtp_source.cpp',345),(1510811156.700507,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22427, 0 bytes','zm_rtp_source.cpp',336),(1510811163.006398,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811163.012086,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22590, 10042 bytes','zm_rtp_source.cpp',345),(1510811163.017067,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22590, 0 bytes','zm_rtp_source.cpp',336),(1510811163.285994,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811163.291428,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22598, 57364 bytes','zm_rtp_source.cpp',345),(1510811163.296611,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22598, 0 bytes','zm_rtp_source.cpp',336),(1510811163.606389,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811163.609090,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22605, 7174 bytes','zm_rtp_source.cpp',345),(1510811163.610242,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22605, 0 bytes','zm_rtp_source.cpp',336),(1510811163.646332,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811163.651683,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22605, 8608 bytes','zm_rtp_source.cpp',345),(1510811163.657278,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22605, 0 bytes','zm_rtp_source.cpp',336),(1510811170.167376,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811170.172854,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22773, 8608 bytes','zm_rtp_source.cpp',345),(1510811170.179044,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 22773, 0 bytes','zm_rtp_source.cpp',336),(1510811174.576064,'zmc_m1',0,6338,0,'INF','Monitor-1: 22000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811176.527712,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811176.533468,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 22937, 12910 bytes','zm_rtp_source.cpp',345),(1510811183.246691,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 3','zm_rtp_source.cpp',127),(1510811183.249837,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 23110, 10042 bytes','zm_rtp_source.cpp',345),(1510811183.253034,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 23110, 0 bytes','zm_rtp_source.cpp',336),(1510811184.125543,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811184.130768,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 23133, 1438 bytes','zm_rtp_source.cpp',345),(1510811184.136808,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 23133, 0 bytes','zm_rtp_source.cpp',336),(1510811191.125926,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811191.131590,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 23313, 10042 bytes','zm_rtp_source.cpp',345),(1510811191.137200,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 23313, 0 bytes','zm_rtp_source.cpp',336),(1510811197.407304,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811197.416160,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 23477, 11476 bytes','zm_rtp_source.cpp',345),(1510811197.419503,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 23477, 0 bytes','zm_rtp_source.cpp',336),(1510811197.647468,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811197.651182,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 23482, 12910 bytes','zm_rtp_source.cpp',345),(1510811197.767413,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811197.770922,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 23484, 11476 bytes','zm_rtp_source.cpp',345),(1510811197.773870,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 23484, 0 bytes','zm_rtp_source.cpp',336),(1510811198.205960,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811198.209317,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 23494, 7174 bytes','zm_rtp_source.cpp',345),(1510811198.210840,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 23494, 0 bytes','zm_rtp_source.cpp',336),(1510811205.283896,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811205.287003,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 23678, 25816 bytes','zm_rtp_source.cpp',345),(1510811205.290222,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 23678, 0 bytes','zm_rtp_source.cpp',336),(1510811211.121489,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811211.127404,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 23827, 11476 bytes','zm_rtp_source.cpp',345),(1510811211.133679,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 23827, 0 bytes','zm_rtp_source.cpp',336),(1510811214.986951,'zmc_m1',0,6338,0,'INF','Monitor-1: 23000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811254.986188,'zmc_m1',0,6338,0,'INF','Monitor-1: 24000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811259.686801,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811259.691089,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25090, 12910 bytes','zm_rtp_source.cpp',345),(1510811260.445166,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811260.450351,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25108, 10042 bytes','zm_rtp_source.cpp',345),(1510811260.455316,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 25108, 0 bytes','zm_rtp_source.cpp',336),(1510811260.766758,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811260.772452,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25115, 11476 bytes','zm_rtp_source.cpp',345),(1510811260.777909,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 25115, 0 bytes','zm_rtp_source.cpp',336),(1510811266.565065,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811266.567942,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25265, 10042 bytes','zm_rtp_source.cpp',345),(1510811266.572859,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 25265, 0 bytes','zm_rtp_source.cpp',336),(1510811266.686344,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811266.691698,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25267, 12910 bytes','zm_rtp_source.cpp',345),(1510811267.005821,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811267.011401,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25274, 5740 bytes','zm_rtp_source.cpp',345),(1510811267.016805,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 25274, 0 bytes','zm_rtp_source.cpp',336),(1510811267.030044,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811267.035281,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25274, 5740 bytes','zm_rtp_source.cpp',345),(1510811267.038396,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 25274, 0 bytes','zm_rtp_source.cpp',336),(1510811267.605883,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811267.609150,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25289, 4306 bytes','zm_rtp_source.cpp',345),(1510811267.610503,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 25289, 0 bytes','zm_rtp_source.cpp',336),(1510811274.325996,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811274.329620,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25462, 7174 bytes','zm_rtp_source.cpp',345),(1510811274.331153,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 25462, 0 bytes','zm_rtp_source.cpp',336),(1510811285.134090,'zmcontrol',NULL,3989,0,'INF','Control server 1/Floureon exiting at 17/11/16 07:48:05','zmcontrol.pl',NULL),(1510811287.565432,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811287.571310,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25806, 12910 bytes','zm_rtp_source.cpp',345),(1510811294.565824,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811294.571341,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 25986, 11476 bytes','zm_rtp_source.cpp',345),(1510811294.574777,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 25986, 0 bytes','zm_rtp_source.cpp',336),(1510811295.412497,'zmc_m1',0,6338,0,'INF','Monitor-1: 25000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510811301.280032,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811301.285822,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 26161, 14344 bytes','zm_rtp_source.cpp',345),(1510811301.291087,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 26161, 0 bytes','zm_rtp_source.cpp',336),(1510811301.484727,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811301.490220,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 26165, 2872 bytes','zm_rtp_source.cpp',345),(1510811301.493466,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 26165, 0 bytes','zm_rtp_source.cpp',336),(1510811302.119377,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811302.123048,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 26180, 10042 bytes','zm_rtp_source.cpp',345),(1510811302.125776,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 26180, 0 bytes','zm_rtp_source.cpp',336),(1510811308.886519,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811308.889783,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 26354, 10042 bytes','zm_rtp_source.cpp',345),(1510811308.891506,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 26354, 0 bytes','zm_rtp_source.cpp',336),(1510811309.323914,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811309.327186,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 26366, 2872 bytes','zm_rtp_source.cpp',345),(1510811309.330135,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 26366, 0 bytes','zm_rtp_source.cpp',336),(1510811315.485803,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811315.489037,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 26525, 4306 bytes','zm_rtp_source.cpp',345),(1510811315.490572,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 26525, 0 bytes','zm_rtp_source.cpp',336),(1510811315.989145,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811315.994815,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 26537, 4306 bytes','zm_rtp_source.cpp',345),(1510811316.007323,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 26537, 0 bytes','zm_rtp_source.cpp',336),(1510811335.704662,'zmc_m1',0,6338,0,'INF','Monitor-1: 26000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811336.393771,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811336.399570,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 27066, 1438 bytes','zm_rtp_source.cpp',345),(1510811336.404848,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 27066, 0 bytes','zm_rtp_source.cpp',336),(1510811336.433383,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811336.439045,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 27066, 4306 bytes','zm_rtp_source.cpp',345),(1510811336.444658,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 27066, 0 bytes','zm_rtp_source.cpp',336),(1510811375.801523,'zmc_m1',0,6338,0,'INF','Monitor-1: 27000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811377.644160,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811377.649712,'zmc_m1',0,6363,-1,'WAR','Discarding frame 28137','zm_rtp_source.cpp',349),(1510811377.654270,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 28137, 0 bytes','zm_rtp_source.cpp',336),(1510811384.792994,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811384.798408,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 28321, 5740 bytes','zm_rtp_source.cpp',345),(1510811384.803911,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 28321, 0 bytes','zm_rtp_source.cpp',336),(1510811391.593293,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811391.596779,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 28498, 2872 bytes','zm_rtp_source.cpp',345),(1510811391.599504,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 28498, 0 bytes','zm_rtp_source.cpp',336),(1510811406.084667,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811406.087979,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 28873, 5740 bytes','zm_rtp_source.cpp',345),(1510811406.090941,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 28873, 0 bytes','zm_rtp_source.cpp',336),(1510811406.243015,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811406.246620,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 28876, 7174 bytes','zm_rtp_source.cpp',345),(1510811406.251981,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 28876, 0 bytes','zm_rtp_source.cpp',336),(1510811406.363270,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811406.368828,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 28878, 5740 bytes','zm_rtp_source.cpp',345),(1510811406.374221,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 28878, 0 bytes','zm_rtp_source.cpp',336),(1510811412.723016,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811412.728453,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 29042, 4306 bytes','zm_rtp_source.cpp',345),(1510811412.734069,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 29042, 0 bytes','zm_rtp_source.cpp',336),(1510811413.164268,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811413.167555,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 29052, 7174 bytes','zm_rtp_source.cpp',345),(1510811413.170617,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 29052, 0 bytes','zm_rtp_source.cpp',336),(1510811416.099484,'zmc_m1',0,6338,0,'INF','Monitor-1: 28000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510811419.083676,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811419.087279,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 29205, 11476 bytes','zm_rtp_source.cpp',345),(1510811419.091358,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 29205, 0 bytes','zm_rtp_source.cpp',336),(1510811419.243850,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811419.249897,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 29208, 12910 bytes','zm_rtp_source.cpp',345),(1510811419.765002,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811419.771255,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 29222, 12910 bytes','zm_rtp_source.cpp',345),(1510811419.884095,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811419.889520,'zmc_m1',0,6363,-1,'WAR','Discarding frame 29224','zm_rtp_source.cpp',349),(1510811419.893012,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 29224, 0 bytes','zm_rtp_source.cpp',336),(1510811420.082540,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811420.086055,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 29227, 14344 bytes','zm_rtp_source.cpp',345),(1510811420.089061,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 29227, 0 bytes','zm_rtp_source.cpp',336),(1510811420.243848,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811420.247233,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 29230, 2872 bytes','zm_rtp_source.cpp',345),(1510811420.249886,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 29230, 0 bytes','zm_rtp_source.cpp',336),(1510811420.364060,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811420.368668,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 29232, 5740 bytes','zm_rtp_source.cpp',345),(1510811420.374043,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 29232, 0 bytes','zm_rtp_source.cpp',336),(1510811433.991959,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811433.995661,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 29586, 1438 bytes','zm_rtp_source.cpp',345),(1510811433.998669,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 29586, 0 bytes','zm_rtp_source.cpp',336),(1510811447.298461,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811447.302829,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 29931, 80308 bytes','zm_rtp_source.cpp',345),(1510811447.305704,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 29931, 0 bytes','zm_rtp_source.cpp',336),(1510811454.283748,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811454.290049,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 30111, 12910 bytes','zm_rtp_source.cpp',345),(1510811454.843729,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811454.849638,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 30124, 12910 bytes','zm_rtp_source.cpp',345),(1510811456.583952,'zmc_m1',0,6338,0,'INF','Monitor-1: 29000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811468.003575,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811468.006643,'zmc_m1',0,6363,-1,'WAR','Discarding frame 30466','zm_rtp_source.cpp',349),(1510811468.009430,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 30466, 0 bytes','zm_rtp_source.cpp',336),(1510811474.642961,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811474.646746,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 30637, 11476 bytes','zm_rtp_source.cpp',345),(1510811474.649601,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 30637, 0 bytes','zm_rtp_source.cpp',336),(1510811481.684150,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811481.689407,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 30820, 7174 bytes','zm_rtp_source.cpp',345),(1510811481.695039,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 30820, 0 bytes','zm_rtp_source.cpp',336),(1510811489.296184,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811489.302142,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 31017, 71704 bytes','zm_rtp_source.cpp',345),(1510811489.307511,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 31017, 0 bytes','zm_rtp_source.cpp',336),(1510811489.716463,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811489.721812,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 31027, 10042 bytes','zm_rtp_source.cpp',345),(1510811489.727421,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 31027, 0 bytes','zm_rtp_source.cpp',336),(1510811495.475853,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811495.481778,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 31176, 7174 bytes','zm_rtp_source.cpp',345),(1510811495.511109,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811495.516728,'zmc_m1',0,6363,-1,'WAR','Discarding frame 31176','zm_rtp_source.cpp',349),(1510811495.522286,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 31176, 0 bytes','zm_rtp_source.cpp',336),(1510811496.863343,'zmc_m1',0,6338,0,'INF','Monitor-1: 30000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811502.443297,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811502.449061,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 31354, 7174 bytes','zm_rtp_source.cpp',345),(1510811502.452143,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 31354, 0 bytes','zm_rtp_source.cpp',336),(1510811502.521925,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811502.527257,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 31355, 2872 bytes','zm_rtp_source.cpp',345),(1510811502.532843,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 31355, 0 bytes','zm_rtp_source.cpp',336),(1510811502.601673,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811502.605159,'zmc_m1',0,6363,-1,'WAR','Discarding frame 31356','zm_rtp_source.cpp',349),(1510811502.606895,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811502.610236,'zmc_m1',0,6363,-1,'WAR','Discarding frame 31356','zm_rtp_source.cpp',349),(1510811502.613417,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 31356, 0 bytes','zm_rtp_source.cpp',336),(1510811503.081795,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811503.085730,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 31367, 5740 bytes','zm_rtp_source.cpp',345),(1510811503.087151,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 31367, 0 bytes','zm_rtp_source.cpp',336),(1510811503.762947,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811503.767673,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 31385, 1438 bytes','zm_rtp_source.cpp',345),(1510811503.772750,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811503.777685,'zmc_m1',0,6363,-1,'WAR','Discarding frame 31385','zm_rtp_source.cpp',349),(1510811503.783195,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 31385, 0 bytes','zm_rtp_source.cpp',336),(1510811516.443264,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811516.448666,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 31713, 12910 bytes','zm_rtp_source.cpp',345),(1510811523.867445,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811523.872925,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 31906, 1438 bytes','zm_rtp_source.cpp',345),(1510811523.875756,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811523.880717,'zmc_m1',0,6363,-1,'WAR','Discarding frame 31906','zm_rtp_source.cpp',349),(1510811523.885971,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811523.891603,'zmc_m1',0,6363,-1,'WAR','Discarding frame 31906','zm_rtp_source.cpp',349),(1510811523.897020,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 31906, 0 bytes','zm_rtp_source.cpp',336),(1510811531.297273,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811531.303055,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 32098, 86044 bytes','zm_rtp_source.cpp',345),(1510811531.308720,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 32098, 0 bytes','zm_rtp_source.cpp',336),(1510811537.174022,'zmc_m1',0,6338,0,'INF','Monitor-1: 31000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510811537.283958,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811537.287236,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 32253, 81742 bytes','zm_rtp_source.cpp',345),(1510811537.291744,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 32253, 0 bytes','zm_rtp_source.cpp',336),(1510811538.282156,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811538.288819,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 32277, 8608 bytes','zm_rtp_source.cpp',345),(1510811538.294256,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 32277, 0 bytes','zm_rtp_source.cpp',336),(1510811545.242046,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811545.247470,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 32456, 8608 bytes','zm_rtp_source.cpp',345),(1510811545.252877,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 32456, 0 bytes','zm_rtp_source.cpp',336),(1510811551.722098,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811551.727838,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 32625, 10042 bytes','zm_rtp_source.cpp',345),(1510811551.733569,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 32625, 0 bytes','zm_rtp_source.cpp',336),(1510811573.041033,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811573.047150,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 33177, 4306 bytes','zm_rtp_source.cpp',345),(1510811573.052602,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 33177, 0 bytes','zm_rtp_source.cpp',336),(1510811577.372649,'zmc_m1',0,6338,0,'INF','Monitor-1: 32000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811579.200808,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811579.203903,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 33336, 4306 bytes','zm_rtp_source.cpp',345),(1510811579.205748,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 33336, 0 bytes','zm_rtp_source.cpp',336),(1510811588.044499,'zms',0,10568,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510811588.050463,'zms',0,10568,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510811591.882760,'zmcontrol',NULL,10571,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510811591.905440,'zmcontrol',NULL,10573,0,'INF','Control server 1/Floureon starting at 17/11/16 07:53:11','zmcontrol.pl',NULL),(1510811599.789995,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811599.792815,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 33872, 7174 bytes','zm_rtp_source.cpp',345),(1510811599.794336,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 33872, 0 bytes','zm_rtp_source.cpp',336),(1510811600.071491,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811600.074498,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 33877, 11476 bytes','zm_rtp_source.cpp',345),(1510811600.077251,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 33877, 0 bytes','zm_rtp_source.cpp',336),(1510811600.153517,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811600.156853,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 33879, 10042 bytes','zm_rtp_source.cpp',345),(1510811600.158497,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 33879, 0 bytes','zm_rtp_source.cpp',336),(1510811607.300599,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811607.306281,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 34064, 96082 bytes','zm_rtp_source.cpp',345),(1510811607.311928,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 34064, 0 bytes','zm_rtp_source.cpp',336),(1510811617.583100,'zmc_m1',0,6338,0,'INF','Monitor-1: 33000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811620.561296,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811620.564592,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 34407, 10042 bytes','zm_rtp_source.cpp',345),(1510811620.567369,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 34407, 0 bytes','zm_rtp_source.cpp',336),(1510811627.722157,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811627.727433,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 34593, 11476 bytes','zm_rtp_source.cpp',345),(1510811627.730239,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 34593, 0 bytes','zm_rtp_source.cpp',336),(1510811635.673253,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811635.676190,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 34799, 5740 bytes','zm_rtp_source.cpp',345),(1510811635.679153,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 34799, 0 bytes','zm_rtp_source.cpp',336),(1510811656.359883,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811656.365050,'zmc_m1',0,6363,-1,'WAR','Discarding frame 35335','zm_rtp_source.cpp',349),(1510811656.369877,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811656.374722,'zmc_m1',0,6363,-1,'WAR','Discarding frame 35335','zm_rtp_source.cpp',349),(1510811656.379647,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 35335, 0 bytes','zm_rtp_source.cpp',336),(1510811657.740783,'zmc_m1',0,6338,0,'INF','Monitor-1: 34000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811662.481416,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811662.486609,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 35493, 8608 bytes','zm_rtp_source.cpp',345),(1510811662.492400,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 35493, 0 bytes','zm_rtp_source.cpp',336),(1510811683.469035,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811683.474552,'zmc_m1',0,6363,-1,'WAR','Discarding frame 36039','zm_rtp_source.cpp',349),(1510811683.479594,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 36039, 0 bytes','zm_rtp_source.cpp',336),(1510811691.120473,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811691.123994,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 36235, 5740 bytes','zm_rtp_source.cpp',345),(1510811691.126662,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 36235, 0 bytes','zm_rtp_source.cpp',336),(1510811691.296818,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811691.302043,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 36240, 88912 bytes','zm_rtp_source.cpp',345),(1510811691.307287,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 36240, 0 bytes','zm_rtp_source.cpp',336),(1510811697.900396,'zmc_m1',0,6338,0,'INF','Monitor-1: 35000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811704.480011,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811704.483390,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 36581, 4306 bytes','zm_rtp_source.cpp',345),(1510811704.486267,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 36581, 0 bytes','zm_rtp_source.cpp',336),(1510811704.560416,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811704.563361,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 36582, 11476 bytes','zm_rtp_source.cpp',345),(1510811704.566098,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 36582, 0 bytes','zm_rtp_source.cpp',336),(1510811705.079713,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811705.082786,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 36594, 7174 bytes','zm_rtp_source.cpp',345),(1510811705.085461,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 36594, 0 bytes','zm_rtp_source.cpp',336),(1510811711.708745,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811711.714516,'zmc_m1',0,6363,-1,'WAR','Discarding frame 36767','zm_rtp_source.cpp',349),(1510811711.720010,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 36767, 0 bytes','zm_rtp_source.cpp',336),(1510811712.720024,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811712.725579,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 36791, 10042 bytes','zm_rtp_source.cpp',345),(1510811712.730368,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 36791, 0 bytes','zm_rtp_source.cpp',336),(1510811718.599467,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811718.605158,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 36943, 7174 bytes','zm_rtp_source.cpp',345),(1510811718.610664,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 36943, 0 bytes','zm_rtp_source.cpp',336),(1510811719.293985,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811719.299327,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 36961, 53062 bytes','zm_rtp_source.cpp',345),(1510811719.305093,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 36961, 0 bytes','zm_rtp_source.cpp',336),(1510811732.553122,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811732.558032,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 37304, 11476 bytes','zm_rtp_source.cpp',345),(1510811738.220406,'zmc_m1',0,6338,0,'INF','Monitor-1: 36000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510811739.880605,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811739.885890,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 37494, 11476 bytes','zm_rtp_source.cpp',345),(1510811746.548001,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811746.553285,'zmc_m1',0,6363,-1,'WAR','Discarding frame 37666','zm_rtp_source.cpp',349),(1510811746.558789,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 37666, 0 bytes','zm_rtp_source.cpp',336),(1510811746.712581,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811746.718032,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 37669, 7174 bytes','zm_rtp_source.cpp',345),(1510811746.723515,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 37669, 0 bytes','zm_rtp_source.cpp',336),(1510811746.832969,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811746.838586,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 37671, 8608 bytes','zm_rtp_source.cpp',345),(1510811746.843732,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 37671, 0 bytes','zm_rtp_source.cpp',336),(1510811746.952755,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811746.955958,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 37673, 2872 bytes','zm_rtp_source.cpp',345),(1510811746.958267,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 37673, 0 bytes','zm_rtp_source.cpp',336),(1510811747.431605,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811747.435089,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 37686, 2872 bytes','zm_rtp_source.cpp',345),(1510811747.437939,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 37686, 0 bytes','zm_rtp_source.cpp',336),(1510811754.024751,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811754.027499,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 37856, 5740 bytes','zm_rtp_source.cpp',345),(1510811754.029951,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 37856, 0 bytes','zm_rtp_source.cpp',336),(1510811761.302438,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811761.305830,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 38044, 123328 bytes','zm_rtp_source.cpp',345),(1510811761.307081,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 38044, 0 bytes','zm_rtp_source.cpp',336),(1510811778.530912,'zmc_m1',0,6338,0,'INF','Monitor-1: 37000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811788.799857,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811788.804058,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 38757, 10042 bytes','zm_rtp_source.cpp',345),(1510811788.809119,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 38757, 0 bytes','zm_rtp_source.cpp',336),(1510811795.591586,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811795.594525,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 38934, 7174 bytes','zm_rtp_source.cpp',345),(1510811795.597065,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 38934, 0 bytes','zm_rtp_source.cpp',336),(1510811803.198239,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811803.201243,'zmc_m1',0,6363,-1,'WAR','Discarding frame 39129','zm_rtp_source.cpp',349),(1510811803.202944,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 39129, 0 bytes','zm_rtp_source.cpp',336),(1510811816.558015,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811816.561513,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 39475, 12910 bytes','zm_rtp_source.cpp',345),(1510811816.564726,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 39475, 0 bytes','zm_rtp_source.cpp',336),(1510811816.839368,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811816.842394,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 39481, 7174 bytes','zm_rtp_source.cpp',345),(1510811816.845226,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 39481, 0 bytes','zm_rtp_source.cpp',336),(1510811817.398190,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811817.401482,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 39496, 2872 bytes','zm_rtp_source.cpp',345),(1510811817.404191,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 39496, 0 bytes','zm_rtp_source.cpp',336),(1510811817.560934,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811817.565904,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 39499, 11476 bytes','zm_rtp_source.cpp',345),(1510811818.858725,'zmc_m1',0,6338,0,'INF','Monitor-1: 38000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811824.114003,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811824.119777,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 39668, 5740 bytes','zm_rtp_source.cpp',345),(1510811824.125002,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 39668, 0 bytes','zm_rtp_source.cpp',336),(1510811837.280843,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811837.286181,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 40010, 4306 bytes','zm_rtp_source.cpp',345),(1510811837.305971,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40010, 0 bytes','zm_rtp_source.cpp',336),(1510811837.918926,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811837.924375,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 40025, 11476 bytes','zm_rtp_source.cpp',345),(1510811844.928308,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811844.931580,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 40205, 8608 bytes','zm_rtp_source.cpp',345),(1510811844.934788,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40205, 0 bytes','zm_rtp_source.cpp',336),(1510811858.718679,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811858.722173,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 40563, 10042 bytes','zm_rtp_source.cpp',345),(1510811858.725030,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40563, 0 bytes','zm_rtp_source.cpp',336),(1510811859.058710,'zmc_m1',0,6338,0,'INF','Monitor-1: 39000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510811859.238616,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811859.241514,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 40575, 11476 bytes','zm_rtp_source.cpp',345),(1510811859.242845,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40575, 0 bytes','zm_rtp_source.cpp',336),(1510811859.517754,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811859.521017,'zmc_m1',0,6363,-1,'WAR','Discarding frame 40583','zm_rtp_source.cpp',349),(1510811859.523741,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40583, 0 bytes','zm_rtp_source.cpp',336),(1510811859.599271,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811859.604516,'zmc_m1',0,6363,-1,'WAR','Discarding frame 40584','zm_rtp_source.cpp',349),(1510811859.609848,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40584, 0 bytes','zm_rtp_source.cpp',336),(1510811865.597920,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811865.603540,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 40739, 2872 bytes','zm_rtp_source.cpp',345),(1510811865.608032,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40739, 0 bytes','zm_rtp_source.cpp',336),(1510811866.277606,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811866.281245,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 40755, 5740 bytes','zm_rtp_source.cpp',345),(1510811866.284174,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40755, 0 bytes','zm_rtp_source.cpp',336),(1510811866.677848,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811866.680992,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 40764, 4306 bytes','zm_rtp_source.cpp',345),(1510811866.682393,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40764, 0 bytes','zm_rtp_source.cpp',336),(1510811872.584326,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811872.587561,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 40917, 4306 bytes','zm_rtp_source.cpp',345),(1510811872.589045,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40917, 0 bytes','zm_rtp_source.cpp',336),(1510811873.289320,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811873.292130,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 40935, 47326 bytes','zm_rtp_source.cpp',345),(1510811873.294744,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 40935, 0 bytes','zm_rtp_source.cpp',336),(1510811880.351838,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811880.354712,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 41117, 11476 bytes','zm_rtp_source.cpp',345),(1510811880.357338,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 41117, 0 bytes','zm_rtp_source.cpp',336),(1510811886.391554,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811886.395026,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 41273, 8608 bytes','zm_rtp_source.cpp',345),(1510811886.398357,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 41273, 0 bytes','zm_rtp_source.cpp',336),(1510811887.159962,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811887.163272,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 41291, 7174 bytes','zm_rtp_source.cpp',345),(1510811887.165069,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 41291, 0 bytes','zm_rtp_source.cpp',336),(1510811893.274011,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811893.279047,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 41451, 18646 bytes','zm_rtp_source.cpp',345),(1510811893.288941,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 41451, 0 bytes','zm_rtp_source.cpp',336),(1510811894.557651,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811894.560591,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 41482, 5740 bytes','zm_rtp_source.cpp',345),(1510811894.563193,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 41482, 0 bytes','zm_rtp_source.cpp',336),(1510811899.570034,'zmc_m1',0,6338,0,'INF','Monitor-1: 40000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811908.303813,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811908.309187,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 41839, 4306 bytes','zm_rtp_source.cpp',345),(1510811908.314297,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 41839, 0 bytes','zm_rtp_source.cpp',336),(1510811915.148436,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811915.154133,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 42015, 1438 bytes','zm_rtp_source.cpp',345),(1510811915.159733,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 42015, 0 bytes','zm_rtp_source.cpp',336),(1510811915.437123,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811915.442955,'zmc_m1',0,6363,-1,'WAR','Discarding frame 42023','zm_rtp_source.cpp',349),(1510811915.445628,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 42023, 0 bytes','zm_rtp_source.cpp',336),(1510811921.823150,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811921.829179,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 42188, 7174 bytes','zm_rtp_source.cpp',345),(1510811921.834281,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 42188, 0 bytes','zm_rtp_source.cpp',336),(1510811922.426007,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811922.428820,'zmc_m1',0,6363,-1,'WAR','Discarding frame 42202','zm_rtp_source.cpp',349),(1510811922.430264,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 42202, 0 bytes','zm_rtp_source.cpp',336),(1510811939.778301,'zmc_m1',0,6338,0,'INF','Monitor-1: 41000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510811942.757775,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811942.763702,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 42729, 10042 bytes','zm_rtp_source.cpp',345),(1510811942.768953,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 42729, 0 bytes','zm_rtp_source.cpp',336),(1510811942.957647,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811942.962691,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 42733, 7174 bytes','zm_rtp_source.cpp',345),(1510811942.967781,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 42733, 0 bytes','zm_rtp_source.cpp',336),(1510811949.357291,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811949.362717,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 42900, 10042 bytes','zm_rtp_source.cpp',345),(1510811949.368125,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 42900, 0 bytes','zm_rtp_source.cpp',336),(1510811949.597105,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811949.602522,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 42905, 7174 bytes','zm_rtp_source.cpp',345),(1510811949.607712,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 42905, 0 bytes','zm_rtp_source.cpp',336),(1510811950.317935,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811950.322385,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 42922, 11476 bytes','zm_rtp_source.cpp',345),(1510811950.325006,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 42922, 0 bytes','zm_rtp_source.cpp',336),(1510811957.288582,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811957.291546,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 43103, 113290 bytes','zm_rtp_source.cpp',345),(1510811957.294046,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 43103, 0 bytes','zm_rtp_source.cpp',336),(1510811963.288637,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811963.291517,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 43258, 47326 bytes','zm_rtp_source.cpp',345),(1510811963.296635,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 43258, 0 bytes','zm_rtp_source.cpp',336),(1510811977.281105,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811977.284132,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 43621, 90346 bytes','zm_rtp_source.cpp',345),(1510811977.288695,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 43621, 0 bytes','zm_rtp_source.cpp',336),(1510811977.876731,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811977.879504,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 43635, 8608 bytes','zm_rtp_source.cpp',345),(1510811977.883428,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 43635, 0 bytes','zm_rtp_source.cpp',336),(1510811977.997419,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811978.002562,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 43637, 12910 bytes','zm_rtp_source.cpp',345),(1510811978.436905,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811978.442370,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 43647, 5740 bytes','zm_rtp_source.cpp',345),(1510811978.448054,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 43647, 0 bytes','zm_rtp_source.cpp',336),(1510811980.216364,'zmc_m1',0,6338,0,'INF','Monitor-1: 42000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510811984.596704,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811984.602288,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 43806, 7174 bytes','zm_rtp_source.cpp',345),(1510811984.607318,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 43806, 0 bytes','zm_rtp_source.cpp',336),(1510811984.996522,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811985.002947,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 43815, 5740 bytes','zm_rtp_source.cpp',345),(1510811985.009276,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 43815, 0 bytes','zm_rtp_source.cpp',336),(1510811985.556668,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811985.563677,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 43830, 5740 bytes','zm_rtp_source.cpp',345),(1510811985.570493,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 43830, 0 bytes','zm_rtp_source.cpp',336),(1510811991.288548,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510811991.294108,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 43978, 53062 bytes','zm_rtp_source.cpp',345),(1510811991.300242,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 43978, 0 bytes','zm_rtp_source.cpp',336),(1510812006.476600,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812006.479690,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 44371, 10042 bytes','zm_rtp_source.cpp',345),(1510812006.482361,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 44371, 0 bytes','zm_rtp_source.cpp',336),(1510812013.287273,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812013.292487,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 44548, 45892 bytes','zm_rtp_source.cpp',345),(1510812013.296514,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 44548, 0 bytes','zm_rtp_source.cpp',336),(1510812020.021894,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812020.027061,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 44722, 5740 bytes','zm_rtp_source.cpp',345),(1510812020.032229,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 44722, 0 bytes','zm_rtp_source.cpp',336),(1510812020.491641,'zmc_m1',0,6338,0,'INF','Monitor-1: 43000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812027.279242,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812027.284706,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 44910, 5740 bytes','zm_rtp_source.cpp',345),(1510812027.299934,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812027.305111,'zmc_m1',0,6363,-1,'WAR','Discarding frame 44910','zm_rtp_source.cpp',349),(1510812034.190105,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812034.195593,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 45088, 12910 bytes','zm_rtp_source.cpp',345),(1510812047.198009,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812047.203394,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 45424, 11476 bytes','zm_rtp_source.cpp',345),(1510812047.208673,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 45424, 0 bytes','zm_rtp_source.cpp',336),(1510812048.034918,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812048.040622,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 45445, 12910 bytes','zm_rtp_source.cpp',345),(1510812048.046122,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 45445, 0 bytes','zm_rtp_source.cpp',336),(1510812048.156266,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812048.162036,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 45447, 8608 bytes','zm_rtp_source.cpp',345),(1510812048.167613,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 45447, 0 bytes','zm_rtp_source.cpp',336),(1510812054.066650,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812054.071873,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 45600, 7174 bytes','zm_rtp_source.cpp',345),(1510812054.077449,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 45600, 0 bytes','zm_rtp_source.cpp',336),(1510812054.147511,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812054.150363,'zmc_m1',0,6363,-1,'WAR','Discarding frame 45601','zm_rtp_source.cpp',349),(1510812054.152860,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 45601, 0 bytes','zm_rtp_source.cpp',336),(1510812055.303156,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812055.306270,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 45630, 120460 bytes','zm_rtp_source.cpp',345),(1510812055.309086,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 45630, 0 bytes','zm_rtp_source.cpp',336),(1510812060.855285,'zmc_m1',0,6338,0,'INF','Monitor-1: 44000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812061.509709,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812061.512606,'zmc_m1',0,6363,-1,'WAR','Discarding frame 45791','zm_rtp_source.cpp',349),(1510812061.515199,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 45791, 0 bytes','zm_rtp_source.cpp',336),(1510812068.476238,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812068.481539,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 45970, 7174 bytes','zm_rtp_source.cpp',345),(1510812068.485576,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 45970, 0 bytes','zm_rtp_source.cpp',336),(1510812068.675068,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812068.678263,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 45973, 12910 bytes','zm_rtp_source.cpp',345),(1510812068.681422,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 45973, 0 bytes','zm_rtp_source.cpp',336),(1510812069.066202,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812069.069103,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 45982, 2872 bytes','zm_rtp_source.cpp',345),(1510812069.070469,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 45982, 0 bytes','zm_rtp_source.cpp',336),(1510812082.315341,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812082.320602,'zmc_m1',0,6363,-1,'WAR','Discarding frame 46326','zm_rtp_source.cpp',349),(1510812082.326396,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812082.331799,'zmc_m1',0,6363,-1,'WAR','Discarding frame 46326','zm_rtp_source.cpp',349),(1510812082.337167,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 46326, 0 bytes','zm_rtp_source.cpp',336),(1510812089.288157,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812089.293540,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 46507, 55930 bytes','zm_rtp_source.cpp',345),(1510812089.299793,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 46507, 0 bytes','zm_rtp_source.cpp',336),(1510812096.035236,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812096.038197,'zmc_m1',0,6363,-1,'WAR','Discarding frame 46681','zm_rtp_source.cpp',349),(1510812096.042168,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 46681, 0 bytes','zm_rtp_source.cpp',336),(1510812096.196670,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812096.201945,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 46684, 8608 bytes','zm_rtp_source.cpp',345),(1510812096.207005,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 46684, 0 bytes','zm_rtp_source.cpp',336),(1510812096.795159,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812096.801174,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 46698, 5740 bytes','zm_rtp_source.cpp',345),(1510812096.806301,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 46698, 0 bytes','zm_rtp_source.cpp',336),(1510812101.243880,'zmc_m1',0,6338,0,'INF','Monitor-1: 45000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510812102.644509,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812102.649950,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 46849, 1438 bytes','zm_rtp_source.cpp',345),(1510812102.655440,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 46849, 0 bytes','zm_rtp_source.cpp',336),(1510812102.828400,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812102.831275,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 46853, 11476 bytes','zm_rtp_source.cpp',345),(1510812102.833749,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 46853, 0 bytes','zm_rtp_source.cpp',336),(1510812110.395552,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812110.400522,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 47049, 8608 bytes','zm_rtp_source.cpp',345),(1510812110.403280,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 47049, 0 bytes','zm_rtp_source.cpp',336),(1510812117.018591,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812117.024115,'zmc_m1',0,6363,-1,'WAR','Discarding frame 47220','zm_rtp_source.cpp',349),(1510812117.029606,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 47220, 0 bytes','zm_rtp_source.cpp',336),(1510812130.474387,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812130.480112,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 47569, 5740 bytes','zm_rtp_source.cpp',345),(1510812130.486200,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 47569, 0 bytes','zm_rtp_source.cpp',336),(1510812141.455980,'zmc_m1',0,6338,0,'INF','Monitor-1: 46000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812144.474181,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812144.479594,'zmc_m1',0,6363,-1,'WAR','Discarding frame 47932','zm_rtp_source.cpp',349),(1510812144.485041,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 47932, 0 bytes','zm_rtp_source.cpp',336),(1510812151.914930,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812151.921202,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 48125, 4306 bytes','zm_rtp_source.cpp',345),(1510812151.926560,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 48125, 0 bytes','zm_rtp_source.cpp',336),(1510812152.514433,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812152.520102,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 48139, 4306 bytes','zm_rtp_source.cpp',345),(1510812152.525792,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 48139, 0 bytes','zm_rtp_source.cpp',336),(1510812158.956091,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812158.959049,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 48305, 12910 bytes','zm_rtp_source.cpp',345),(1510812159.064691,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812159.067748,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 48307, 7174 bytes','zm_rtp_source.cpp',345),(1510812159.072017,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 48307, 0 bytes','zm_rtp_source.cpp',336),(1510812159.427666,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812159.432970,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 48317, 8608 bytes','zm_rtp_source.cpp',345),(1510812159.438461,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 48317, 0 bytes','zm_rtp_source.cpp',336),(1510812165.993871,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812165.999119,'zmc_m1',0,6363,-1,'WAR','Discarding frame 48486','zm_rtp_source.cpp',349),(1510812166.004098,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 48486, 0 bytes','zm_rtp_source.cpp',336),(1510812166.235125,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812166.240385,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 48491, 10042 bytes','zm_rtp_source.cpp',345),(1510812166.245447,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 48491, 0 bytes','zm_rtp_source.cpp',336),(1510812166.355352,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812166.358745,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 48493, 12910 bytes','zm_rtp_source.cpp',345),(1510812181.814725,'zmc_m1',0,6338,0,'INF','Monitor-1: 47000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812186.234551,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812186.237190,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49009, 8608 bytes','zm_rtp_source.cpp',345),(1510812186.238429,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49009, 0 bytes','zm_rtp_source.cpp',336),(1510812186.554378,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812186.557386,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49016, 5740 bytes','zm_rtp_source.cpp',345),(1510812186.558828,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49016, 0 bytes','zm_rtp_source.cpp',336),(1510812186.674406,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812186.679864,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49018, 4306 bytes','zm_rtp_source.cpp',345),(1510812186.684946,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49018, 0 bytes','zm_rtp_source.cpp',336),(1510812187.291696,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812187.297315,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49034, 107554 bytes','zm_rtp_source.cpp',345),(1510812187.302823,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49034, 0 bytes','zm_rtp_source.cpp',336),(1510812194.353938,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812194.359633,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49216, 1438 bytes','zm_rtp_source.cpp',345),(1510812194.365968,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49216, 0 bytes','zm_rtp_source.cpp',336),(1510812194.434330,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812194.439750,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49217, 8608 bytes','zm_rtp_source.cpp',345),(1510812194.445421,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49217, 0 bytes','zm_rtp_source.cpp',336),(1510812200.274497,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812200.279997,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49368, 8608 bytes','zm_rtp_source.cpp',345),(1510812200.284978,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49368, 0 bytes','zm_rtp_source.cpp',336),(1510812201.285910,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812201.291028,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49394, 45892 bytes','zm_rtp_source.cpp',345),(1510812201.295183,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49394, 0 bytes','zm_rtp_source.cpp',336),(1510812207.154186,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812207.157376,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49544, 5740 bytes','zm_rtp_source.cpp',345),(1510812207.159095,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49544, 0 bytes','zm_rtp_source.cpp',336),(1510812207.193693,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812207.196885,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49544, 2872 bytes','zm_rtp_source.cpp',345),(1510812207.198646,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49544, 0 bytes','zm_rtp_source.cpp',336),(1510812207.826316,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812207.829453,'zmc_m1',0,6363,-1,'WAR','Discarding frame 49561','zm_rtp_source.cpp',349),(1510812207.830804,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49561, 0 bytes','zm_rtp_source.cpp',336),(1510812214.529346,'zms',0,10568,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510812214.654433,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 182','zm_rtp_source.cpp',127),(1510812214.660923,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 49717, 8608 bytes','zm_rtp_source.cpp',345),(1510812214.667136,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 49717, 0 bytes','zm_rtp_source.cpp',336),(1510812222.968107,'zmc_m1',0,6338,0,'INF','Monitor-1: 48000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510812229.284864,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812229.288034,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 50100, 106120 bytes','zm_rtp_source.cpp',345),(1510812229.290723,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 50100, 0 bytes','zm_rtp_source.cpp',336),(1510812235.673380,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812235.676616,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 50265, 4306 bytes','zm_rtp_source.cpp',345),(1510812235.679981,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 50265, 0 bytes','zm_rtp_source.cpp',336),(1510812250.153301,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812250.156136,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 50640, 2872 bytes','zm_rtp_source.cpp',345),(1510812250.160126,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 50640, 0 bytes','zm_rtp_source.cpp',336),(1510812263.102816,'zmc_m1',0,6338,0,'INF','Monitor-1: 49000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510812263.284745,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812263.287635,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 50981, 40156 bytes','zm_rtp_source.cpp',345),(1510812263.297288,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 50981, 0 bytes','zm_rtp_source.cpp',336),(1510812270.193265,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812270.199018,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 51159, 4306 bytes','zm_rtp_source.cpp',345),(1510812270.205418,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 51159, 0 bytes','zm_rtp_source.cpp',336),(1510812278.107421,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812278.113106,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 51364, 2872 bytes','zm_rtp_source.cpp',345),(1510812278.118633,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 51364, 0 bytes','zm_rtp_source.cpp',336),(1510812292.018654,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812292.023924,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 51725, 5740 bytes','zm_rtp_source.cpp',345),(1510812292.027715,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 51725, 0 bytes','zm_rtp_source.cpp',336),(1510812297.992843,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812297.998694,'zmc_m1',0,6363,-1,'WAR','Discarding frame 51879','zm_rtp_source.cpp',349),(1510812298.003763,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 51879, 0 bytes','zm_rtp_source.cpp',336),(1510812303.347000,'zmc_m1',0,6338,0,'INF','Monitor-1: 50000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812305.465252,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812305.470390,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 52073, 4306 bytes','zm_rtp_source.cpp',345),(1510812305.475453,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 52073, 0 bytes','zm_rtp_source.cpp',336),(1510812305.586170,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812305.591631,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 52075, 12910 bytes','zm_rtp_source.cpp',345),(1510812305.664856,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812305.670313,'zmc_m1',0,6363,-1,'WAR','Discarding frame 52076','zm_rtp_source.cpp',349),(1510812305.675854,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 52076, 0 bytes','zm_rtp_source.cpp',336),(1510812310.718095,'zms',0,10822,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510812310.723371,'zms',0,10822,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510812312.793000,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812312.795815,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 52259, 7174 bytes','zm_rtp_source.cpp',345),(1510812312.798565,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 52259, 0 bytes','zm_rtp_source.cpp',336),(1510812313.112519,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812313.117943,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 52266, 2872 bytes','zm_rtp_source.cpp',345),(1510812313.123100,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 52266, 0 bytes','zm_rtp_source.cpp',336),(1510812326.792783,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812326.795557,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 52621, 10042 bytes','zm_rtp_source.cpp',345),(1510812326.798352,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 52621, 0 bytes','zm_rtp_source.cpp',336),(1510812326.832168,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812326.835363,'zmc_m1',0,6363,-1,'WAR','Discarding frame 52621','zm_rtp_source.cpp',349),(1510812326.838443,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 52621, 0 bytes','zm_rtp_source.cpp',336),(1510812326.953412,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812326.957642,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 52623, 5740 bytes','zm_rtp_source.cpp',345),(1510812326.963016,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 52623, 0 bytes','zm_rtp_source.cpp',336),(1510812327.285000,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812327.290315,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 52632, 45892 bytes','zm_rtp_source.cpp',345),(1510812327.296009,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 52632, 0 bytes','zm_rtp_source.cpp',336),(1510812342.052759,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812342.055738,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 52995, 123328 bytes','zm_rtp_source.cpp',345),(1510812342.058362,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 52995, 0 bytes','zm_rtp_source.cpp',336),(1510812344.471323,'zmc_m1',0,6338,0,'INF','Monitor-1: 51000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510812355.939743,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812355.944982,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 53354, 12910 bytes','zm_rtp_source.cpp',345),(1510812361.949677,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812361.952509,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 53509, 12910 bytes','zm_rtp_source.cpp',345),(1510812362.043552,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812362.046441,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 53512, 78874 bytes','zm_rtp_source.cpp',345),(1510812362.049748,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 53512, 0 bytes','zm_rtp_source.cpp',336),(1510812369.348041,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812369.351002,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 53700, 4306 bytes','zm_rtp_source.cpp',345),(1510812369.353479,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 53700, 0 bytes','zm_rtp_source.cpp',336),(1510812376.221075,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812376.226130,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 53879, 11476 bytes','zm_rtp_source.cpp',345),(1510812376.418128,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812376.421005,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 53883, 5740 bytes','zm_rtp_source.cpp',345),(1510812376.423441,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 53883, 0 bytes','zm_rtp_source.cpp',336),(1510812383.772672,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812383.778397,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 54072, 2872 bytes','zm_rtp_source.cpp',345),(1510812383.783741,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 54072, 0 bytes','zm_rtp_source.cpp',336),(1510812384.729274,'zmc_m1',0,6338,0,'INF','Monitor-1: 52000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812390.259081,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812390.267140,'zmc_m1',0,6363,-1,'WAR','Discarding frame 54241','zm_rtp_source.cpp',349),(1510812390.273401,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 54241, 0 bytes','zm_rtp_source.cpp',336),(1510812403.817089,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812403.822625,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 54590, 14344 bytes','zm_rtp_source.cpp',345),(1510812403.825637,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 54590, 0 bytes','zm_rtp_source.cpp',336),(1510812410.967505,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812410.973307,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 54776, 4306 bytes','zm_rtp_source.cpp',345),(1510812410.979724,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 54776, 0 bytes','zm_rtp_source.cpp',336),(1510812411.408118,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812411.414964,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 54786, 11476 bytes','zm_rtp_source.cpp',345),(1510812411.421543,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 54786, 0 bytes','zm_rtp_source.cpp',336),(1510812424.905743,'zmc_m1',0,6338,0,'INF','Monitor-1: 53000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812432.566678,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812432.572503,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 55336, 1438 bytes','zm_rtp_source.cpp',345),(1510812432.575015,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 55336, 0 bytes','zm_rtp_source.cpp',336),(1510812446.051162,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 3','zm_rtp_source.cpp',127),(1510812446.054309,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 55685, 130498 bytes','zm_rtp_source.cpp',345),(1510812446.057105,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 55685, 0 bytes','zm_rtp_source.cpp',336),(1510812452.688894,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812452.694740,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 55857, 12910 bytes','zm_rtp_source.cpp',345),(1510812453.167039,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812453.172573,'zmc_m1',0,6363,-1,'WAR','Discarding frame 55868','zm_rtp_source.cpp',349),(1510812453.175622,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 55868, 0 bytes','zm_rtp_source.cpp',336),(1510812453.688277,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812453.691327,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 55880, 12910 bytes','zm_rtp_source.cpp',345),(1510812465.108065,'zmc_m1',0,6338,0,'INF','Monitor-1: 54000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510812473.728444,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812473.734103,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 56400, 10042 bytes','zm_rtp_source.cpp',345),(1510812473.739285,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 56400, 0 bytes','zm_rtp_source.cpp',336),(1510812474.409689,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812474.415074,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 56418, 8608 bytes','zm_rtp_source.cpp',345),(1510812474.419901,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812474.422643,'zmc_m1',0,6363,-1,'WAR','Discarding frame 56418','zm_rtp_source.cpp',349),(1510812481.009236,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812481.011864,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 56588, 4306 bytes','zm_rtp_source.cpp',345),(1510812481.014337,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 56588, 0 bytes','zm_rtp_source.cpp',336),(1510812481.088221,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812481.091192,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 56589, 7174 bytes','zm_rtp_source.cpp',345),(1510812481.093639,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 56589, 0 bytes','zm_rtp_source.cpp',336),(1510812481.328053,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812481.331500,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 56594, 4306 bytes','zm_rtp_source.cpp',345),(1510812481.336526,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 56594, 0 bytes','zm_rtp_source.cpp',336),(1510812487.888179,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812487.891052,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 56763, 8608 bytes','zm_rtp_source.cpp',345),(1510812487.893516,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 56763, 0 bytes','zm_rtp_source.cpp',336),(1510812495.208362,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812495.211635,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 56953, 10042 bytes','zm_rtp_source.cpp',345),(1510812495.214327,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 56953, 0 bytes','zm_rtp_source.cpp',336),(1510812495.448252,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812495.451243,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 56958, 10042 bytes','zm_rtp_source.cpp',345),(1510812495.454210,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 56958, 0 bytes','zm_rtp_source.cpp',336),(1510812505.429259,'zmc_m1',0,6338,0,'INF','Monitor-1: 55000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812522.728014,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812522.730794,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 57667, 4306 bytes','zm_rtp_source.cpp',345),(1510812522.733276,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 57667, 0 bytes','zm_rtp_source.cpp',336),(1510812523.288875,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812523.291863,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 57680, 10042 bytes','zm_rtp_source.cpp',345),(1510812523.297092,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 57680, 0 bytes','zm_rtp_source.cpp',336),(1510812523.448454,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812523.453809,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 57683, 10042 bytes','zm_rtp_source.cpp',345),(1510812523.459017,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 57683, 0 bytes','zm_rtp_source.cpp',336),(1510812529.528071,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812529.534003,'zmc_m1',0,6363,-1,'WAR','Discarding frame 57840','zm_rtp_source.cpp',349),(1510812529.539538,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812529.544948,'zmc_m1',0,6363,-1,'WAR','Discarding frame 57840','zm_rtp_source.cpp',349),(1510812529.550258,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 57840, 0 bytes','zm_rtp_source.cpp',336),(1510812529.648398,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812529.651186,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 57842, 7174 bytes','zm_rtp_source.cpp',345),(1510812529.653720,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 57842, 0 bytes','zm_rtp_source.cpp',336),(1510812536.968147,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812536.971035,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 58032, 1438 bytes','zm_rtp_source.cpp',345),(1510812536.972353,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 58032, 0 bytes','zm_rtp_source.cpp',336),(1510812545.668020,'zmc_m1',0,6338,0,'INF','Monitor-1: 56000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812565.366613,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812565.369725,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 58769, 1438 bytes','zm_rtp_source.cpp',345),(1510812565.371384,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 58769, 0 bytes','zm_rtp_source.cpp',336),(1510812565.527621,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812565.530764,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 58772, 10042 bytes','zm_rtp_source.cpp',345),(1510812565.535075,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 58772, 0 bytes','zm_rtp_source.cpp',336),(1510812579.206391,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812579.209662,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 59127, 8608 bytes','zm_rtp_source.cpp',345),(1510812579.210983,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 59127, 0 bytes','zm_rtp_source.cpp',336),(1510812585.767911,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812585.770758,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 59296, 8608 bytes','zm_rtp_source.cpp',345),(1510812585.773336,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 59296, 0 bytes','zm_rtp_source.cpp',336),(1510812585.824566,'zmc_m1',0,6338,0,'INF','Monitor-1: 57000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812600.778534,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812600.783644,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 59686, 12910 bytes','zm_rtp_source.cpp',345),(1510812607.366015,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812607.369139,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 59856, 7174 bytes','zm_rtp_source.cpp',345),(1510812607.371935,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 59856, 0 bytes','zm_rtp_source.cpp',336),(1510812608.046318,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812608.049407,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 59873, 101818 bytes','zm_rtp_source.cpp',345),(1510812608.050657,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 59873, 0 bytes','zm_rtp_source.cpp',336),(1510812614.445593,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812614.449743,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 60039, 5740 bytes','zm_rtp_source.cpp',345),(1510812614.454845,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 60039, 0 bytes','zm_rtp_source.cpp',336),(1510812614.683521,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812614.688834,'zmc_m1',0,6363,-1,'WAR','Discarding frame 60044','zm_rtp_source.cpp',349),(1510812614.693963,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 60044, 0 bytes','zm_rtp_source.cpp',336),(1510812626.092076,'zmc_m1',0,6338,0,'INF','Monitor-1: 58000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510812641.778368,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812641.781280,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 60746, 8608 bytes','zm_rtp_source.cpp',345),(1510812641.782486,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 60746, 0 bytes','zm_rtp_source.cpp',336),(1510812642.123379,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812642.126197,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 60756, 7174 bytes','zm_rtp_source.cpp',345),(1510812642.128744,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 60756, 0 bytes','zm_rtp_source.cpp',336),(1510812649.202413,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812649.206565,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 60938, 1438 bytes','zm_rtp_source.cpp',345),(1510812649.211397,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 60938, 0 bytes','zm_rtp_source.cpp',336),(1510812649.244775,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812649.250261,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 60938, 10042 bytes','zm_rtp_source.cpp',345),(1510812649.256078,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 60938, 0 bytes','zm_rtp_source.cpp',336),(1510812649.444211,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812649.449228,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 60942, 5740 bytes','zm_rtp_source.cpp',345),(1510812649.454103,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 60942, 0 bytes','zm_rtp_source.cpp',336),(1510812649.643471,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812649.646543,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 60946, 5740 bytes','zm_rtp_source.cpp',345),(1510812649.649246,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 60946, 0 bytes','zm_rtp_source.cpp',336),(1510812650.045605,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812650.048847,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 60956, 116158 bytes','zm_rtp_source.cpp',345),(1510812650.051629,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 60956, 0 bytes','zm_rtp_source.cpp',336),(1510812655.964066,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812655.968159,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 61108, 4306 bytes','zm_rtp_source.cpp',345),(1510812655.970822,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 61108, 0 bytes','zm_rtp_source.cpp',336),(1510812666.343472,'zmc_m1',0,6338,0,'INF','Monitor-1: 59000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812669.802716,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 3','zm_rtp_source.cpp',127),(1510812669.805780,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 61467, 4306 bytes','zm_rtp_source.cpp',345),(1510812669.807019,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 61467, 0 bytes','zm_rtp_source.cpp',336),(1510812670.363750,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812670.369248,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 61482, 4306 bytes','zm_rtp_source.cpp',345),(1510812670.374265,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812670.379441,'zmc_m1',0,6363,-1,'WAR','Discarding frame 61482','zm_rtp_source.cpp',349),(1510812670.384833,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 61482, 0 bytes','zm_rtp_source.cpp',336),(1510812670.883068,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812670.888182,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 61494, 8608 bytes','zm_rtp_source.cpp',345),(1510812670.893085,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 61494, 0 bytes','zm_rtp_source.cpp',336),(1510812671.242802,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812671.248242,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 61502, 5740 bytes','zm_rtp_source.cpp',345),(1510812671.253722,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 61502, 0 bytes','zm_rtp_source.cpp',336),(1510812671.282493,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812671.287832,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 61502, 4306 bytes','zm_rtp_source.cpp',345),(1510812671.293212,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 61502, 0 bytes','zm_rtp_source.cpp',336),(1510812677.162812,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812677.169150,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 61654, 11476 bytes','zm_rtp_source.cpp',345),(1510812677.175985,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 61654, 0 bytes','zm_rtp_source.cpp',336),(1510812678.163957,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812678.168225,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 61680, 8608 bytes','zm_rtp_source.cpp',345),(1510812678.173034,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 61680, 0 bytes','zm_rtp_source.cpp',336),(1510812691.778634,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812691.781338,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 62031, 10042 bytes','zm_rtp_source.cpp',345),(1510812691.782719,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 62031, 0 bytes','zm_rtp_source.cpp',336),(1510812698.032987,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812698.038855,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 62194, 27250 bytes','zm_rtp_source.cpp',345),(1510812698.045381,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 62194, 0 bytes','zm_rtp_source.cpp',336),(1510812706.703094,'zmc_m1',0,6338,0,'INF','Monitor-1: 60000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812712.973688,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812712.979366,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 62581, 10042 bytes','zm_rtp_source.cpp',345),(1510812712.984500,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 62581, 0 bytes','zm_rtp_source.cpp',336),(1510812719.776143,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812719.778955,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 62756, 4306 bytes','zm_rtp_source.cpp',345),(1510812719.781530,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 62756, 0 bytes','zm_rtp_source.cpp',336),(1510812720.601470,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812720.604352,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 62778, 10042 bytes','zm_rtp_source.cpp',345),(1510812720.607065,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 62778, 0 bytes','zm_rtp_source.cpp',336),(1510812726.322041,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812726.327427,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 62926, 5740 bytes','zm_rtp_source.cpp',345),(1510812726.333243,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 62926, 0 bytes','zm_rtp_source.cpp',336),(1510812726.642349,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812726.647378,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 62933, 2872 bytes','zm_rtp_source.cpp',345),(1510812726.649897,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 62933, 0 bytes','zm_rtp_source.cpp',336),(1510812727.243304,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812727.246276,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 62947, 12910 bytes','zm_rtp_source.cpp',345),(1510812727.482136,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812727.485047,'zmc_m1',0,6363,-1,'WAR','Discarding frame 62952','zm_rtp_source.cpp',349),(1510812727.487564,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 62952, 0 bytes','zm_rtp_source.cpp',336),(1510812740.721217,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812740.724130,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 63296, 5740 bytes','zm_rtp_source.cpp',345),(1510812740.726838,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 63296, 0 bytes','zm_rtp_source.cpp',336),(1510812741.361498,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812741.366808,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 63311, 8608 bytes','zm_rtp_source.cpp',345),(1510812741.371883,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 63311, 0 bytes','zm_rtp_source.cpp',336),(1510812747.065641,'zmc_m1',0,6338,0,'INF','Monitor-1: 61000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510812747.361821,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812747.367382,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 63464, 18646 bytes','zm_rtp_source.cpp',345),(1510812747.372785,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 63464, 0 bytes','zm_rtp_source.cpp',336),(1510812747.566213,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812747.572064,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 63469, 5740 bytes','zm_rtp_source.cpp',345),(1510812747.577373,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 63469, 0 bytes','zm_rtp_source.cpp',336),(1510812748.602740,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812748.605574,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 63496, 12910 bytes','zm_rtp_source.cpp',345),(1510812762.360043,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812762.365328,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 63853, 1438 bytes','zm_rtp_source.cpp',345),(1510812762.370678,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 63853, 0 bytes','zm_rtp_source.cpp',336),(1510812775.799862,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812775.803345,'zmc_m1',0,6363,-1,'WAR','Discarding frame 64200','zm_rtp_source.cpp',349),(1510812775.806035,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 64200, 0 bytes','zm_rtp_source.cpp',336),(1510812783.281677,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812783.284594,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 64394, 1438 bytes','zm_rtp_source.cpp',345),(1510812783.287175,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 64394, 0 bytes','zm_rtp_source.cpp',336),(1510812787.341233,'zmc_m1',0,6338,0,'INF','Monitor-1: 62000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812789.856111,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812789.861455,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 64563, 8608 bytes','zm_rtp_source.cpp',345),(1510812789.866478,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 64563, 0 bytes','zm_rtp_source.cpp',336),(1510812796.159993,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812796.162771,'zmc_m1',0,6363,-1,'WAR','Discarding frame 64728','zm_rtp_source.cpp',349),(1510812796.167660,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 64728, 0 bytes','zm_rtp_source.cpp',336),(1510812796.812429,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812796.817685,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 64743, 11476 bytes','zm_rtp_source.cpp',345),(1510812796.822666,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 64743, 0 bytes','zm_rtp_source.cpp',336),(1510812796.961332,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812796.966926,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 64746, 2872 bytes','zm_rtp_source.cpp',345),(1510812796.971918,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 64746, 0 bytes','zm_rtp_source.cpp',336),(1510812803.119621,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812803.122537,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 64905, 1438 bytes','zm_rtp_source.cpp',345),(1510812803.127372,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 64905, 0 bytes','zm_rtp_source.cpp',336),(1510812803.160545,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812803.165768,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 64905, 10042 bytes','zm_rtp_source.cpp',345),(1510812803.171183,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 64905, 0 bytes','zm_rtp_source.cpp',336),(1510812803.280756,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812803.286107,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 64907, 2872 bytes','zm_rtp_source.cpp',345),(1510812803.290998,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 64907, 0 bytes','zm_rtp_source.cpp',336),(1510812818.034154,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812818.037230,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 65290, 38722 bytes','zm_rtp_source.cpp',345),(1510812818.044136,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 65290, 0 bytes','zm_rtp_source.cpp',336),(1510812824.856773,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812824.862073,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 65466, 1438 bytes','zm_rtp_source.cpp',345),(1510812824.867160,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 65466, 0 bytes','zm_rtp_source.cpp',336),(1510812827.707675,'zmc_m1',0,6338,0,'INF','Monitor-1: 63000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812831.280488,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812831.283589,'zmc_m1',0,6363,-1,'WAR','Discarding frame 65632','zm_rtp_source.cpp',349),(1510812831.288010,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 65632, 0 bytes','zm_rtp_source.cpp',336),(1510812831.720503,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812831.725486,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 65642, 7174 bytes','zm_rtp_source.cpp',345),(1510812831.730473,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 65642, 0 bytes','zm_rtp_source.cpp',336),(1510812838.092462,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812838.097709,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 65808, 11476 bytes','zm_rtp_source.cpp',345),(1510812838.679129,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812838.684444,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 65822, 4306 bytes','zm_rtp_source.cpp',345),(1510812838.689894,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 65822, 0 bytes','zm_rtp_source.cpp',336),(1510812845.560974,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812845.566151,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 65999, 10042 bytes','zm_rtp_source.cpp',345),(1510812845.570916,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 65999, 0 bytes','zm_rtp_source.cpp',336),(1510812859.720312,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812859.725472,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 66366, 1438 bytes','zm_rtp_source.cpp',345),(1510812859.730710,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 66366, 0 bytes','zm_rtp_source.cpp',336),(1510812865.959565,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812865.964906,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 66527, 1438 bytes','zm_rtp_source.cpp',345),(1510812865.970475,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 66527, 0 bytes','zm_rtp_source.cpp',336),(1510812867.978287,'zmc_m1',0,6338,0,'INF','Monitor-1: 64000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812873.239307,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812873.242772,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 66716, 11476 bytes','zm_rtp_source.cpp',345),(1510812873.245843,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 66716, 0 bytes','zm_rtp_source.cpp',336),(1510812874.044037,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812874.047231,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 66737, 8608 bytes','zm_rtp_source.cpp',345),(1510812874.050008,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 66737, 0 bytes','zm_rtp_source.cpp',336),(1510812880.029616,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812880.032914,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 66891, 4306 bytes','zm_rtp_source.cpp',345),(1510812880.044154,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 66891, 0 bytes','zm_rtp_source.cpp',336),(1510812880.090653,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812880.093699,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 66892, 11476 bytes','zm_rtp_source.cpp',345),(1510812880.095038,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 66892, 0 bytes','zm_rtp_source.cpp',336),(1510812894.037089,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812894.042491,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 67253, 76006 bytes','zm_rtp_source.cpp',345),(1510812894.047614,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 67253, 0 bytes','zm_rtp_source.cpp',336),(1510812894.399125,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812894.404623,'zmc_m1',0,6363,-1,'WAR','Discarding frame 67262','zm_rtp_source.cpp',349),(1510812894.410294,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 67262, 0 bytes','zm_rtp_source.cpp',336),(1510812901.558757,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812901.561561,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 67446, 7174 bytes','zm_rtp_source.cpp',345),(1510812901.562830,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 67446, 0 bytes','zm_rtp_source.cpp',336),(1510812908.259098,'zmc_m1',0,6338,0,'INF','Monitor-1: 65000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510812929.397457,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812929.404237,'zmc_m1',0,6363,-1,'WAR','Discarding frame 68169','zm_rtp_source.cpp',349),(1510812929.407805,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 68169, 0 bytes','zm_rtp_source.cpp',336),(1510812929.878613,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812929.881495,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 68180, 11476 bytes','zm_rtp_source.cpp',345),(1510812935.717139,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812935.720135,'zmc_m1',0,6363,-1,'WAR','Discarding frame 68331','zm_rtp_source.cpp',349),(1510812935.722875,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 68331, 0 bytes','zm_rtp_source.cpp',336),(1510812936.159052,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812936.162013,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 68343, 7174 bytes','zm_rtp_source.cpp',345),(1510812936.163508,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812936.165924,'zmc_m1',0,6363,-1,'WAR','Discarding frame 68343','zm_rtp_source.cpp',349),(1510812942.438439,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812942.441275,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 68505, 10042 bytes','zm_rtp_source.cpp',345),(1510812942.442422,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 68505, 0 bytes','zm_rtp_source.cpp',336),(1510812942.478584,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812942.481230,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 68505, 1438 bytes','zm_rtp_source.cpp',345),(1510812942.482697,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 68505, 0 bytes','zm_rtp_source.cpp',336),(1510812942.957935,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812942.963414,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 68516, 4306 bytes','zm_rtp_source.cpp',345),(1510812942.968612,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 68516, 0 bytes','zm_rtp_source.cpp',336),(1510812943.397633,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812943.402847,'zmc_m1',0,6363,-1,'WAR','Discarding frame 68526','zm_rtp_source.cpp',349),(1510812943.408423,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 68526, 0 bytes','zm_rtp_source.cpp',336),(1510812943.518688,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812943.524001,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 68528, 11476 bytes','zm_rtp_source.cpp',345),(1510812948.617498,'zmc_m1',0,6338,0,'INF','Monitor-1: 66000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812977.796652,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812977.802524,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 69418, 1438 bytes','zm_rtp_source.cpp',345),(1510812977.807330,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 69418, 0 bytes','zm_rtp_source.cpp',336),(1510812977.836976,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812977.842648,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 69418, 1438 bytes','zm_rtp_source.cpp',345),(1510812977.846311,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 69418, 0 bytes','zm_rtp_source.cpp',336),(1510812984.196558,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812984.199592,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 69584, 4306 bytes','zm_rtp_source.cpp',345),(1510812984.202229,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 69584, 0 bytes','zm_rtp_source.cpp',336),(1510812985.157281,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812985.162613,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 69607, 11476 bytes','zm_rtp_source.cpp',345),(1510812985.167970,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 69607, 0 bytes','zm_rtp_source.cpp',336),(1510812988.777919,'zmc_m1',0,6338,0,'INF','Monitor-1: 67000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510812991.358053,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812991.360868,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 69767, 7174 bytes','zm_rtp_source.cpp',345),(1510812991.363446,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 69767, 0 bytes','zm_rtp_source.cpp',336),(1510812991.840263,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812991.846258,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 69778, 5740 bytes','zm_rtp_source.cpp',345),(1510812991.851520,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 69778, 0 bytes','zm_rtp_source.cpp',336),(1510812992.039966,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510812992.045587,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 69783, 110422 bytes','zm_rtp_source.cpp',345),(1510812992.050826,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 69783, 0 bytes','zm_rtp_source.cpp',336),(1510813005.116586,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813005.121725,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 70122, 1438 bytes','zm_rtp_source.cpp',345),(1510813005.127459,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 70122, 0 bytes','zm_rtp_source.cpp',336),(1510813005.877461,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813005.883376,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 70140, 7174 bytes','zm_rtp_source.cpp',345),(1510813005.889234,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 70140, 0 bytes','zm_rtp_source.cpp',336),(1510813006.048790,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813006.055120,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 70144, 114724 bytes','zm_rtp_source.cpp',345),(1510813006.058189,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 70144, 0 bytes','zm_rtp_source.cpp',336),(1510813026.316523,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813026.321697,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 70671, 8608 bytes','zm_rtp_source.cpp',345),(1510813026.327299,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 70671, 0 bytes','zm_rtp_source.cpp',336),(1510813027.315779,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813027.319010,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 70695, 4306 bytes','zm_rtp_source.cpp',345),(1510813027.321416,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 70695, 0 bytes','zm_rtp_source.cpp',336),(1510813029.107403,'zmc_m1',0,6338,0,'INF','Monitor-1: 68000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510813034.356562,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813034.361809,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 70878, 12910 bytes','zm_rtp_source.cpp',345),(1510813040.276381,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813040.282365,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71031, 5740 bytes','zm_rtp_source.cpp',345),(1510813040.285323,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71031, 0 bytes','zm_rtp_source.cpp',336),(1510813040.356015,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813040.358786,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71032, 2872 bytes','zm_rtp_source.cpp',345),(1510813040.361165,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71032, 0 bytes','zm_rtp_source.cpp',336),(1510813040.475960,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813040.478882,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71034, 7174 bytes','zm_rtp_source.cpp',345),(1510813040.481581,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71034, 0 bytes','zm_rtp_source.cpp',336),(1510813040.916640,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813040.919998,'zmc_m1',0,6363,-1,'WAR','Discarding frame 71044','zm_rtp_source.cpp',349),(1510813040.924271,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71044, 0 bytes','zm_rtp_source.cpp',336),(1510813041.036158,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813041.041839,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71046, 5740 bytes','zm_rtp_source.cpp',345),(1510813041.047164,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71046, 0 bytes','zm_rtp_source.cpp',336),(1510813046.956115,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813046.958988,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71199, 10042 bytes','zm_rtp_source.cpp',345),(1510813046.961465,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71199, 0 bytes','zm_rtp_source.cpp',336),(1510813053.876205,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813053.880774,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71377, 1438 bytes','zm_rtp_source.cpp',345),(1510813053.885968,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71377, 0 bytes','zm_rtp_source.cpp',336),(1510813054.042740,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813054.048006,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71381, 107554 bytes','zm_rtp_source.cpp',345),(1510813054.053311,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71381, 0 bytes','zm_rtp_source.cpp',336),(1510813060.767638,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813060.773863,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71555, 5740 bytes','zm_rtp_source.cpp',345),(1510813060.780723,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71555, 0 bytes','zm_rtp_source.cpp',336),(1510813069.499786,'zmc_m1',0,6338,0,'INF','Monitor-1: 69000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813074.715933,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813074.722361,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71917, 5740 bytes','zm_rtp_source.cpp',345),(1510813074.728673,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71917, 0 bytes','zm_rtp_source.cpp',336),(1510813074.836524,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813074.844207,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71919, 8608 bytes','zm_rtp_source.cpp',345),(1510813074.847047,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71919, 0 bytes','zm_rtp_source.cpp',336),(1510813075.315166,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813075.318056,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71930, 4306 bytes','zm_rtp_source.cpp',345),(1510813075.319366,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71930, 0 bytes','zm_rtp_source.cpp',336),(1510813075.675906,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813075.678828,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71938, 12910 bytes','zm_rtp_source.cpp',345),(1510813076.037606,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813076.040803,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 71947, 84610 bytes','zm_rtp_source.cpp',345),(1510813076.043877,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813076.047046,'zmc_m1',0,6363,-1,'WAR','Discarding frame 71947','zm_rtp_source.cpp',349),(1510813076.050003,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 71947, 0 bytes','zm_rtp_source.cpp',336),(1510813082.556631,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813082.560419,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72116, 8608 bytes','zm_rtp_source.cpp',345),(1510813082.563569,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72116, 0 bytes','zm_rtp_source.cpp',336),(1510813082.916786,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813082.919780,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72124, 10042 bytes','zm_rtp_source.cpp',345),(1510813082.922589,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72124, 0 bytes','zm_rtp_source.cpp',336),(1510813082.995682,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813082.999903,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72125, 7174 bytes','zm_rtp_source.cpp',345),(1510813083.005148,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72125, 0 bytes','zm_rtp_source.cpp',336),(1510813088.715079,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813088.720563,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72273, 4306 bytes','zm_rtp_source.cpp',345),(1510813088.726129,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72273, 0 bytes','zm_rtp_source.cpp',336),(1510813089.035864,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813089.041283,'zmc_m1',0,6363,-1,'WAR','Discarding frame 72280','zm_rtp_source.cpp',349),(1510813089.046309,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72280, 0 bytes','zm_rtp_source.cpp',336),(1510813089.156678,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813089.162035,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72282, 8608 bytes','zm_rtp_source.cpp',345),(1510813089.167272,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72282, 0 bytes','zm_rtp_source.cpp',336),(1510813089.517087,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813089.520439,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72290, 12910 bytes','zm_rtp_source.cpp',345),(1510813089.876943,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813089.880042,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72298, 10042 bytes','zm_rtp_source.cpp',345),(1510813089.883397,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72298, 0 bytes','zm_rtp_source.cpp',336),(1510813089.915443,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813089.918328,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72298, 10042 bytes','zm_rtp_source.cpp',345),(1510813089.921165,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72298, 0 bytes','zm_rtp_source.cpp',336),(1510813089.955370,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813089.960831,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72298, 5740 bytes','zm_rtp_source.cpp',345),(1510813089.966325,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72298, 0 bytes','zm_rtp_source.cpp',336),(1510813090.000255,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813090.005613,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72300, 18646 bytes','zm_rtp_source.cpp',345),(1510813090.015786,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72300, 0 bytes','zm_rtp_source.cpp',336),(1510813096.072330,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813096.078153,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 72455, 126196 bytes','zm_rtp_source.cpp',345),(1510813096.082941,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 72455, 0 bytes','zm_rtp_source.cpp',336),(1510813110.187818,'zmc_m1',0,6338,0,'INF','Monitor-1: 70000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510813124.031302,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813124.035624,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 73182, 55930 bytes','zm_rtp_source.cpp',345),(1510813124.039507,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 73182, 0 bytes','zm_rtp_source.cpp',336),(1510813130.715445,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813130.718381,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 73355, 11476 bytes','zm_rtp_source.cpp',345),(1510813130.721064,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 73355, 0 bytes','zm_rtp_source.cpp',336),(1510813131.836780,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813131.839894,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 73382, 4306 bytes','zm_rtp_source.cpp',345),(1510813131.842652,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 73382, 0 bytes','zm_rtp_source.cpp',336),(1510813137.435219,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813137.438169,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 73527, 8608 bytes','zm_rtp_source.cpp',345),(1510813137.439466,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 73527, 0 bytes','zm_rtp_source.cpp',336),(1510813138.038687,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813138.041912,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 73542, 124762 bytes','zm_rtp_source.cpp',345),(1510813138.043333,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 73542, 0 bytes','zm_rtp_source.cpp',336),(1510813138.674682,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813138.678848,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 73558, 5740 bytes','zm_rtp_source.cpp',345),(1510813138.683958,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 73558, 0 bytes','zm_rtp_source.cpp',336),(1510813138.795009,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813138.800476,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 73560, 11476 bytes','zm_rtp_source.cpp',345),(1510813138.805654,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 73560, 0 bytes','zm_rtp_source.cpp',336),(1510813150.471155,'zmc_m1',0,6338,0,'INF','Monitor-1: 71000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813165.366564,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813165.371874,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74249, 1438 bytes','zm_rtp_source.cpp',345),(1510813165.377280,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 74249, 0 bytes','zm_rtp_source.cpp',336),(1510813166.031237,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813166.037221,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74266, 57364 bytes','zm_rtp_source.cpp',345),(1510813166.043305,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 74266, 0 bytes','zm_rtp_source.cpp',336),(1510813172.234470,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813172.240171,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74427, 10042 bytes','zm_rtp_source.cpp',345),(1510813172.246076,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 74427, 0 bytes','zm_rtp_source.cpp',336),(1510813172.274825,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813172.280350,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74427, 12910 bytes','zm_rtp_source.cpp',345),(1510813172.594761,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813172.597678,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74434, 8608 bytes','zm_rtp_source.cpp',345),(1510813172.598989,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 74434, 0 bytes','zm_rtp_source.cpp',336),(1510813173.234444,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813173.237488,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74449, 12910 bytes','zm_rtp_source.cpp',345),(1510813173.434190,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813173.437045,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74453, 10042 bytes','zm_rtp_source.cpp',345),(1510813173.438428,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 74453, 0 bytes','zm_rtp_source.cpp',336),(1510813173.634862,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813173.637712,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74457, 2872 bytes','zm_rtp_source.cpp',345),(1510813173.640335,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813173.645581,'zmc_m1',0,6363,-1,'WAR','Discarding frame 74457','zm_rtp_source.cpp',349),(1510813173.650708,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 74457, 0 bytes','zm_rtp_source.cpp',336),(1510813179.875309,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813179.878853,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74618, 11476 bytes','zm_rtp_source.cpp',345),(1510813179.881575,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 74618, 0 bytes','zm_rtp_source.cpp',336),(1510813187.034700,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813187.037546,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74804, 1438 bytes','zm_rtp_source.cpp',345),(1510813187.038899,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 74804, 0 bytes','zm_rtp_source.cpp',336),(1510813187.393797,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813187.396723,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74812, 1438 bytes','zm_rtp_source.cpp',345),(1510813187.399270,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 74812, 0 bytes','zm_rtp_source.cpp',336),(1510813190.906265,'zmc_m1',0,6338,0,'INF','Monitor-1: 72000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813193.999380,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813194.002498,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 74984, 35854 bytes','zm_rtp_source.cpp',345),(1510813194.011933,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 74984, 0 bytes','zm_rtp_source.cpp',336),(1510813200.038141,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813200.041468,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 75139, 129064 bytes','zm_rtp_source.cpp',345),(1510813200.043121,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 75139, 0 bytes','zm_rtp_source.cpp',336),(1510813214.049822,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813214.053156,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 75501, 116158 bytes','zm_rtp_source.cpp',345),(1510813214.056253,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 75501, 0 bytes','zm_rtp_source.cpp',336),(1510813228.030563,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813228.035289,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 75864, 64534 bytes','zm_rtp_source.cpp',345),(1510813228.038393,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813228.041514,'zmc_m1',0,6363,-1,'WAR','Discarding frame 75864','zm_rtp_source.cpp',349),(1510813228.043237,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 75864, 0 bytes','zm_rtp_source.cpp',336),(1510813228.633315,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813228.636387,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 75879, 8608 bytes','zm_rtp_source.cpp',345),(1510813228.639248,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 75879, 0 bytes','zm_rtp_source.cpp',336),(1510813228.789273,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813228.792217,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 75882, 7174 bytes','zm_rtp_source.cpp',345),(1510813228.797373,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 75882, 0 bytes','zm_rtp_source.cpp',336),(1510813231.174701,'zmc_m1',0,6338,0,'INF','Monitor-1: 73000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510813235.513480,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813235.516510,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 76055, 8608 bytes','zm_rtp_source.cpp',345),(1510813235.519233,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 76055, 0 bytes','zm_rtp_source.cpp',336),(1510813235.633365,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813235.636560,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 76057, 8608 bytes','zm_rtp_source.cpp',345),(1510813235.639555,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 76057, 0 bytes','zm_rtp_source.cpp',336),(1510813235.873664,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813235.876597,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 76062, 11476 bytes','zm_rtp_source.cpp',345),(1510813235.882004,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 76062, 0 bytes','zm_rtp_source.cpp',336),(1510813236.154054,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813236.159315,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 76070, 4306 bytes','zm_rtp_source.cpp',345),(1510813236.164570,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 76070, 0 bytes','zm_rtp_source.cpp',336),(1510813242.157012,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813242.162289,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 76225, 12910 bytes','zm_rtp_source.cpp',345),(1510813264.027437,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813264.030553,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 76792, 40156 bytes','zm_rtp_source.cpp',345),(1510813264.036789,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 76792, 0 bytes','zm_rtp_source.cpp',336),(1510813270.033525,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813270.043034,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 76948, 11476 bytes','zm_rtp_source.cpp',345),(1510813270.512495,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813270.517754,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 76959, 2872 bytes','zm_rtp_source.cpp',345),(1510813270.522913,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 76959, 0 bytes','zm_rtp_source.cpp',336),(1510813271.433341,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813271.438061,'zmc_m1',0,6363,-1,'WAR','Discarding frame 76981','zm_rtp_source.cpp',349),(1510813271.441270,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 76981, 0 bytes','zm_rtp_source.cpp',336),(1510813271.535560,'zmc_m1',0,6338,0,'INF','Monitor-1: 74000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813278.433276,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813278.436194,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 77163, 11476 bytes','zm_rtp_source.cpp',345),(1510813278.438706,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 77163, 0 bytes','zm_rtp_source.cpp',336),(1510813298.022802,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813298.026025,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 77671, 4306 bytes','zm_rtp_source.cpp',345),(1510813298.037315,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 77671, 0 bytes','zm_rtp_source.cpp',336),(1510813311.616786,'zmc_m1',0,6338,0,'INF','Monitor-1: 75000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813319.111930,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813319.117250,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 78218, 2872 bytes','zm_rtp_source.cpp',345),(1510813319.122367,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 78218, 0 bytes','zm_rtp_source.cpp',336),(1510813319.471715,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813319.474950,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 78226, 4306 bytes','zm_rtp_source.cpp',345),(1510813319.477856,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 78226, 0 bytes','zm_rtp_source.cpp',336),(1510813320.032214,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813320.035150,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 78240, 71704 bytes','zm_rtp_source.cpp',345),(1510813320.037823,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 78240, 0 bytes','zm_rtp_source.cpp',336),(1510813325.752212,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813325.755165,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 78387, 11476 bytes','zm_rtp_source.cpp',345),(1510813325.757859,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 78387, 0 bytes','zm_rtp_source.cpp',336),(1510813326.831811,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813326.837080,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 78415, 2872 bytes','zm_rtp_source.cpp',345),(1510813326.842313,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 78415, 0 bytes','zm_rtp_source.cpp',336),(1510813326.912244,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813326.915068,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 78416, 11476 bytes','zm_rtp_source.cpp',345),(1510813326.917555,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 78416, 0 bytes','zm_rtp_source.cpp',336),(1510813340.023502,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813340.028038,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 78756, 24382 bytes','zm_rtp_source.cpp',345),(1510813340.035187,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 78756, 0 bytes','zm_rtp_source.cpp',336),(1510813346.951588,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813346.955885,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 78935, 5740 bytes','zm_rtp_source.cpp',345),(1510813346.959101,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 78935, 0 bytes','zm_rtp_source.cpp',336),(1510813348.022460,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813348.025530,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 78962, 14344 bytes','zm_rtp_source.cpp',345),(1510813348.035547,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 78962, 0 bytes','zm_rtp_source.cpp',336),(1510813351.973026,'zmc_m1',0,6338,0,'INF','Monitor-1: 76000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813353.766026,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813353.769030,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 79109, 11476 bytes','zm_rtp_source.cpp',345),(1510813353.770438,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 79109, 0 bytes','zm_rtp_source.cpp',336),(1510813353.951269,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813353.954170,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 79113, 2872 bytes','zm_rtp_source.cpp',345),(1510813353.955460,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 79113, 0 bytes','zm_rtp_source.cpp',336),(1510813354.231582,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813354.236905,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 79121, 2872 bytes','zm_rtp_source.cpp',345),(1510813354.242171,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 79121, 0 bytes','zm_rtp_source.cpp',336),(1510813354.391749,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813354.396951,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 79124, 4306 bytes','zm_rtp_source.cpp',345),(1510813354.401947,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 79124, 0 bytes','zm_rtp_source.cpp',336),(1510813354.671541,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813354.676559,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 79130, 2872 bytes','zm_rtp_source.cpp',345),(1510813354.679053,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813354.681492,'zmc_m1',0,6363,-1,'WAR','Discarding frame 79130','zm_rtp_source.cpp',349),(1510813354.682744,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 79130, 0 bytes','zm_rtp_source.cpp',336),(1510813354.991417,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813354.994218,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 79137, 5740 bytes','zm_rtp_source.cpp',345),(1510813354.995639,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 79137, 0 bytes','zm_rtp_source.cpp',336),(1510813360.991539,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813360.997560,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 79292, 4306 bytes','zm_rtp_source.cpp',345),(1510813361.004050,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 79292, 0 bytes','zm_rtp_source.cpp',336),(1510813361.230735,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813361.234368,'zmc_m1',0,6363,-1,'WAR','Discarding frame 79297','zm_rtp_source.cpp',349),(1510813361.237198,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 79297, 0 bytes','zm_rtp_source.cpp',336),(1510813361.912266,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813361.915136,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 79313, 7174 bytes','zm_rtp_source.cpp',345),(1510813361.917621,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 79313, 0 bytes','zm_rtp_source.cpp',336),(1510813375.232729,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813375.239402,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 79659, 12910 bytes','zm_rtp_source.cpp',345),(1510813382.711582,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813382.717302,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 79853, 12910 bytes','zm_rtp_source.cpp',345),(1510813389.391553,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813389.396955,'zmc_m1',0,6363,-1,'WAR','Discarding frame 80025','zm_rtp_source.cpp',349),(1510813389.401899,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80025, 0 bytes','zm_rtp_source.cpp',336),(1510813392.456650,'zmc_m1',0,6338,0,'INF','Monitor-1: 77000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510813396.022273,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813396.025176,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 80197, 21514 bytes','zm_rtp_source.cpp',345),(1510813396.034998,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80197, 0 bytes','zm_rtp_source.cpp',336),(1510813396.802570,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813396.805382,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 80216, 1438 bytes','zm_rtp_source.cpp',345),(1510813396.806687,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80216, 0 bytes','zm_rtp_source.cpp',336),(1510813399.697450,'zmcontrol',NULL,10573,0,'INF','Control server 1/Floureon exiting at 17/11/16 08:23:19','zmcontrol.pl',NULL),(1510813409.831585,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813409.838682,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 80553, 11476 bytes','zm_rtp_source.cpp',345),(1510813409.845381,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80553, 0 bytes','zm_rtp_source.cpp',336),(1510813410.231283,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813410.238296,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 80564, 10042 bytes','zm_rtp_source.cpp',345),(1510813410.242164,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80564, 0 bytes','zm_rtp_source.cpp',336),(1510813410.631712,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813410.634900,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 80573, 5740 bytes','zm_rtp_source.cpp',345),(1510813410.637766,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80573, 0 bytes','zm_rtp_source.cpp',336),(1510813416.470565,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813416.473486,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 80724, 1438 bytes','zm_rtp_source.cpp',345),(1510813416.474858,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80724, 0 bytes','zm_rtp_source.cpp',336),(1510813417.150050,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813417.152912,'zmc_m1',0,6363,-1,'WAR','Discarding frame 80740','zm_rtp_source.cpp',349),(1510813417.155467,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813417.159559,'zmc_m1',0,6363,-1,'WAR','Discarding frame 80740','zm_rtp_source.cpp',349),(1510813417.164629,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80740, 0 bytes','zm_rtp_source.cpp',336),(1510813417.270962,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813417.276243,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 80742, 8608 bytes','zm_rtp_source.cpp',345),(1510813417.281567,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80742, 0 bytes','zm_rtp_source.cpp',336),(1510813417.609716,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813417.615341,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 80749, 8608 bytes','zm_rtp_source.cpp',345),(1510813417.620498,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80749, 0 bytes','zm_rtp_source.cpp',336),(1510813424.590577,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813424.593390,'zmc_m1',0,6363,-1,'WAR','Discarding frame 80931','zm_rtp_source.cpp',349),(1510813424.594761,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 80931, 0 bytes','zm_rtp_source.cpp',336),(1510813432.850093,'zmc_m1',0,6338,0,'INF','Monitor-1: 78000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813437.910909,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813437.916126,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 81275, 12910 bytes','zm_rtp_source.cpp',345),(1510813451.431638,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813451.436911,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 81626, 11476 bytes','zm_rtp_source.cpp',345),(1510813451.441877,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 81626, 0 bytes','zm_rtp_source.cpp',336),(1510813452.100723,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813452.105211,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 81643, 4306 bytes','zm_rtp_source.cpp',345),(1510813452.108331,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 81643, 0 bytes','zm_rtp_source.cpp',336),(1510813452.270243,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813452.273085,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 81647, 1438 bytes','zm_rtp_source.cpp',345),(1510813452.275653,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 81647, 0 bytes','zm_rtp_source.cpp',336),(1510813459.030105,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813459.035213,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 81821, 7174 bytes','zm_rtp_source.cpp',345),(1510813459.040494,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 81821, 0 bytes','zm_rtp_source.cpp',336),(1510813465.190785,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813465.196174,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 81980, 12910 bytes','zm_rtp_source.cpp',345),(1510813472.270119,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813472.273801,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 82164, 10042 bytes','zm_rtp_source.cpp',345),(1510813472.276512,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 82164, 0 bytes','zm_rtp_source.cpp',336),(1510813473.130600,'zmc_m1',0,6338,0,'INF','Monitor-1: 79000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510813473.511288,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813473.516244,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 82194, 11476 bytes','zm_rtp_source.cpp',345),(1510813473.520877,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 82194, 0 bytes','zm_rtp_source.cpp',336),(1510813480.032777,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813480.036062,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 82363, 111856 bytes','zm_rtp_source.cpp',345),(1510813480.039190,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 82363, 0 bytes','zm_rtp_source.cpp',336),(1510813486.511748,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813486.514692,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 82531, 7174 bytes','zm_rtp_source.cpp',345),(1510813486.517128,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 82531, 0 bytes','zm_rtp_source.cpp',336),(1510813486.561454,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813486.564376,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 82531, 7174 bytes','zm_rtp_source.cpp',345),(1510813486.567093,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 82531, 0 bytes','zm_rtp_source.cpp',336),(1510813486.788908,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813486.794424,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 82536, 1438 bytes','zm_rtp_source.cpp',345),(1510813486.799452,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 82536, 0 bytes','zm_rtp_source.cpp',336),(1510813493.830395,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813493.833188,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 82717, 12910 bytes','zm_rtp_source.cpp',345),(1510813508.081258,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813508.084121,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83088, 10042 bytes','zm_rtp_source.cpp',345),(1510813508.088984,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83088, 0 bytes','zm_rtp_source.cpp',336),(1510813513.409909,'zmc_m1',0,6338,0,'INF','Monitor-1: 80000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813514.628867,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813514.631565,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83257, 1438 bytes','zm_rtp_source.cpp',345),(1510813514.634118,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83257, 0 bytes','zm_rtp_source.cpp',336),(1510813514.830201,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813514.833293,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83261, 11476 bytes','zm_rtp_source.cpp',345),(1510813514.834764,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83261, 0 bytes','zm_rtp_source.cpp',336),(1510813515.150110,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813515.153036,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83268, 7174 bytes','zm_rtp_source.cpp',345),(1510813515.155523,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83268, 0 bytes','zm_rtp_source.cpp',336),(1510813535.149347,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813535.156822,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83787, 11476 bytes','zm_rtp_source.cpp',345),(1510813535.161708,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83787, 0 bytes','zm_rtp_source.cpp',336),(1510813535.309124,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813535.314792,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83790, 1438 bytes','zm_rtp_source.cpp',345),(1510813535.320114,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83790, 0 bytes','zm_rtp_source.cpp',336),(1510813535.908721,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813535.912089,'zmc_m1',0,6363,-1,'WAR','Discarding frame 83804','zm_rtp_source.cpp',349),(1510813535.914572,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83804, 0 bytes','zm_rtp_source.cpp',336),(1510813536.004945,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813536.007883,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83807, 113290 bytes','zm_rtp_source.cpp',345),(1510813536.010771,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83807, 0 bytes','zm_rtp_source.cpp',336),(1510813536.069219,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 3','zm_rtp_source.cpp',127),(1510813536.072171,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83808, 1438 bytes','zm_rtp_source.cpp',345),(1510813536.076180,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813536.081143,'zmc_m1',0,6363,-1,'WAR','Discarding frame 83808','zm_rtp_source.cpp',349),(1510813536.086257,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83808, 0 bytes','zm_rtp_source.cpp',336),(1510813542.091518,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813542.094860,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83963, 1438 bytes','zm_rtp_source.cpp',345),(1510813542.097625,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813542.098906,'zmc_m1',0,6363,-1,'WAR','Discarding frame 83963','zm_rtp_source.cpp',349),(1510813542.101441,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83963, 0 bytes','zm_rtp_source.cpp',336),(1510813542.308844,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813542.314312,'zmc_m1',0,6363,-1,'WAR','Discarding frame 83968','zm_rtp_source.cpp',349),(1510813542.319601,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83968, 0 bytes','zm_rtp_source.cpp',336),(1510813542.429896,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813542.435721,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83970, 11476 bytes','zm_rtp_source.cpp',345),(1510813542.441044,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83970, 0 bytes','zm_rtp_source.cpp',336),(1510813543.109414,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813543.115108,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 83986, 5740 bytes','zm_rtp_source.cpp',345),(1510813543.120038,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 83986, 0 bytes','zm_rtp_source.cpp',336),(1510813549.920631,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813549.926877,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 84161, 7174 bytes','zm_rtp_source.cpp',345),(1510813549.933774,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 84161, 0 bytes','zm_rtp_source.cpp',336),(1510813553.946784,'zmc_m1',0,6338,0,'INF','Monitor-1: 81000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813563.149486,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813563.152579,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 84505, 8608 bytes','zm_rtp_source.cpp',345),(1510813563.157757,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 84505, 0 bytes','zm_rtp_source.cpp',336),(1510813585.187973,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813585.190764,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 85077, 4306 bytes','zm_rtp_source.cpp',345),(1510813585.193538,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 85077, 0 bytes','zm_rtp_source.cpp',336),(1510813585.548871,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813585.554185,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 85085, 11476 bytes','zm_rtp_source.cpp',345),(1510813585.559776,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 85085, 0 bytes','zm_rtp_source.cpp',336),(1510813591.468031,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813591.471737,'zmc_m1',0,6363,-1,'WAR','Discarding frame 85238','zm_rtp_source.cpp',349),(1510813591.474398,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 85238, 0 bytes','zm_rtp_source.cpp',336),(1510813591.787315,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813591.790270,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 85245, 1438 bytes','zm_rtp_source.cpp',345),(1510813591.791561,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 85245, 0 bytes','zm_rtp_source.cpp',336),(1510813594.130426,'zmc_m1',0,6338,0,'INF','Monitor-1: 82000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510813626.907298,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813626.912527,'zmc_m1',0,6363,-1,'WAR','Discarding frame 86158','zm_rtp_source.cpp',349),(1510813626.918147,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86158, 0 bytes','zm_rtp_source.cpp',336),(1510813627.147292,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813627.152457,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 86163, 2872 bytes','zm_rtp_source.cpp',345),(1510813627.156532,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86163, 0 bytes','zm_rtp_source.cpp',336),(1510813627.187339,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813627.189801,'zmc_m1',0,6363,-1,'WAR','Discarding frame 86163','zm_rtp_source.cpp',349),(1510813627.191136,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86163, 0 bytes','zm_rtp_source.cpp',336),(1510813627.588672,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813627.591553,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 86172, 10042 bytes','zm_rtp_source.cpp',345),(1510813627.594044,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86172, 0 bytes','zm_rtp_source.cpp',336),(1510813627.668051,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813627.670941,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 86173, 8608 bytes','zm_rtp_source.cpp',345),(1510813627.675234,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86173, 0 bytes','zm_rtp_source.cpp',336),(1510813634.024932,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813634.031142,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 86338, 65968 bytes','zm_rtp_source.cpp',345),(1510813634.036680,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86338, 0 bytes','zm_rtp_source.cpp',336),(1510813634.042219,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813634.047429,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 86338, 10042 bytes','zm_rtp_source.cpp',345),(1510813634.052714,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86338, 0 bytes','zm_rtp_source.cpp',336),(1510813634.428002,'zmc_m1',0,6338,0,'INF','Monitor-1: 83000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813648.467620,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813648.470614,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 86712, 11476 bytes','zm_rtp_source.cpp',345),(1510813648.473393,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86712, 0 bytes','zm_rtp_source.cpp',336),(1510813654.386728,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813654.391752,'zmc_m1',0,6363,-1,'WAR','Discarding frame 86865','zm_rtp_source.cpp',349),(1510813654.396963,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86865, 0 bytes','zm_rtp_source.cpp',336),(1510813654.787467,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813654.792885,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 86874, 5740 bytes','zm_rtp_source.cpp',345),(1510813654.798441,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86874, 0 bytes','zm_rtp_source.cpp',336),(1510813654.867603,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813654.872622,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 86875, 11476 bytes','zm_rtp_source.cpp',345),(1510813654.877834,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 86875, 0 bytes','zm_rtp_source.cpp',336),(1510813674.568148,'zmc_m1',0,6338,0,'INF','Monitor-1: 84000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813676.988009,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 268','zm_rtp_source.cpp',127),(1510813676.992585,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 87425, 5740 bytes','zm_rtp_source.cpp',345),(1510813683.186991,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813683.190256,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 87585, 8608 bytes','zm_rtp_source.cpp',345),(1510813683.193227,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 87585, 0 bytes','zm_rtp_source.cpp',336),(1510813683.426972,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813683.431303,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 87590, 7174 bytes','zm_rtp_source.cpp',345),(1510813683.436730,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 87590, 0 bytes','zm_rtp_source.cpp',336),(1510813689.547810,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813689.550763,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 87748, 7174 bytes','zm_rtp_source.cpp',345),(1510813689.553290,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 87748, 0 bytes','zm_rtp_source.cpp',336),(1510813690.106519,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813690.109435,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 87763, 4306 bytes','zm_rtp_source.cpp',345),(1510813690.110906,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 87763, 0 bytes','zm_rtp_source.cpp',336),(1510813690.227271,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813690.232404,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 87765, 11476 bytes','zm_rtp_source.cpp',345),(1510813690.237472,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 87765, 0 bytes','zm_rtp_source.cpp',336),(1510813690.907148,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813690.912844,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 87781, 5740 bytes','zm_rtp_source.cpp',345),(1510813690.918384,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 87781, 0 bytes','zm_rtp_source.cpp',336),(1510813697.266880,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813697.272217,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 87945, 1438 bytes','zm_rtp_source.cpp',345),(1510813697.277379,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 87945, 0 bytes','zm_rtp_source.cpp',336),(1510813697.547244,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813697.550826,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 87951, 7174 bytes','zm_rtp_source.cpp',345),(1510813697.553513,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 87951, 0 bytes','zm_rtp_source.cpp',336),(1510813710.757119,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813710.762446,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 88294, 1438 bytes','zm_rtp_source.cpp',345),(1510813710.767191,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 88294, 0 bytes','zm_rtp_source.cpp',336),(1510813715.939105,'zmc_m1',0,6338,0,'INF','Monitor-1: 85000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510813724.786523,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813724.789480,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 88658, 8608 bytes','zm_rtp_source.cpp',345),(1510813724.790765,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 88658, 0 bytes','zm_rtp_source.cpp',336),(1510813725.946612,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813725.949166,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 88686, 11476 bytes','zm_rtp_source.cpp',345),(1510813725.950475,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 88686, 0 bytes','zm_rtp_source.cpp',336),(1510813726.027813,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813726.033408,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 88688, 106120 bytes','zm_rtp_source.cpp',345),(1510813726.039098,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 88688, 0 bytes','zm_rtp_source.cpp',336),(1510813731.546237,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813731.551866,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 88830, 4306 bytes','zm_rtp_source.cpp',345),(1510813731.557254,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 88830, 0 bytes','zm_rtp_source.cpp',336),(1510813731.746488,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813731.751824,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 88834, 7174 bytes','zm_rtp_source.cpp',345),(1510813731.756486,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 88834, 0 bytes','zm_rtp_source.cpp',336),(1510813732.186786,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813732.190896,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 88846, 11476 bytes','zm_rtp_source.cpp',345),(1510813732.193846,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 88846, 0 bytes','zm_rtp_source.cpp',336),(1510813732.225910,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813732.228956,'zmc_m1',0,6363,-1,'WAR','Discarding frame 88846','zm_rtp_source.cpp',349),(1510813732.231771,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813732.234857,'zmc_m1',0,6363,-1,'WAR','Discarding frame 88846','zm_rtp_source.cpp',349),(1510813732.266100,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813732.269364,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 88846, 5740 bytes','zm_rtp_source.cpp',345),(1510813732.271036,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 88846, 0 bytes','zm_rtp_source.cpp',336),(1510813732.306109,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813732.311781,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 88846, 1438 bytes','zm_rtp_source.cpp',345),(1510813732.317090,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 88846, 0 bytes','zm_rtp_source.cpp',336),(1510813732.746247,'zmc_m1',0,6363,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813732.751843,'zmc_m1',0,6363,-1,'WAR','Discarding partial frame 88856, 10042 bytes','zm_rtp_source.cpp',345),(1510813732.756995,'zmc_m1',0,6363,-1,'WAR','Discarding incomplete frame 88856, 0 bytes','zm_rtp_source.cpp',336),(1510813749.349878,'zmc_m1',0,6363,-2,'ERR','RTP timed out','zm_rtp_data.cpp',93),(1510813752.099820,'zmwatch',NULL,1655,0,'INF','Restarting capture daemon for Monitor-1, time since last capture 6 seconds (1510813752-1510813746)','zmwatch.pl',NULL),(1510813752.204440,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' sending stop to pid 6338 at 17/11/16 08:29:12','zmdc.pl',NULL),(1510813752.207654,'zmc_m1',0,6338,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510813756.443934,'zms',0,10822,-2,'ERR','Terminating, last frame sent time 10.016209 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510813758.208500,'zmdc',NULL,1432,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/16 08:29:18. Sending KILL to pid 6338','zmdc.pl',NULL),(1510813758.225180,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510813758.328390,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510813758.335350,'zmdc',NULL,12538,0,'INF','\'zmc -m 1\' started at 17/11/16 08:29:18','zmdc.pl',NULL),(1510813758.335260,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 08:29:18, pid = 12538','zmdc.pl',NULL),(1510813758.474608,'zmc_m1',0,12538,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510813758.623283,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510813758.642349,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510813758.683065,'zms',0,12540,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510813758.688281,'zms',0,12540,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510813759.194218,'zms',0,12540,-2,'ERR','Terminating, last frame sent time 1510813758.694075 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510813759.986077,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813759.992192,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 13, 5740 bytes','zm_rtp_source.cpp',345),(1510813760.586245,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813760.589072,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27, 11476 bytes','zm_rtp_source.cpp',345),(1510813760.590380,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27, 0 bytes','zm_rtp_source.cpp',336),(1510813760.665278,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813760.668124,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 28, 2872 bytes','zm_rtp_source.cpp',345),(1510813760.670608,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 28, 0 bytes','zm_rtp_source.cpp',336),(1510813760.786395,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813760.789271,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 30, 12910 bytes','zm_rtp_source.cpp',345),(1510813760.943073,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813760.948429,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 33, 11476 bytes','zm_rtp_source.cpp',345),(1510813760.960163,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 33, 0 bytes','zm_rtp_source.cpp',336),(1510813761.641115,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510813761.658390,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510813761.704014,'zms',0,12552,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510813761.708841,'zms',0,12552,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510813761.831825,'web_php',NULL,10575,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510813766.865178,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813766.870202,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 186, 1438 bytes','zm_rtp_source.cpp',345),(1510813766.872707,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 186, 0 bytes','zm_rtp_source.cpp',336),(1510813773.756478,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813773.762144,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 365, 4306 bytes','zm_rtp_source.cpp',345),(1510813773.765040,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 365, 0 bytes','zm_rtp_source.cpp',336),(1510813799.846652,'zmc_m1',0,12538,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510813809.590145,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813809.597155,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 1296, 4306 bytes','zm_rtp_source.cpp',345),(1510813809.603636,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 1296, 0 bytes','zm_rtp_source.cpp',336),(1510813809.997224,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813810.004220,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 1305, 7174 bytes','zm_rtp_source.cpp',345),(1510813810.007632,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 1305, 0 bytes','zm_rtp_source.cpp',336),(1510813815.905337,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813815.909321,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 1458, 10042 bytes','zm_rtp_source.cpp',345),(1510813815.911693,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 1458, 0 bytes','zm_rtp_source.cpp',336),(1510813816.104946,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813816.108079,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 1462, 4306 bytes','zm_rtp_source.cpp',345),(1510813816.111104,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 1462, 0 bytes','zm_rtp_source.cpp',336),(1510813816.504367,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813816.507533,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 1470, 12910 bytes','zm_rtp_source.cpp',345),(1510813816.510416,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 1470, 0 bytes','zm_rtp_source.cpp',336),(1510813816.945625,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813816.951137,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 1480, 12910 bytes','zm_rtp_source.cpp',345),(1510813817.065042,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813817.070407,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 1482, 7174 bytes','zm_rtp_source.cpp',345),(1510813817.075663,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 1482, 0 bytes','zm_rtp_source.cpp',336),(1510813823.025381,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813823.028895,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 1636, 10042 bytes','zm_rtp_source.cpp',345),(1510813823.031867,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 1636, 0 bytes','zm_rtp_source.cpp',336),(1510813823.704482,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813823.707339,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 1654, 2872 bytes','zm_rtp_source.cpp',345),(1510813823.711092,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 1654, 0 bytes','zm_rtp_source.cpp',336),(1510813823.984235,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813823.989415,'zmc_m1',0,12541,-1,'WAR','Discarding frame 1660','zm_rtp_source.cpp',349),(1510813823.994503,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 1660, 0 bytes','zm_rtp_source.cpp',336),(1510813837.648769,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813837.653807,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 2014, 4306 bytes','zm_rtp_source.cpp',345),(1510813837.659365,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 2014, 0 bytes','zm_rtp_source.cpp',336),(1510813840.325870,'zmc_m1',0,12538,0,'INF','Monitor-1: 2000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510813843.995347,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813843.998171,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 2178, 2872 bytes','zm_rtp_source.cpp',345),(1510813843.999475,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 2178, 0 bytes','zm_rtp_source.cpp',336),(1510813851.463983,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813851.469577,'zmc_m1',0,12541,-1,'WAR','Discarding frame 2370','zm_rtp_source.cpp',349),(1510813851.472784,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 2370, 0 bytes','zm_rtp_source.cpp',336),(1510813858.184054,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813858.189978,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 2544, 12910 bytes','zm_rtp_source.cpp',345),(1510813858.195864,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 2544, 0 bytes','zm_rtp_source.cpp',336),(1510813865.263767,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813865.267092,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 2726, 1438 bytes','zm_rtp_source.cpp',345),(1510813865.269909,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 2726, 0 bytes','zm_rtp_source.cpp',336),(1510813865.465173,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813865.468428,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 2730, 11476 bytes','zm_rtp_source.cpp',345),(1510813865.984583,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813865.987497,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 2744, 8608 bytes','zm_rtp_source.cpp',345),(1510813865.989916,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 2744, 0 bytes','zm_rtp_source.cpp',336),(1510813866.224168,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813866.229529,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 2749, 5740 bytes','zm_rtp_source.cpp',345),(1510813866.231973,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 2749, 0 bytes','zm_rtp_source.cpp',336),(1510813880.644136,'zmc_m1',0,12538,0,'INF','Monitor-1: 3000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813900.423549,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813900.429680,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 3637, 2872 bytes','zm_rtp_source.cpp',345),(1510813900.434764,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 3637, 0 bytes','zm_rtp_source.cpp',336),(1510813901.223795,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813901.227023,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 3656, 4306 bytes','zm_rtp_source.cpp',345),(1510813901.229516,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 3656, 0 bytes','zm_rtp_source.cpp',336),(1510813906.983755,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813906.988182,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 3805, 7174 bytes','zm_rtp_source.cpp',345),(1510813906.991421,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 3805, 0 bytes','zm_rtp_source.cpp',336),(1510813907.303557,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813907.306402,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 3812, 7174 bytes','zm_rtp_source.cpp',345),(1510813907.308972,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 3812, 0 bytes','zm_rtp_source.cpp',336),(1510813914.182758,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813914.188343,'zmc_m1',0,12541,-1,'WAR','Discarding frame 3991','zm_rtp_source.cpp',349),(1510813914.191304,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 3991, 0 bytes','zm_rtp_source.cpp',336),(1510813914.383752,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813914.386645,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 3995, 10042 bytes','zm_rtp_source.cpp',345),(1510813914.389131,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 3995, 0 bytes','zm_rtp_source.cpp',336),(1510813914.704220,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813914.707087,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 4002, 11476 bytes','zm_rtp_source.cpp',345),(1510813914.743298,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813914.746704,'zmc_m1',0,12541,-1,'WAR','Discarding frame 4002','zm_rtp_source.cpp',349),(1510813914.749691,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813914.752631,'zmc_m1',0,12541,-1,'WAR','Discarding frame 4002','zm_rtp_source.cpp',349),(1510813914.757997,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 4002, 0 bytes','zm_rtp_source.cpp',336),(1510813914.904082,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813914.909776,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 4005, 8608 bytes','zm_rtp_source.cpp',345),(1510813914.915267,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 4005, 0 bytes','zm_rtp_source.cpp',336),(1510813921.012839,'zmc_m1',0,12538,0,'INF','Monitor-1: 4000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510813921.585916,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813921.591451,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 4178, 97516 bytes','zm_rtp_source.cpp',345),(1510813921.596125,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 4178, 0 bytes','zm_rtp_source.cpp',336),(1510813935.571028,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813935.576855,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 4541, 83176 bytes','zm_rtp_source.cpp',345),(1510813935.582365,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 4541, 0 bytes','zm_rtp_source.cpp',336),(1510813956.902564,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813956.907660,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 5094, 1438 bytes','zm_rtp_source.cpp',345),(1510813956.913117,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813956.919146,'zmc_m1',0,12541,-1,'WAR','Discarding frame 5094','zm_rtp_source.cpp',349),(1510813961.134837,'zmc_m1',0,12538,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510813963.397857,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813963.403208,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 5261, 7174 bytes','zm_rtp_source.cpp',345),(1510813963.408508,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 5261, 0 bytes','zm_rtp_source.cpp',336),(1510813970.782232,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813970.786161,'zmc_m1',0,12541,-1,'WAR','Discarding frame 5453','zm_rtp_source.cpp',349),(1510813970.787361,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 5453, 0 bytes','zm_rtp_source.cpp',336),(1510813970.862497,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813970.867916,'zmc_m1',0,12541,-1,'WAR','Discarding frame 5454','zm_rtp_source.cpp',349),(1510813970.872791,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 5454, 0 bytes','zm_rtp_source.cpp',336),(1510813977.343493,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813977.350096,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 5621, 11476 bytes','zm_rtp_source.cpp',345),(1510813977.357028,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 5621, 0 bytes','zm_rtp_source.cpp',336),(1510813977.646480,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813977.652967,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 5629, 5740 bytes','zm_rtp_source.cpp',345),(1510813977.656463,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 5629, 0 bytes','zm_rtp_source.cpp',336),(1510813977.902238,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813977.905520,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 5634, 14344 bytes','zm_rtp_source.cpp',345),(1510813977.907127,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 5634, 0 bytes','zm_rtp_source.cpp',336),(1510813978.263054,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813978.266368,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 5642, 5740 bytes','zm_rtp_source.cpp',345),(1510813978.269335,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 5642, 0 bytes','zm_rtp_source.cpp',336),(1510813978.463976,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813978.467648,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 5646, 12910 bytes','zm_rtp_source.cpp',345),(1510813992.543017,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813992.548326,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6011, 10042 bytes','zm_rtp_source.cpp',345),(1510813992.553247,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6011, 0 bytes','zm_rtp_source.cpp',336),(1510813998.582380,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813998.585512,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6167, 5740 bytes','zm_rtp_source.cpp',345),(1510813998.587002,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6167, 0 bytes','zm_rtp_source.cpp',336),(1510813998.662311,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813998.667731,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6168, 5740 bytes','zm_rtp_source.cpp',345),(1510813998.673600,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6168, 0 bytes','zm_rtp_source.cpp',336),(1510813999.262055,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813999.267379,'zmc_m1',0,12541,-1,'WAR','Discarding frame 6182','zm_rtp_source.cpp',349),(1510813999.272456,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813999.278322,'zmc_m1',0,12541,-1,'WAR','Discarding frame 6182','zm_rtp_source.cpp',349),(1510813999.283506,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6182, 0 bytes','zm_rtp_source.cpp',336),(1510813999.581577,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510813999.584730,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6190, 63100 bytes','zm_rtp_source.cpp',345),(1510813999.588516,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6190, 0 bytes','zm_rtp_source.cpp',336),(1510814001.690927,'zmc_m1',0,12538,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814005.587689,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814005.593268,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6345, 133366 bytes','zm_rtp_source.cpp',345),(1510814005.598285,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6345, 0 bytes','zm_rtp_source.cpp',336),(1510814006.262385,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814006.265454,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6362, 10042 bytes','zm_rtp_source.cpp',345),(1510814006.266715,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6362, 0 bytes','zm_rtp_source.cpp',336),(1510814006.382652,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814006.385554,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6364, 11476 bytes','zm_rtp_source.cpp',345),(1510814006.386776,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6364, 0 bytes','zm_rtp_source.cpp',336),(1510814012.343833,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814012.350852,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6518, 12910 bytes','zm_rtp_source.cpp',345),(1510814026.301781,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814026.306887,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6880, 2872 bytes','zm_rtp_source.cpp',345),(1510814026.309607,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6880, 0 bytes','zm_rtp_source.cpp',336),(1510814026.593119,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814026.596170,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6886, 1438 bytes','zm_rtp_source.cpp',345),(1510814026.597763,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6886, 0 bytes','zm_rtp_source.cpp',336),(1510814026.782072,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814026.785078,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6890, 10042 bytes','zm_rtp_source.cpp',345),(1510814026.787719,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 6890, 0 bytes','zm_rtp_source.cpp',336),(1510814027.580034,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814027.582800,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 6911, 11476 bytes','zm_rtp_source.cpp',345),(1510814040.821904,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814040.824780,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 7253, 2872 bytes','zm_rtp_source.cpp',345),(1510814040.827476,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 7253, 0 bytes','zm_rtp_source.cpp',336),(1510814040.902293,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814040.907524,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 7254, 8608 bytes','zm_rtp_source.cpp',345),(1510814040.912828,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 7254, 0 bytes','zm_rtp_source.cpp',336),(1510814041.262447,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814041.267782,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 7262, 10042 bytes','zm_rtp_source.cpp',345),(1510814041.272935,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 7262, 0 bytes','zm_rtp_source.cpp',336),(1510814041.701264,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814041.705445,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 7273, 12910 bytes','zm_rtp_source.cpp',345),(1510814041.708297,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 7273, 0 bytes','zm_rtp_source.cpp',336),(1510814042.203030,'zmc_m1',0,12538,0,'INF','Monitor-1: 7000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510814048.461732,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814048.465147,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 7447, 2872 bytes','zm_rtp_source.cpp',345),(1510814048.467639,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 7447, 0 bytes','zm_rtp_source.cpp',336),(1510814062.502468,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814062.505621,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 7811, 12910 bytes','zm_rtp_source.cpp',345),(1510814082.292854,'zmc_m1',0,12538,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814082.580821,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814082.583937,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 8332, 1438 bytes','zm_rtp_source.cpp',345),(1510814082.586740,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 8332, 0 bytes','zm_rtp_source.cpp',336),(1510814083.101628,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814083.106713,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 8344, 7174 bytes','zm_rtp_source.cpp',345),(1510814083.111776,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 8344, 0 bytes','zm_rtp_source.cpp',336),(1510814083.575564,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814083.580975,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 8356, 44458 bytes','zm_rtp_source.cpp',345),(1510814083.586759,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 8356, 0 bytes','zm_rtp_source.cpp',336),(1510814090.421129,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814090.426606,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 8533, 2872 bytes','zm_rtp_source.cpp',345),(1510814090.431974,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 8533, 0 bytes','zm_rtp_source.cpp',336),(1510814096.421580,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814096.426931,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 8688, 11476 bytes','zm_rtp_source.cpp',345),(1510814096.432050,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 8688, 0 bytes','zm_rtp_source.cpp',336),(1510814096.461365,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814096.464406,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 8688, 7174 bytes','zm_rtp_source.cpp',345),(1510814096.467483,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 8688, 0 bytes','zm_rtp_source.cpp',336),(1510814096.981166,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814096.984142,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 8700, 10042 bytes','zm_rtp_source.cpp',345),(1510814096.986660,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 8700, 0 bytes','zm_rtp_source.cpp',336),(1510814097.568709,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814097.571917,'zmc_m1',0,12541,-1,'WAR','Discarding frame 8715','zm_rtp_source.cpp',349),(1510814097.586525,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 8715, 0 bytes','zm_rtp_source.cpp',336),(1510814122.601145,'zmc_m1',0,12538,0,'INF','Monitor-1: 9000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814131.660592,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814131.663433,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9601, 5740 bytes','zm_rtp_source.cpp',345),(1510814131.667573,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9601, 0 bytes','zm_rtp_source.cpp',336),(1510814132.020503,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814132.026251,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9609, 8608 bytes','zm_rtp_source.cpp',345),(1510814132.031662,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9609, 0 bytes','zm_rtp_source.cpp',336),(1510814132.340031,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814132.345428,'zmc_m1',0,12541,-1,'WAR','Discarding frame 9616','zm_rtp_source.cpp',349),(1510814132.350380,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9616, 0 bytes','zm_rtp_source.cpp',336),(1510814138.071370,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814138.077290,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9764, 7174 bytes','zm_rtp_source.cpp',345),(1510814138.083065,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9764, 0 bytes','zm_rtp_source.cpp',336),(1510814138.259972,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814138.263490,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9767, 12910 bytes','zm_rtp_source.cpp',345),(1510814138.266379,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9767, 0 bytes','zm_rtp_source.cpp',336),(1510814138.420601,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814138.423474,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9770, 1438 bytes','zm_rtp_source.cpp',345),(1510814138.426028,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9770, 0 bytes','zm_rtp_source.cpp',336),(1510814138.540919,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814138.543865,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9772, 7174 bytes','zm_rtp_source.cpp',345),(1510814138.546673,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9772, 0 bytes','zm_rtp_source.cpp',336),(1510814138.580273,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814138.585730,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9772, 1438 bytes','zm_rtp_source.cpp',345),(1510814138.591433,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9772, 0 bytes','zm_rtp_source.cpp',336),(1510814138.781275,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814138.786414,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9776, 10042 bytes','zm_rtp_source.cpp',345),(1510814138.791492,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9776, 0 bytes','zm_rtp_source.cpp',336),(1510814139.232312,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814139.237839,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9786, 4306 bytes','zm_rtp_source.cpp',345),(1510814139.241938,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9786, 0 bytes','zm_rtp_source.cpp',336),(1510814139.420477,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814139.423241,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9790, 8608 bytes','zm_rtp_source.cpp',345),(1510814139.425676,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9790, 0 bytes','zm_rtp_source.cpp',336),(1510814145.180731,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814145.183568,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9939, 10042 bytes','zm_rtp_source.cpp',345),(1510814145.186068,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9939, 0 bytes','zm_rtp_source.cpp',336),(1510814145.500790,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814145.503560,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9946, 7174 bytes','zm_rtp_source.cpp',345),(1510814145.506036,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9946, 0 bytes','zm_rtp_source.cpp',336),(1510814145.576991,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814145.580160,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9949, 1438 bytes','zm_rtp_source.cpp',345),(1510814145.582847,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9949, 0 bytes','zm_rtp_source.cpp',336),(1510814145.620302,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814145.625307,'zmc_m1',0,12541,-1,'WAR','Discarding frame 9949','zm_rtp_source.cpp',349),(1510814145.630099,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9949, 0 bytes','zm_rtp_source.cpp',336),(1510814145.871917,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814145.877370,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 9954, 8608 bytes','zm_rtp_source.cpp',345),(1510814145.882362,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 9954, 0 bytes','zm_rtp_source.cpp',336),(1510814159.219758,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814159.223022,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 10299, 1438 bytes','zm_rtp_source.cpp',345),(1510814159.225556,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 10299, 0 bytes','zm_rtp_source.cpp',336),(1510814163.333042,'zmc_m1',0,12538,0,'INF','Monitor-1: 10000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510814166.870341,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814166.873599,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 10496, 12910 bytes','zm_rtp_source.cpp',345),(1510814166.875239,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 10496, 0 bytes','zm_rtp_source.cpp',336),(1510814167.100333,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814167.103593,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 10501, 4306 bytes','zm_rtp_source.cpp',345),(1510814167.106386,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 10501, 0 bytes','zm_rtp_source.cpp',336),(1510814173.580842,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814173.583591,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 10669, 78874 bytes','zm_rtp_source.cpp',345),(1510814173.586216,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 10669, 0 bytes','zm_rtp_source.cpp',336),(1510814174.099144,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814174.102026,'zmc_m1',0,12541,-1,'WAR','Discarding frame 10682','zm_rtp_source.cpp',349),(1510814174.103361,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 10682, 0 bytes','zm_rtp_source.cpp',336),(1510814179.740613,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814179.745901,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 10828, 11476 bytes','zm_rtp_source.cpp',345),(1510814179.749666,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 10828, 0 bytes','zm_rtp_source.cpp',336),(1510814179.940539,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814179.951114,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 10832, 8608 bytes','zm_rtp_source.cpp',345),(1510814179.956250,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 10832, 0 bytes','zm_rtp_source.cpp',336),(1510814180.940038,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814180.945512,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 10856, 8608 bytes','zm_rtp_source.cpp',345),(1510814180.950805,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 10856, 0 bytes','zm_rtp_source.cpp',336),(1510814186.659911,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814186.665770,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 11004, 5740 bytes','zm_rtp_source.cpp',345),(1510814186.671866,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814186.678344,'zmc_m1',0,12541,-1,'WAR','Discarding frame 11004','zm_rtp_source.cpp',349),(1510814186.684984,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 11004, 0 bytes','zm_rtp_source.cpp',336),(1510814187.020544,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814187.027622,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 11012, 11476 bytes','zm_rtp_source.cpp',345),(1510814187.034266,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 11012, 0 bytes','zm_rtp_source.cpp',336),(1510814187.819668,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814187.822652,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 11033, 5740 bytes','zm_rtp_source.cpp',345),(1510814187.825161,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 11033, 0 bytes','zm_rtp_source.cpp',336),(1510814187.940418,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814187.943664,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 11035, 11476 bytes','zm_rtp_source.cpp',345),(1510814187.946002,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 11035, 0 bytes','zm_rtp_source.cpp',336),(1510814194.299785,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814194.305051,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 11199, 8608 bytes','zm_rtp_source.cpp',345),(1510814194.310330,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 11199, 0 bytes','zm_rtp_source.cpp',336),(1510814194.899707,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814194.904914,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 11213, 7174 bytes','zm_rtp_source.cpp',345),(1510814194.909953,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 11213, 0 bytes','zm_rtp_source.cpp',336),(1510814200.899877,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814200.902877,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 11368, 8608 bytes','zm_rtp_source.cpp',345),(1510814200.905389,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 11368, 0 bytes','zm_rtp_source.cpp',336),(1510814201.259511,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814201.262485,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 11376, 4306 bytes','zm_rtp_source.cpp',345),(1510814201.265056,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 11376, 0 bytes','zm_rtp_source.cpp',336),(1510814201.325944,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814201.329197,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 11376, 12910 bytes','zm_rtp_source.cpp',345),(1510814203.999331,'zmc_m1',0,12538,0,'INF','Monitor-1: 11000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814235.570623,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814235.576278,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 12267, 119026 bytes','zm_rtp_source.cpp',345),(1510814235.581669,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 12267, 0 bytes','zm_rtp_source.cpp',336),(1510814235.750495,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814235.753489,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 12271, 10042 bytes','zm_rtp_source.cpp',345),(1510814235.754664,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 12271, 0 bytes','zm_rtp_source.cpp',336),(1510814236.109992,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814236.113294,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 12279, 4306 bytes','zm_rtp_source.cpp',345),(1510814236.116351,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 12279, 0 bytes','zm_rtp_source.cpp',336),(1510814242.259034,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814242.261787,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 12438, 4306 bytes','zm_rtp_source.cpp',345),(1510814242.263006,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 12438, 0 bytes','zm_rtp_source.cpp',336),(1510814242.389950,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814242.395196,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 12440, 7174 bytes','zm_rtp_source.cpp',345),(1510814242.400436,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 12440, 0 bytes','zm_rtp_source.cpp',336),(1510814244.198105,'zmc_m1',0,12538,0,'INF','Monitor-1: 12000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510814256.018676,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814256.024110,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 12794, 2872 bytes','zm_rtp_source.cpp',345),(1510814256.029351,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 12794, 0 bytes','zm_rtp_source.cpp',336),(1510814256.539717,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814256.545831,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 12806, 11476 bytes','zm_rtp_source.cpp',345),(1510814256.551588,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 12806, 0 bytes','zm_rtp_source.cpp',336),(1510814256.618685,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814256.624320,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 12807, 2872 bytes','zm_rtp_source.cpp',345),(1510814256.629749,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 12807, 0 bytes','zm_rtp_source.cpp',336),(1510814271.149992,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814271.152950,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 13183, 10042 bytes','zm_rtp_source.cpp',345),(1510814271.154548,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 13183, 0 bytes','zm_rtp_source.cpp',336),(1510814277.309984,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814277.312876,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 13342, 11476 bytes','zm_rtp_source.cpp',345),(1510814277.315442,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 13342, 0 bytes','zm_rtp_source.cpp',336),(1510814278.110142,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814278.113745,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 13363, 12910 bytes','zm_rtp_source.cpp',345),(1510814284.449770,'zmc_m1',0,12538,0,'INF','Monitor-1: 13000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814284.791610,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814284.794547,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 13535, 5740 bytes','zm_rtp_source.cpp',345),(1510814284.797118,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 13535, 0 bytes','zm_rtp_source.cpp',336),(1510814290.948923,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814290.954187,'zmc_m1',0,12541,-1,'WAR','Discarding frame 13694','zm_rtp_source.cpp',349),(1510814290.959349,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 13694, 0 bytes','zm_rtp_source.cpp',336),(1510814291.555674,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814291.560833,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 13710, 45892 bytes','zm_rtp_source.cpp',345),(1510814291.569295,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 13710, 0 bytes','zm_rtp_source.cpp',336),(1510814292.029541,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814292.032839,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 13721, 7174 bytes','zm_rtp_source.cpp',345),(1510814292.035297,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 13721, 0 bytes','zm_rtp_source.cpp',336),(1510814298.618676,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814298.621461,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 13891, 7174 bytes','zm_rtp_source.cpp',345),(1510814298.623355,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 13891, 0 bytes','zm_rtp_source.cpp',336),(1510814311.457910,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814311.463129,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 14223, 4306 bytes','zm_rtp_source.cpp',345),(1510814311.468775,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 14223, 0 bytes','zm_rtp_source.cpp',336),(1510814324.678240,'zmc_m1',0,12538,0,'INF','Monitor-1: 14000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814325.218290,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814325.223462,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 14580, 11476 bytes','zm_rtp_source.cpp',345),(1510814325.563456,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814325.569011,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 14589, 70270 bytes','zm_rtp_source.cpp',345),(1510814325.574666,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 14589, 0 bytes','zm_rtp_source.cpp',336),(1510814332.348213,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814332.354971,'zmc_m1',0,12541,-1,'WAR','Discarding frame 14764','zm_rtp_source.cpp',349),(1510814332.361273,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 14764, 0 bytes','zm_rtp_source.cpp',336),(1510814332.669064,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814332.672195,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 14771, 1438 bytes','zm_rtp_source.cpp',345),(1510814332.674808,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 14771, 0 bytes','zm_rtp_source.cpp',336),(1510814332.897924,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814332.900705,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 14776, 5740 bytes','zm_rtp_source.cpp',345),(1510814332.903173,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 14776, 0 bytes','zm_rtp_source.cpp',336),(1510814346.217356,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814346.222207,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 15122, 1438 bytes','zm_rtp_source.cpp',345),(1510814346.227024,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 15122, 0 bytes','zm_rtp_source.cpp',336),(1510814347.267970,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814347.273304,'zmc_m1',0,12541,-1,'WAR','Discarding frame 15147','zm_rtp_source.cpp',349),(1510814347.278401,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 15147, 0 bytes','zm_rtp_source.cpp',336),(1510814353.107737,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814353.113400,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 15297, 12910 bytes','zm_rtp_source.cpp',345),(1510814353.119614,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 15297, 0 bytes','zm_rtp_source.cpp',336),(1510814353.388304,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814353.393516,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 15303, 4306 bytes','zm_rtp_source.cpp',345),(1510814353.399325,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 15303, 0 bytes','zm_rtp_source.cpp',336),(1510814365.082160,'zmc_m1',0,12538,0,'INF','Monitor-1: 15000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510814373.737218,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814373.742523,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 15833, 7174 bytes','zm_rtp_source.cpp',345),(1510814373.745410,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 15833, 0 bytes','zm_rtp_source.cpp',336),(1510814374.347449,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814374.350622,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 15846, 12910 bytes','zm_rtp_source.cpp',345),(1510814374.352462,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 15846, 0 bytes','zm_rtp_source.cpp',336),(1510814374.616956,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814374.621246,'zmc_m1',0,12541,-1,'WAR','Discarding frame 15852','zm_rtp_source.cpp',349),(1510814374.626283,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 15852, 0 bytes','zm_rtp_source.cpp',336),(1510814381.573629,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814381.576462,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 16032, 57364 bytes','zm_rtp_source.cpp',345),(1510814381.580677,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814381.585512,'zmc_m1',0,12541,-1,'WAR','Discarding frame 16032','zm_rtp_source.cpp',349),(1510814381.590695,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 16032, 0 bytes','zm_rtp_source.cpp',336),(1510814387.576722,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814387.579631,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 16187, 83176 bytes','zm_rtp_source.cpp',345),(1510814387.582516,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 16187, 0 bytes','zm_rtp_source.cpp',336),(1510814387.897171,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814387.902538,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 16195, 8608 bytes','zm_rtp_source.cpp',345),(1510814387.907325,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 16195, 0 bytes','zm_rtp_source.cpp',336),(1510814394.896685,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814394.899430,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 16375, 7174 bytes','zm_rtp_source.cpp',345),(1510814394.904298,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 16375, 0 bytes','zm_rtp_source.cpp',336),(1510814395.627192,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814395.630223,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 16394, 12910 bytes','zm_rtp_source.cpp',345),(1510814405.448011,'zmc_m1',0,12538,0,'INF','Monitor-1: 16000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814409.572892,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814409.578111,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 16755, 54496 bytes','zm_rtp_source.cpp',345),(1510814409.583319,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 16755, 0 bytes','zm_rtp_source.cpp',336),(1510814415.565706,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814415.573139,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 16910, 96082 bytes','zm_rtp_source.cpp',345),(1510814415.579811,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 16910, 0 bytes','zm_rtp_source.cpp',336),(1510814415.668233,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814415.675187,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 16912, 12910 bytes','zm_rtp_source.cpp',345),(1510814422.866990,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814422.872226,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 17097, 4306 bytes','zm_rtp_source.cpp',345),(1510814422.877044,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 17097, 0 bytes','zm_rtp_source.cpp',336),(1510814436.187060,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814436.190089,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 17443, 5740 bytes','zm_rtp_source.cpp',345),(1510814436.191474,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 17443, 0 bytes','zm_rtp_source.cpp',336),(1510814436.787142,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814436.790192,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 17457, 8608 bytes','zm_rtp_source.cpp',345),(1510814436.791920,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 17457, 0 bytes','zm_rtp_source.cpp',336),(1510814444.216111,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814444.219120,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 17650, 7174 bytes','zm_rtp_source.cpp',345),(1510814444.221683,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 17650, 0 bytes','zm_rtp_source.cpp',336),(1510814445.716464,'zmc_m1',0,12538,0,'INF','Monitor-1: 17000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814450.818534,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814450.821430,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 17820, 2872 bytes','zm_rtp_source.cpp',345),(1510814450.822771,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 17820, 0 bytes','zm_rtp_source.cpp',336),(1510814457.577974,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814457.584577,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 17995, 57364 bytes','zm_rtp_source.cpp',345),(1510814457.610177,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 17995, 0 bytes','zm_rtp_source.cpp',336),(1510814457.897256,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814457.900104,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 18003, 12910 bytes','zm_rtp_source.cpp',345),(1510814458.215830,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814458.218749,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 18010, 8608 bytes','zm_rtp_source.cpp',345),(1510814458.221509,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 18010, 0 bytes','zm_rtp_source.cpp',336),(1510814470.786403,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814470.789194,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 18335, 7174 bytes','zm_rtp_source.cpp',345),(1510814470.790611,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 18335, 0 bytes','zm_rtp_source.cpp',336),(1510814471.565925,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814471.571686,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 18355, 18646 bytes','zm_rtp_source.cpp',345),(1510814471.579218,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 18355, 0 bytes','zm_rtp_source.cpp',336),(1510814479.134628,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814479.140098,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 18549, 12910 bytes','zm_rtp_source.cpp',345),(1510814479.145443,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 18549, 0 bytes','zm_rtp_source.cpp',336),(1510814486.033940,'zmc_m1',0,12538,0,'INF','Monitor-1: 18000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510814492.466281,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814492.469673,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 18895, 4306 bytes','zm_rtp_source.cpp',345),(1510814492.471291,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 18895, 0 bytes','zm_rtp_source.cpp',336),(1510814492.627512,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814492.630585,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 18898, 11476 bytes','zm_rtp_source.cpp',345),(1510814498.466219,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814498.469569,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 19049, 10042 bytes','zm_rtp_source.cpp',345),(1510814498.472322,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 19049, 0 bytes','zm_rtp_source.cpp',336),(1510814499.106275,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814499.109713,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 19064, 7174 bytes','zm_rtp_source.cpp',345),(1510814499.111435,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 19064, 0 bytes','zm_rtp_source.cpp',336),(1510814499.730261,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814499.736241,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 19081, 8608 bytes','zm_rtp_source.cpp',345),(1510814499.741111,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 19081, 0 bytes','zm_rtp_source.cpp',336),(1510814506.095042,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814506.099603,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 19245, 7174 bytes','zm_rtp_source.cpp',345),(1510814506.104889,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 19245, 0 bytes','zm_rtp_source.cpp',336),(1510814513.577797,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814513.583839,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 19438, 129064 bytes','zm_rtp_source.cpp',345),(1510814513.589397,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 19438, 0 bytes','zm_rtp_source.cpp',336),(1510814526.327738,'zmc_m1',0,12538,0,'INF','Monitor-1: 19000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814533.933866,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814533.936961,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 19966, 12910 bytes','zm_rtp_source.cpp',345),(1510814533.939869,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 19966, 0 bytes','zm_rtp_source.cpp',336),(1510814540.704893,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814540.707940,'zmc_m1',0,12541,-1,'WAR','Discarding frame 20140','zm_rtp_source.cpp',349),(1510814540.711235,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 20140, 0 bytes','zm_rtp_source.cpp',336),(1510814547.547084,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814547.552648,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 20318, 51628 bytes','zm_rtp_source.cpp',345),(1510814547.559291,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 20318, 0 bytes','zm_rtp_source.cpp',336),(1510814547.985547,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814547.988613,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 20328, 11476 bytes','zm_rtp_source.cpp',345),(1510814547.991373,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 20328, 0 bytes','zm_rtp_source.cpp',336),(1510814561.174289,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814561.179514,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 20669, 8608 bytes','zm_rtp_source.cpp',345),(1510814561.185266,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 20669, 0 bytes','zm_rtp_source.cpp',336),(1510814561.548769,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814561.554410,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 20679, 14344 bytes','zm_rtp_source.cpp',345),(1510814561.563793,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 20679, 0 bytes','zm_rtp_source.cpp',336),(1510814561.854216,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814561.858742,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 20686, 5740 bytes','zm_rtp_source.cpp',345),(1510814561.862079,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 20686, 0 bytes','zm_rtp_source.cpp',336),(1510814562.173724,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814562.176507,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 20693, 1438 bytes','zm_rtp_source.cpp',345),(1510814562.179173,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 20693, 0 bytes','zm_rtp_source.cpp',336),(1510814566.685761,'zmc_m1',0,12538,0,'INF','Monitor-1: 20000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814568.013994,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814568.017019,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 20844, 5740 bytes','zm_rtp_source.cpp',345),(1510814568.019759,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 20844, 0 bytes','zm_rtp_source.cpp',336),(1510814568.933610,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814568.938936,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 20865, 8608 bytes','zm_rtp_source.cpp',345),(1510814568.944005,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 20865, 0 bytes','zm_rtp_source.cpp',336),(1510814576.094027,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814576.099198,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 21052, 7174 bytes','zm_rtp_source.cpp',345),(1510814576.102719,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 21052, 0 bytes','zm_rtp_source.cpp',336),(1510814582.161221,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814582.166886,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 21208, 11476 bytes','zm_rtp_source.cpp',345),(1510814603.562780,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814603.568736,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 21764, 108988 bytes','zm_rtp_source.cpp',345),(1510814603.573850,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814603.578539,'zmc_m1',0,12541,-1,'WAR','Discarding frame 21764','zm_rtp_source.cpp',349),(1510814603.581640,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 21764, 0 bytes','zm_rtp_source.cpp',336),(1510814603.864257,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814603.867652,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 21771, 4306 bytes','zm_rtp_source.cpp',345),(1510814603.870722,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 21771, 0 bytes','zm_rtp_source.cpp',336),(1510814603.945443,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814603.948374,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 21772, 10042 bytes','zm_rtp_source.cpp',345),(1510814603.950847,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 21772, 0 bytes','zm_rtp_source.cpp',336),(1510814606.955686,'zmc_m1',0,12538,0,'INF','Monitor-1: 21000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814609.504175,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814609.509265,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 21914, 4306 bytes','zm_rtp_source.cpp',345),(1510814609.512046,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 21914, 0 bytes','zm_rtp_source.cpp',336),(1510814616.583860,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814616.586785,'zmc_m1',0,12541,-1,'WAR','Discarding frame 22098','zm_rtp_source.cpp',349),(1510814616.589263,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 22098, 0 bytes','zm_rtp_source.cpp',336),(1510814616.667019,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814616.670056,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 22099, 17212 bytes','zm_rtp_source.cpp',345),(1510814617.146342,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814617.149496,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 22110, 10042 bytes','zm_rtp_source.cpp',345),(1510814617.151014,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 22110, 0 bytes','zm_rtp_source.cpp',336),(1510814617.545995,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814617.548682,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 22121, 74572 bytes','zm_rtp_source.cpp',345),(1510814617.552678,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 22121, 0 bytes','zm_rtp_source.cpp',336),(1510814623.386033,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814623.388887,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 22270, 11476 bytes','zm_rtp_source.cpp',345),(1510814624.586095,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814624.591828,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 22301, 1438 bytes','zm_rtp_source.cpp',345),(1510814624.597470,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 22301, 0 bytes','zm_rtp_source.cpp',336),(1510814630.492383,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814630.495314,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 22454, 1438 bytes','zm_rtp_source.cpp',345),(1510814630.500320,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 22454, 0 bytes','zm_rtp_source.cpp',336),(1510814631.024136,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814631.029700,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 22465, 12910 bytes','zm_rtp_source.cpp',345),(1510814631.032879,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 22465, 0 bytes','zm_rtp_source.cpp',336),(1510814637.252503,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814637.256510,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 22626, 4306 bytes','zm_rtp_source.cpp',345),(1510814637.259435,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 22626, 0 bytes','zm_rtp_source.cpp',336),(1510814637.772428,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814637.775743,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 22640, 2872 bytes','zm_rtp_source.cpp',345),(1510814637.778713,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 22640, 0 bytes','zm_rtp_source.cpp',336),(1510814647.432863,'zmc_m1',0,12538,0,'INF','Monitor-1: 22000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510814671.892503,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814671.895352,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 23526, 7174 bytes','zm_rtp_source.cpp',345),(1510814671.900719,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 23526, 0 bytes','zm_rtp_source.cpp',336),(1510814672.052639,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814672.058068,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 23529, 7174 bytes','zm_rtp_source.cpp',345),(1510814672.063786,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 23529, 0 bytes','zm_rtp_source.cpp',336),(1510814673.212094,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814673.214947,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 23557, 2872 bytes','zm_rtp_source.cpp',345),(1510814673.217568,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 23557, 0 bytes','zm_rtp_source.cpp',336),(1510814679.254720,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814679.257758,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 23713, 11476 bytes','zm_rtp_source.cpp',345),(1510814687.678803,'zmc_m1',0,12538,0,'INF','Monitor-1: 23000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814692.943076,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814692.948647,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24068, 5740 bytes','zm_rtp_source.cpp',345),(1510814692.954273,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24068, 0 bytes','zm_rtp_source.cpp',336),(1510814693.742866,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814693.749406,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24089, 2872 bytes','zm_rtp_source.cpp',345),(1510814693.753255,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24089, 0 bytes','zm_rtp_source.cpp',336),(1510814699.548480,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814699.553989,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24239, 31552 bytes','zm_rtp_source.cpp',345),(1510814699.562858,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24239, 0 bytes','zm_rtp_source.cpp',336),(1510814700.693288,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814700.696416,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24267, 4306 bytes','zm_rtp_source.cpp',345),(1510814700.699471,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24267, 0 bytes','zm_rtp_source.cpp',336),(1510814700.784658,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814700.787920,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24268, 12910 bytes','zm_rtp_source.cpp',345),(1510814706.772536,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814706.775390,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24423, 11476 bytes','zm_rtp_source.cpp',345),(1510814707.012108,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814707.015406,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24428, 8608 bytes','zm_rtp_source.cpp',345),(1510814707.017987,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24428, 0 bytes','zm_rtp_source.cpp',336),(1510814707.212521,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814707.215316,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24432, 12910 bytes','zm_rtp_source.cpp',345),(1510814707.291722,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814707.297038,'zmc_m1',0,12541,-1,'WAR','Discarding frame 24433','zm_rtp_source.cpp',349),(1510814707.302292,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24433, 0 bytes','zm_rtp_source.cpp',336),(1510814707.491367,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814707.496948,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24436, 12910 bytes','zm_rtp_source.cpp',345),(1510814707.502699,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24436, 0 bytes','zm_rtp_source.cpp',336),(1510814707.549592,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814707.555178,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24438, 44458 bytes','zm_rtp_source.cpp',345),(1510814707.566049,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24438, 0 bytes','zm_rtp_source.cpp',336),(1510814713.621658,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814713.624696,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24595, 4306 bytes','zm_rtp_source.cpp',345),(1510814713.627420,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814713.629936,'zmc_m1',0,12541,-1,'WAR','Discarding frame 24595','zm_rtp_source.cpp',349),(1510814713.631384,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24595, 0 bytes','zm_rtp_source.cpp',336),(1510814714.051668,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814714.054527,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24605, 2872 bytes','zm_rtp_source.cpp',345),(1510814714.059924,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24605, 0 bytes','zm_rtp_source.cpp',336),(1510814720.652238,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814720.655118,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24775, 2872 bytes','zm_rtp_source.cpp',345),(1510814720.657787,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24775, 0 bytes','zm_rtp_source.cpp',336),(1510814727.581327,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814727.584352,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24954, 88912 bytes','zm_rtp_source.cpp',345),(1510814727.587318,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 24954, 0 bytes','zm_rtp_source.cpp',336),(1510814728.230283,'zmc_m1',0,12538,0,'INF','Monitor-1: 24000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510814728.381501,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814728.385734,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 24974, 12910 bytes','zm_rtp_source.cpp',345),(1510814741.726930,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814741.732402,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 25321, 4306 bytes','zm_rtp_source.cpp',345),(1510814741.737726,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 25321, 0 bytes','zm_rtp_source.cpp',336),(1510814754.725803,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814754.731603,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 25657, 10042 bytes','zm_rtp_source.cpp',345),(1510814754.735605,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 25657, 0 bytes','zm_rtp_source.cpp',336),(1510814755.051056,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814755.053988,'zmc_m1',0,12541,-1,'WAR','Discarding frame 25664','zm_rtp_source.cpp',349),(1510814755.055369,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 25664, 0 bytes','zm_rtp_source.cpp',336),(1510814755.411903,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814755.414819,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 25672, 12910 bytes','zm_rtp_source.cpp',345),(1510814755.546879,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814755.549743,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 25676, 28684 bytes','zm_rtp_source.cpp',345),(1510814755.561839,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 25676, 0 bytes','zm_rtp_source.cpp',336),(1510814755.930792,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814755.936496,'zmc_m1',0,12541,-1,'WAR','Discarding frame 25685','zm_rtp_source.cpp',349),(1510814755.941845,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 25685, 0 bytes','zm_rtp_source.cpp',336),(1510814761.570852,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814761.576302,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 25831, 1438 bytes','zm_rtp_source.cpp',345),(1510814761.581537,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 25831, 0 bytes','zm_rtp_source.cpp',336),(1510814768.551743,'zmc_m1',0,12538,0,'INF','Monitor-1: 25000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814768.970747,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814768.975915,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 26021, 5740 bytes','zm_rtp_source.cpp',345),(1510814768.980714,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 26021, 0 bytes','zm_rtp_source.cpp',336),(1510814775.813705,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814775.816772,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 26199, 7174 bytes','zm_rtp_source.cpp',345),(1510814775.821799,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 26199, 0 bytes','zm_rtp_source.cpp',336),(1510814796.971093,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814796.973932,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 26747, 10042 bytes','zm_rtp_source.cpp',345),(1510814796.975269,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 26747, 0 bytes','zm_rtp_source.cpp',336),(1510814808.671025,'zmc_m1',0,12538,0,'INF','Monitor-1: 26000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814810.010805,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814810.016526,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27086, 8608 bytes','zm_rtp_source.cpp',345),(1510814810.021883,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27086, 0 bytes','zm_rtp_source.cpp',336),(1510814810.369762,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814810.375190,'zmc_m1',0,12541,-1,'WAR','Discarding frame 27094','zm_rtp_source.cpp',349),(1510814810.380463,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27094, 0 bytes','zm_rtp_source.cpp',336),(1510814811.250159,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814811.254986,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27115, 4306 bytes','zm_rtp_source.cpp',345),(1510814811.258022,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27115, 0 bytes','zm_rtp_source.cpp',336),(1510814811.290844,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814811.294067,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27115, 10042 bytes','zm_rtp_source.cpp',345),(1510814811.297226,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27115, 0 bytes','zm_rtp_source.cpp',336),(1510814817.544286,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814817.550438,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27278, 63100 bytes','zm_rtp_source.cpp',345),(1510814817.557158,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27278, 0 bytes','zm_rtp_source.cpp',336),(1510814817.730266,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814817.737046,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27282, 5740 bytes','zm_rtp_source.cpp',345),(1510814817.744034,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27282, 0 bytes','zm_rtp_source.cpp',336),(1510814824.249755,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814824.252714,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27450, 1438 bytes','zm_rtp_source.cpp',345),(1510814824.257598,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27450, 0 bytes','zm_rtp_source.cpp',336),(1510814824.289989,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814824.295362,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27450, 2872 bytes','zm_rtp_source.cpp',345),(1510814824.300583,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27450, 0 bytes','zm_rtp_source.cpp',336),(1510814825.009970,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814825.012746,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27467, 5740 bytes','zm_rtp_source.cpp',345),(1510814825.015115,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27467, 0 bytes','zm_rtp_source.cpp',336),(1510814830.970362,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814830.976012,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27621, 8608 bytes','zm_rtp_source.cpp',345),(1510814830.981425,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27621, 0 bytes','zm_rtp_source.cpp',336),(1510814831.555734,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814831.560752,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27636, 91780 bytes','zm_rtp_source.cpp',345),(1510814831.565916,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27636, 0 bytes','zm_rtp_source.cpp',336),(1510814831.850746,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814831.853597,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27643, 12910 bytes','zm_rtp_source.cpp',345),(1510814845.564740,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814845.570443,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27998, 117592 bytes','zm_rtp_source.cpp',345),(1510814845.577944,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 27998, 0 bytes','zm_rtp_source.cpp',336),(1510814845.583430,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814845.588828,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 27998, 12910 bytes','zm_rtp_source.cpp',345),(1510814849.242146,'zmc_m1',0,12538,0,'INF','Monitor-1: 27000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510814851.543992,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814851.549454,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 28152, 84610 bytes','zm_rtp_source.cpp',345),(1510814851.555424,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 28152, 0 bytes','zm_rtp_source.cpp',336),(1510814859.369859,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814859.372555,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 28353, 10042 bytes','zm_rtp_source.cpp',345),(1510814859.375164,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 28353, 0 bytes','zm_rtp_source.cpp',336),(1510814859.545864,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814859.548589,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 28358, 83176 bytes','zm_rtp_source.cpp',345),(1510814859.551167,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814859.554173,'zmc_m1',0,12541,-1,'WAR','Discarding frame 28358','zm_rtp_source.cpp',349),(1510814859.559426,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 28358, 0 bytes','zm_rtp_source.cpp',336),(1510814859.689396,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814859.694977,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 28361, 1438 bytes','zm_rtp_source.cpp',345),(1510814859.700497,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 28361, 0 bytes','zm_rtp_source.cpp',336),(1510814865.609535,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814865.612649,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 28514, 7174 bytes','zm_rtp_source.cpp',345),(1510814865.615759,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 28514, 0 bytes','zm_rtp_source.cpp',336),(1510814865.649348,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814865.652002,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 28514, 1438 bytes','zm_rtp_source.cpp',345),(1510814865.654824,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 28514, 0 bytes','zm_rtp_source.cpp',336),(1510814866.049644,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814866.055832,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 28523, 2872 bytes','zm_rtp_source.cpp',345),(1510814866.061171,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 28523, 0 bytes','zm_rtp_source.cpp',336),(1510814866.249624,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814866.252522,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 28527, 8608 bytes','zm_rtp_source.cpp',345),(1510814866.255213,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 28527, 0 bytes','zm_rtp_source.cpp',336),(1510814866.770052,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814866.772961,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 28539, 11476 bytes','zm_rtp_source.cpp',345),(1510814866.775564,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 28539, 0 bytes','zm_rtp_source.cpp',336),(1510814889.629530,'zmc_m1',0,12538,0,'INF','Monitor-1: 28000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814893.545195,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814893.550313,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 29235, 103252 bytes','zm_rtp_source.cpp',345),(1510814893.555346,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 29235, 0 bytes','zm_rtp_source.cpp',336),(1510814900.209364,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814900.214966,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 29407, 10042 bytes','zm_rtp_source.cpp',345),(1510814900.220460,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 29407, 0 bytes','zm_rtp_source.cpp',336),(1510814900.529252,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814900.534700,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 29414, 8608 bytes','zm_rtp_source.cpp',345),(1510814900.540677,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 29414, 0 bytes','zm_rtp_source.cpp',336),(1510814901.168400,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814901.171646,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 29428, 14344 bytes','zm_rtp_source.cpp',345),(1510814901.174666,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 29428, 0 bytes','zm_rtp_source.cpp',336),(1510814901.289763,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814901.292593,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 29430, 11476 bytes','zm_rtp_source.cpp',345),(1510814901.295233,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 29430, 0 bytes','zm_rtp_source.cpp',336),(1510814901.369169,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814901.373318,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 29431, 8608 bytes','zm_rtp_source.cpp',345),(1510814901.378172,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 29431, 0 bytes','zm_rtp_source.cpp',336),(1510814907.048760,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814907.053892,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 29578, 4306 bytes','zm_rtp_source.cpp',345),(1510814907.056836,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 29578, 0 bytes','zm_rtp_source.cpp',336),(1510814908.008509,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814908.011353,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 29603, 2872 bytes','zm_rtp_source.cpp',345),(1510814908.013928,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 29603, 0 bytes','zm_rtp_source.cpp',336),(1510814914.449123,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814914.454440,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 29769, 7174 bytes','zm_rtp_source.cpp',345),(1510814914.459425,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 29769, 0 bytes','zm_rtp_source.cpp',336),(1510814914.489455,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814914.494829,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 29769, 10042 bytes','zm_rtp_source.cpp',345),(1510814914.500243,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 29769, 0 bytes','zm_rtp_source.cpp',336),(1510814927.848356,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814927.852347,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 30116, 4306 bytes','zm_rtp_source.cpp',345),(1510814927.855104,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 30116, 0 bytes','zm_rtp_source.cpp',336),(1510814927.968664,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814927.971556,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 30118, 7174 bytes','zm_rtp_source.cpp',345),(1510814927.974077,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 30118, 0 bytes','zm_rtp_source.cpp',336),(1510814928.209327,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814928.213360,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 30123, 11476 bytes','zm_rtp_source.cpp',345),(1510814930.153704,'zmc_m1',0,12538,0,'INF','Monitor-1: 29000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510814949.007994,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814949.013678,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 30662, 1438 bytes','zm_rtp_source.cpp',345),(1510814949.018704,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 30662, 0 bytes','zm_rtp_source.cpp',336),(1510814956.248475,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127); -INSERT INTO `Logs` VALUES (1510814956.252305,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 30850, 8608 bytes','zm_rtp_source.cpp',345),(1510814956.254090,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 30850, 0 bytes','zm_rtp_source.cpp',336),(1510814956.529977,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814956.532777,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 30856, 2872 bytes','zm_rtp_source.cpp',345),(1510814956.535345,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 30856, 0 bytes','zm_rtp_source.cpp',336),(1510814963.447540,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814963.450846,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 31033, 12910 bytes','zm_rtp_source.cpp',345),(1510814963.453886,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 31033, 0 bytes','zm_rtp_source.cpp',336),(1510814970.348782,'zmc_m1',0,12538,0,'INF','Monitor-1: 30000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510814977.721057,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814977.726437,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 31405, 2872 bytes','zm_rtp_source.cpp',345),(1510814977.731327,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 31405, 0 bytes','zm_rtp_source.cpp',336),(1510814983.555050,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814983.560715,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 31555, 101818 bytes','zm_rtp_source.cpp',345),(1510814983.565989,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 31555, 0 bytes','zm_rtp_source.cpp',336),(1510814984.687455,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814984.690889,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 31583, 2872 bytes','zm_rtp_source.cpp',345),(1510814984.693523,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 31583, 0 bytes','zm_rtp_source.cpp',336),(1510814997.180031,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510814997.183047,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 31906, 8608 bytes','zm_rtp_source.cpp',345),(1510814997.188161,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 31906, 0 bytes','zm_rtp_source.cpp',336),(1510815005.540746,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815005.545961,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 32124, 4306 bytes','zm_rtp_source.cpp',345),(1510815005.579881,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32124, 0 bytes','zm_rtp_source.cpp',336),(1510815010.547981,'zmc_m1',0,12538,0,'INF','Monitor-1: 31000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815011.248426,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815011.251388,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 32270, 8608 bytes','zm_rtp_source.cpp',345),(1510815011.253986,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32270, 0 bytes','zm_rtp_source.cpp',336),(1510815011.647145,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815011.651281,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 32281, 2872 bytes','zm_rtp_source.cpp',345),(1510815011.656178,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32281, 0 bytes','zm_rtp_source.cpp',336),(1510815011.927706,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815011.933325,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 32287, 5740 bytes','zm_rtp_source.cpp',345),(1510815011.938105,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32287, 0 bytes','zm_rtp_source.cpp',336),(1510815012.327846,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815012.333181,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 32296, 10042 bytes','zm_rtp_source.cpp',345),(1510815012.337764,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32296, 0 bytes','zm_rtp_source.cpp',336),(1510815018.286824,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815018.292989,'zmc_m1',0,12541,-1,'WAR','Discarding frame 32450','zm_rtp_source.cpp',349),(1510815018.299838,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32450, 0 bytes','zm_rtp_source.cpp',336),(1510815018.847192,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815018.854358,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 32463, 2872 bytes','zm_rtp_source.cpp',345),(1510815018.861149,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32463, 0 bytes','zm_rtp_source.cpp',336),(1510815018.927449,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815018.930337,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 32464, 5740 bytes','zm_rtp_source.cpp',345),(1510815018.932768,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32464, 0 bytes','zm_rtp_source.cpp',336),(1510815025.207588,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815025.212838,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 32626, 5740 bytes','zm_rtp_source.cpp',345),(1510815025.217892,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32626, 0 bytes','zm_rtp_source.cpp',336),(1510815026.014380,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815026.019575,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 32647, 2872 bytes','zm_rtp_source.cpp',345),(1510815026.024714,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32647, 0 bytes','zm_rtp_source.cpp',336),(1510815026.127638,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815026.132203,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 32649, 11476 bytes','zm_rtp_source.cpp',345),(1510815026.134779,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 32649, 0 bytes','zm_rtp_source.cpp',336),(1510815050.947937,'zmc_m1',0,12538,0,'INF','Monitor-1: 32000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815052.926853,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815052.929729,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 33344, 2872 bytes','zm_rtp_source.cpp',345),(1510815052.931154,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 33344, 0 bytes','zm_rtp_source.cpp',336),(1510815059.926417,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815059.932227,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 33526, 2872 bytes','zm_rtp_source.cpp',345),(1510815059.938499,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 33526, 0 bytes','zm_rtp_source.cpp',336),(1510815060.767208,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815060.770114,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 33546, 12910 bytes','zm_rtp_source.cpp',345),(1510815060.926535,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815060.929585,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 33549, 2872 bytes','zm_rtp_source.cpp',345),(1510815060.930854,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 33549, 0 bytes','zm_rtp_source.cpp',336),(1510815066.526320,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815066.530405,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 33694, 2872 bytes','zm_rtp_source.cpp',345),(1510815066.535482,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 33694, 0 bytes','zm_rtp_source.cpp',336),(1510815067.046245,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815067.051779,'zmc_m1',0,12541,-1,'WAR','Discarding frame 33706','zm_rtp_source.cpp',349),(1510815067.056644,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 33706, 0 bytes','zm_rtp_source.cpp',336),(1510815067.166305,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815067.170306,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 33708, 2872 bytes','zm_rtp_source.cpp',345),(1510815067.172794,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 33708, 0 bytes','zm_rtp_source.cpp',336),(1510815067.446955,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815067.449760,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 33714, 10042 bytes','zm_rtp_source.cpp',345),(1510815067.451078,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 33714, 0 bytes','zm_rtp_source.cpp',336),(1510815087.535513,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815087.538660,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 34237, 22948 bytes','zm_rtp_source.cpp',345),(1510815087.552510,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 34237, 0 bytes','zm_rtp_source.cpp',336),(1510815091.307563,'zmc_m1',0,12538,0,'INF','Monitor-1: 33000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510815095.377196,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815095.380091,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 34438, 4306 bytes','zm_rtp_source.cpp',345),(1510815095.383048,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815095.388505,'zmc_m1',0,12541,-1,'WAR','Discarding frame 34438','zm_rtp_source.cpp',349),(1510815095.394183,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 34438, 0 bytes','zm_rtp_source.cpp',336),(1510815095.543703,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815095.550213,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 34443, 44458 bytes','zm_rtp_source.cpp',345),(1510815095.557997,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 34443, 0 bytes','zm_rtp_source.cpp',336),(1510815101.645845,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815101.652141,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 34601, 2872 bytes','zm_rtp_source.cpp',345),(1510815101.659223,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 34601, 0 bytes','zm_rtp_source.cpp',336),(1510815101.926566,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815101.933140,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 34607, 4306 bytes','zm_rtp_source.cpp',345),(1510815101.938311,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 34607, 0 bytes','zm_rtp_source.cpp',336),(1510815108.126043,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815108.131112,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 34767, 8608 bytes','zm_rtp_source.cpp',345),(1510815108.136198,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 34767, 0 bytes','zm_rtp_source.cpp',336),(1510815108.565180,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815108.568113,'zmc_m1',0,12541,-1,'WAR','Discarding frame 34777','zm_rtp_source.cpp',349),(1510815108.570838,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 34777, 0 bytes','zm_rtp_source.cpp',336),(1510815109.165511,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815109.168332,'zmc_m1',0,12541,-1,'WAR','Discarding frame 34791','zm_rtp_source.cpp',349),(1510815109.170805,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 34791, 0 bytes','zm_rtp_source.cpp',336),(1510815121.816164,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815121.819285,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 35120, 4306 bytes','zm_rtp_source.cpp',345),(1510815121.822143,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 35120, 0 bytes','zm_rtp_source.cpp',336),(1510815131.655086,'zmc_m1',0,12538,0,'INF','Monitor-1: 34000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815137.095394,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815137.099570,'zmc_m1',0,12541,-1,'WAR','Discarding frame 35515','zm_rtp_source.cpp',349),(1510815137.104803,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 35515, 0 bytes','zm_rtp_source.cpp',336),(1510815149.563283,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815149.568727,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 35839, 68836 bytes','zm_rtp_source.cpp',345),(1510815149.574368,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 35839, 0 bytes','zm_rtp_source.cpp',336),(1510815149.884778,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815149.887832,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 35847, 1438 bytes','zm_rtp_source.cpp',345),(1510815149.890761,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 35847, 0 bytes','zm_rtp_source.cpp',336),(1510815156.845194,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815156.847806,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 36026, 4306 bytes','zm_rtp_source.cpp',345),(1510815156.852659,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 36026, 0 bytes','zm_rtp_source.cpp',336),(1510815157.541372,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815157.544258,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 36044, 30118 bytes','zm_rtp_source.cpp',345),(1510815157.546774,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815157.549299,'zmc_m1',0,12541,-1,'WAR','Discarding frame 36044','zm_rtp_source.cpp',349),(1510815157.556301,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 36044, 0 bytes','zm_rtp_source.cpp',336),(1510815164.245271,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815164.248237,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 36217, 7174 bytes','zm_rtp_source.cpp',345),(1510815164.251005,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815164.253764,'zmc_m1',0,12541,-1,'WAR','Discarding frame 36217','zm_rtp_source.cpp',349),(1510815164.255248,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 36217, 0 bytes','zm_rtp_source.cpp',336),(1510815171.864938,'zmc_m1',0,12538,0,'INF','Monitor-1: 35000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815184.404964,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815184.408646,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 36740, 7174 bytes','zm_rtp_source.cpp',345),(1510815184.411162,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 36740, 0 bytes','zm_rtp_source.cpp',336),(1510815185.096857,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815185.100078,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 36756, 2872 bytes','zm_rtp_source.cpp',345),(1510815185.103060,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 36756, 0 bytes','zm_rtp_source.cpp',336),(1510815191.696751,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815191.699875,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 36928, 5740 bytes','zm_rtp_source.cpp',345),(1510815191.702545,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 36928, 0 bytes','zm_rtp_source.cpp',336),(1510815199.257125,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815199.262595,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 37122, 12910 bytes','zm_rtp_source.cpp',345),(1510815206.096095,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815206.099179,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 37300, 2872 bytes','zm_rtp_source.cpp',345),(1510815206.102007,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 37300, 0 bytes','zm_rtp_source.cpp',336),(1510815212.076010,'zmc_m1',0,12538,0,'INF','Monitor-1: 36000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510815212.697120,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815212.699965,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 37470, 12910 bytes','zm_rtp_source.cpp',345),(1510815219.539033,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815219.541896,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 37648, 68836 bytes','zm_rtp_source.cpp',345),(1510815219.551168,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 37648, 0 bytes','zm_rtp_source.cpp',336),(1510815226.083961,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815226.087284,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 37817, 4306 bytes','zm_rtp_source.cpp',345),(1510815226.090806,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 37817, 0 bytes','zm_rtp_source.cpp',336),(1510815226.523809,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815226.528878,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 37827, 1438 bytes','zm_rtp_source.cpp',345),(1510815226.534511,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 37827, 0 bytes','zm_rtp_source.cpp',336),(1510815239.883628,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815239.887081,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 38174, 1438 bytes','zm_rtp_source.cpp',345),(1510815239.889825,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 38174, 0 bytes','zm_rtp_source.cpp',336),(1510815239.924144,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815239.927449,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 38174, 8608 bytes','zm_rtp_source.cpp',345),(1510815239.930665,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 38174, 0 bytes','zm_rtp_source.cpp',336),(1510815252.309600,'zmc_m1',0,12538,0,'INF','Monitor-1: 37000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815254.534764,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815254.537609,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 38552, 8608 bytes','zm_rtp_source.cpp',345),(1510815254.539174,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 38552, 0 bytes','zm_rtp_source.cpp',336),(1510815268.561224,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815268.567922,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 38916, 8608 bytes','zm_rtp_source.cpp',345),(1510815268.574292,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 38916, 0 bytes','zm_rtp_source.cpp',336),(1510815274.693934,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815274.697216,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 39074, 1438 bytes','zm_rtp_source.cpp',345),(1510815274.700654,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 39074, 0 bytes','zm_rtp_source.cpp',336),(1510815275.053846,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815275.057068,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 39082, 2872 bytes','zm_rtp_source.cpp',345),(1510815275.060127,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 39082, 0 bytes','zm_rtp_source.cpp',336),(1510815275.095256,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815275.100934,'zmc_m1',0,12541,-1,'WAR','Discarding frame 39082','zm_rtp_source.cpp',349),(1510815275.106277,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 39082, 0 bytes','zm_rtp_source.cpp',336),(1510815275.415008,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815275.420810,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 39089, 8608 bytes','zm_rtp_source.cpp',345),(1510815275.426286,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 39089, 0 bytes','zm_rtp_source.cpp',336),(1510815288.214029,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815288.216900,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 39422, 2872 bytes','zm_rtp_source.cpp',345),(1510815288.218245,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 39422, 0 bytes','zm_rtp_source.cpp',336),(1510815288.373246,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815288.379247,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 39424, 14344 bytes','zm_rtp_source.cpp',345),(1510815288.384722,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 39424, 0 bytes','zm_rtp_source.cpp',336),(1510815288.813775,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815288.819471,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 39434, 7174 bytes','zm_rtp_source.cpp',345),(1510815288.824731,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 39434, 0 bytes','zm_rtp_source.cpp',336),(1510815289.174211,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815289.179508,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 39442, 8608 bytes','zm_rtp_source.cpp',345),(1510815289.183556,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 39442, 0 bytes','zm_rtp_source.cpp',336),(1510815292.744988,'zmc_m1',0,12538,0,'INF','Monitor-1: 38000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815295.485181,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815295.490629,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 39605, 8608 bytes','zm_rtp_source.cpp',345),(1510815295.495995,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 39605, 0 bytes','zm_rtp_source.cpp',336),(1510815302.643841,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815302.649482,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 39791, 12910 bytes','zm_rtp_source.cpp',345),(1510815302.683334,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815302.686516,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 39791, 7174 bytes','zm_rtp_source.cpp',345),(1510815302.689553,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815302.691061,'zmc_m1',0,12541,-1,'WAR','Discarding frame 39791','zm_rtp_source.cpp',349),(1510815302.694236,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 39791, 0 bytes','zm_rtp_source.cpp',336),(1510815316.522898,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815316.526127,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40150, 5740 bytes','zm_rtp_source.cpp',345),(1510815316.527668,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 40150, 0 bytes','zm_rtp_source.cpp',336),(1510815322.614946,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815322.617986,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40307, 7174 bytes','zm_rtp_source.cpp',345),(1510815322.620751,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 40307, 0 bytes','zm_rtp_source.cpp',336),(1510815323.537879,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815323.543384,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40331, 22948 bytes','zm_rtp_source.cpp',345),(1510815323.552953,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 40331, 0 bytes','zm_rtp_source.cpp',336),(1510815329.533767,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815329.537423,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40486, 15778 bytes','zm_rtp_source.cpp',345),(1510815329.578498,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 40486, 0 bytes','zm_rtp_source.cpp',336),(1510815329.894005,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815329.896919,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40494, 12910 bytes','zm_rtp_source.cpp',345),(1510815330.294385,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815330.297809,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40502, 14344 bytes','zm_rtp_source.cpp',345),(1510815330.300704,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 40502, 0 bytes','zm_rtp_source.cpp',336),(1510815330.693475,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815330.699300,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40511, 7174 bytes','zm_rtp_source.cpp',345),(1510815330.704683,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 40511, 0 bytes','zm_rtp_source.cpp',336),(1510815333.197988,'zmc_m1',0,12538,0,'INF','Monitor-1: 39000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510815336.973583,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815336.978973,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40673, 7174 bytes','zm_rtp_source.cpp',345),(1510815336.983975,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 40673, 0 bytes','zm_rtp_source.cpp',336),(1510815337.537907,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815337.540923,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40688, 21514 bytes','zm_rtp_source.cpp',345),(1510815337.553850,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 40688, 0 bytes','zm_rtp_source.cpp',336),(1510815337.573876,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815337.578768,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40688, 12910 bytes','zm_rtp_source.cpp',345),(1510815344.613263,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815344.616222,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40869, 8608 bytes','zm_rtp_source.cpp',345),(1510815344.618744,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 40869, 0 bytes','zm_rtp_source.cpp',336),(1510815344.694813,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815344.698003,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 40870, 10042 bytes','zm_rtp_source.cpp',345),(1510815344.699687,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 40870, 0 bytes','zm_rtp_source.cpp',336),(1510815350.893181,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815350.897102,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 41030, 5740 bytes','zm_rtp_source.cpp',345),(1510815350.899642,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 41030, 0 bytes','zm_rtp_source.cpp',336),(1510815351.536130,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815351.538943,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 41047, 60232 bytes','zm_rtp_source.cpp',345),(1510815351.546698,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 41047, 0 bytes','zm_rtp_source.cpp',336),(1510815357.540205,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815357.545923,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 41202, 108988 bytes','zm_rtp_source.cpp',345),(1510815357.551763,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 41202, 0 bytes','zm_rtp_source.cpp',336),(1510815357.602627,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815357.607999,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 41203, 10042 bytes','zm_rtp_source.cpp',345),(1510815357.611165,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 41203, 0 bytes','zm_rtp_source.cpp',336),(1510815358.172614,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815358.175526,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 41216, 1438 bytes','zm_rtp_source.cpp',345),(1510815358.178071,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 41216, 0 bytes','zm_rtp_source.cpp',336),(1510815358.614269,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815358.617486,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 41226, 5740 bytes','zm_rtp_source.cpp',345),(1510815358.619163,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 41226, 0 bytes','zm_rtp_source.cpp',336),(1510815373.649396,'zmc_m1',0,12538,0,'INF','Monitor-1: 40000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815405.812320,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815405.818315,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 42453, 5740 bytes','zm_rtp_source.cpp',345),(1510815405.824649,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 42453, 0 bytes','zm_rtp_source.cpp',336),(1510815413.333078,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815413.336036,'zmc_m1',0,12541,-1,'WAR','Discarding frame 42646','zm_rtp_source.cpp',349),(1510815413.338555,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 42646, 0 bytes','zm_rtp_source.cpp',336),(1510815413.454081,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815413.456914,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 42648, 11476 bytes','zm_rtp_source.cpp',345),(1510815413.459520,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 42648, 0 bytes','zm_rtp_source.cpp',336),(1510815413.771363,'zmc_m1',0,12538,0,'INF','Monitor-1: 41000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815420.773485,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815420.776708,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 42838, 12910 bytes','zm_rtp_source.cpp',345),(1510815426.691866,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815426.697311,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 42991, 4306 bytes','zm_rtp_source.cpp',345),(1510815426.702505,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 42991, 0 bytes','zm_rtp_source.cpp',336),(1510815427.642032,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815427.647709,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 43016, 12910 bytes','zm_rtp_source.cpp',345),(1510815433.540604,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815433.545738,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 43168, 120460 bytes','zm_rtp_source.cpp',345),(1510815433.558400,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 43168, 0 bytes','zm_rtp_source.cpp',336),(1510815433.891526,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815433.894667,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 43176, 2872 bytes','zm_rtp_source.cpp',345),(1510815433.897594,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 43176, 0 bytes','zm_rtp_source.cpp',336),(1510815441.201364,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815441.204330,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 43364, 5740 bytes','zm_rtp_source.cpp',345),(1510815441.206859,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 43364, 0 bytes','zm_rtp_source.cpp',336),(1510815453.977218,'zmc_m1',0,12538,0,'INF','Monitor-1: 42000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815461.536806,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815461.539726,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 43893, 31552 bytes','zm_rtp_source.cpp',345),(1510815461.551755,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 43893, 0 bytes','zm_rtp_source.cpp',336),(1510815475.717092,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815475.723204,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 44261, 8608 bytes','zm_rtp_source.cpp',345),(1510815475.729803,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 44261, 0 bytes','zm_rtp_source.cpp',336),(1510815481.973039,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815481.977003,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 44422, 12910 bytes','zm_rtp_source.cpp',345),(1510815489.533123,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815489.536103,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 44618, 51628 bytes','zm_rtp_source.cpp',345),(1510815489.544722,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 44618, 0 bytes','zm_rtp_source.cpp',336),(1510815489.931603,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815489.934479,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 44627, 10042 bytes','zm_rtp_source.cpp',345),(1510815489.938654,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 44627, 0 bytes','zm_rtp_source.cpp',336),(1510815490.012755,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815490.017836,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 44628, 11476 bytes','zm_rtp_source.cpp',345),(1510815490.020192,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 44628, 0 bytes','zm_rtp_source.cpp',336),(1510815494.237048,'zmc_m1',0,12538,0,'INF','Monitor-1: 43000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510815495.772115,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815495.778234,'zmc_m1',0,12541,-1,'WAR','Discarding frame 44777','zm_rtp_source.cpp',349),(1510815495.783563,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 44777, 0 bytes','zm_rtp_source.cpp',336),(1510815502.731754,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815502.737296,'zmc_m1',0,12541,-1,'WAR','Discarding frame 44956','zm_rtp_source.cpp',349),(1510815502.740360,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 44956, 0 bytes','zm_rtp_source.cpp',336),(1510815502.851741,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815502.857493,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 44958, 2872 bytes','zm_rtp_source.cpp',345),(1510815502.862360,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 44958, 0 bytes','zm_rtp_source.cpp',336),(1510815503.549339,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815503.552411,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 44976, 111856 bytes','zm_rtp_source.cpp',345),(1510815503.555289,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 44976, 0 bytes','zm_rtp_source.cpp',336),(1510815510.091151,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815510.097231,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 45145, 11476 bytes','zm_rtp_source.cpp',345),(1510815510.103706,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 45145, 0 bytes','zm_rtp_source.cpp',336),(1510815517.090223,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815517.094511,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 45325, 1438 bytes','zm_rtp_source.cpp',345),(1510815517.099859,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 45325, 0 bytes','zm_rtp_source.cpp',336),(1510815517.170551,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815517.175864,'zmc_m1',0,12541,-1,'WAR','Discarding frame 45326','zm_rtp_source.cpp',349),(1510815517.181182,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 45326, 0 bytes','zm_rtp_source.cpp',336),(1510815523.526224,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815523.529663,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 45492, 2872 bytes','zm_rtp_source.cpp',345),(1510815523.539510,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 45492, 0 bytes','zm_rtp_source.cpp',336),(1510815534.553651,'zmc_m1',0,12538,0,'INF','Monitor-1: 44000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815544.959196,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815544.962579,'zmc_m1',0,12541,-1,'WAR','Discarding frame 46047','zm_rtp_source.cpp',349),(1510815544.965508,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46047, 0 bytes','zm_rtp_source.cpp',336),(1510815545.039810,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815545.042652,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46048, 8608 bytes','zm_rtp_source.cpp',345),(1510815545.047457,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46048, 0 bytes','zm_rtp_source.cpp',336),(1510815545.359752,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815545.365083,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46055, 8608 bytes','zm_rtp_source.cpp',345),(1510815545.370362,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46055, 0 bytes','zm_rtp_source.cpp',336),(1510815545.439184,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815545.444661,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46056, 1438 bytes','zm_rtp_source.cpp',345),(1510815545.449735,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815545.454967,'zmc_m1',0,12541,-1,'WAR','Discarding frame 46056','zm_rtp_source.cpp',349),(1510815545.459354,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46056, 0 bytes','zm_rtp_source.cpp',336),(1510815551.537194,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815551.540471,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46215, 114724 bytes','zm_rtp_source.cpp',345),(1510815551.543498,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46215, 0 bytes','zm_rtp_source.cpp',336),(1510815558.129785,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815558.135343,'zmc_m1',0,12541,-1,'WAR','Discarding frame 46385','zm_rtp_source.cpp',349),(1510815558.139581,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46385, 0 bytes','zm_rtp_source.cpp',336),(1510815558.330641,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815558.333488,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46389, 10042 bytes','zm_rtp_source.cpp',345),(1510815558.334910,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46389, 0 bytes','zm_rtp_source.cpp',336),(1510815558.891346,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815558.894533,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46402, 5740 bytes','zm_rtp_source.cpp',345),(1510815558.897386,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46402, 0 bytes','zm_rtp_source.cpp',336),(1510815564.930019,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815564.932879,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46558, 2872 bytes','zm_rtp_source.cpp',345),(1510815564.935423,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46558, 0 bytes','zm_rtp_source.cpp',336),(1510815565.491179,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815565.496616,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46571, 7174 bytes','zm_rtp_source.cpp',345),(1510815565.501391,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46571, 0 bytes','zm_rtp_source.cpp',336),(1510815565.569670,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815565.574504,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46573, 130498 bytes','zm_rtp_source.cpp',345),(1510815565.578003,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46573, 0 bytes','zm_rtp_source.cpp',336),(1510815565.769847,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815565.772791,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46577, 10042 bytes','zm_rtp_source.cpp',345),(1510815565.775832,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46577, 0 bytes','zm_rtp_source.cpp',336),(1510815572.009695,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815572.016551,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46737, 14344 bytes','zm_rtp_source.cpp',345),(1510815572.023566,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46737, 0 bytes','zm_rtp_source.cpp',336),(1510815572.769328,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815572.772609,'zmc_m1',0,12541,-1,'WAR','Discarding frame 46755','zm_rtp_source.cpp',349),(1510815572.775074,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46755, 0 bytes','zm_rtp_source.cpp',336),(1510815575.190202,'zmc_m1',0,12538,0,'INF','Monitor-1: 45000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510815579.249889,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815579.252715,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46922, 7174 bytes','zm_rtp_source.cpp',345),(1510815579.256503,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46922, 0 bytes','zm_rtp_source.cpp',336),(1510815579.729646,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815579.734937,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 46935, 8608 bytes','zm_rtp_source.cpp',345),(1510815579.740414,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 46935, 0 bytes','zm_rtp_source.cpp',336),(1510815593.544522,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815593.550553,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 47293, 88912 bytes','zm_rtp_source.cpp',345),(1510815593.555897,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 47293, 0 bytes','zm_rtp_source.cpp',336),(1510815593.918983,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815593.924300,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 47302, 4306 bytes','zm_rtp_source.cpp',345),(1510815593.930023,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 47302, 0 bytes','zm_rtp_source.cpp',336),(1510815607.534355,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815607.540423,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 47655, 34420 bytes','zm_rtp_source.cpp',345),(1510815607.549300,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 47655, 0 bytes','zm_rtp_source.cpp',336),(1510815613.534945,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815613.540445,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 47810, 18646 bytes','zm_rtp_source.cpp',345),(1510815613.555873,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 47810, 0 bytes','zm_rtp_source.cpp',336),(1510815613.809024,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815613.814654,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 47816, 2872 bytes','zm_rtp_source.cpp',345),(1510815613.819899,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 47816, 0 bytes','zm_rtp_source.cpp',336),(1510815614.528893,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815614.532514,'zmc_m1',0,12541,-1,'WAR','Discarding frame 47833','zm_rtp_source.cpp',349),(1510815614.535314,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 47833, 0 bytes','zm_rtp_source.cpp',336),(1510815615.510034,'zmc_m1',0,12538,0,'INF','Monitor-1: 46000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815621.050669,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815621.054120,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 48001, 11476 bytes','zm_rtp_source.cpp',345),(1510815621.055436,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 48001, 0 bytes','zm_rtp_source.cpp',336),(1510815621.369529,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815621.372669,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 48008, 8608 bytes','zm_rtp_source.cpp',345),(1510815621.375454,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 48008, 0 bytes','zm_rtp_source.cpp',336),(1510815627.368790,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815627.371613,'zmc_m1',0,12541,-1,'WAR','Discarding frame 48163','zm_rtp_source.cpp',349),(1510815627.374142,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 48163, 0 bytes','zm_rtp_source.cpp',336),(1510815627.489662,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815627.492984,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 48165, 10042 bytes','zm_rtp_source.cpp',345),(1510815627.495637,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 48165, 0 bytes','zm_rtp_source.cpp',336),(1510815627.968801,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815627.972080,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 48178, 2872 bytes','zm_rtp_source.cpp',345),(1510815627.976341,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 48178, 0 bytes','zm_rtp_source.cpp',336),(1510815634.569055,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815634.571923,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 48348, 8608 bytes','zm_rtp_source.cpp',345),(1510815634.574312,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 48348, 0 bytes','zm_rtp_source.cpp',336),(1510815655.545955,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815655.549445,'zmc_m1',0,12541,-1,'WAR','Discarding frame 48893','zm_rtp_source.cpp',349),(1510815655.566016,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815655.569116,'zmc_m1',0,12541,-1,'WAR','Discarding frame 48893','zm_rtp_source.cpp',349),(1510815655.570716,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 48893, 0 bytes','zm_rtp_source.cpp',336),(1510815655.789225,'zmc_m1',0,12538,0,'INF','Monitor-1: 47000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815656.128553,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815656.131584,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 48907, 2872 bytes','zm_rtp_source.cpp',345),(1510815656.134518,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815656.138898,'zmc_m1',0,12541,-1,'WAR','Discarding frame 48907','zm_rtp_source.cpp',349),(1510815656.248351,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815656.254262,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 48909, 1438 bytes','zm_rtp_source.cpp',345),(1510815656.259508,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 48909, 0 bytes','zm_rtp_source.cpp',336),(1510815683.048512,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815683.054213,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 49604, 5740 bytes','zm_rtp_source.cpp',345),(1510815683.058636,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 49604, 0 bytes','zm_rtp_source.cpp',336),(1510815683.330065,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815683.332906,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 49610, 8608 bytes','zm_rtp_source.cpp',345),(1510815683.335491,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 49610, 0 bytes','zm_rtp_source.cpp',336),(1510815683.548384,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815683.551617,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 49616, 107554 bytes','zm_rtp_source.cpp',345),(1510815683.554936,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 49616, 0 bytes','zm_rtp_source.cpp',336),(1510815695.989092,'zmc_m1',0,12538,0,'INF','Monitor-1: 48000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815696.677819,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815696.683390,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 49956, 4306 bytes','zm_rtp_source.cpp',345),(1510815696.685868,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 49956, 0 bytes','zm_rtp_source.cpp',336),(1510815697.554822,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815697.557648,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 49978, 57364 bytes','zm_rtp_source.cpp',345),(1510815697.567943,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 49978, 0 bytes','zm_rtp_source.cpp',336),(1510815703.647404,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815703.650437,'zmc_m1',0,12541,-1,'WAR','Discarding frame 50136','zm_rtp_source.cpp',349),(1510815703.653086,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 50136, 0 bytes','zm_rtp_source.cpp',336),(1510815703.888561,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815703.891487,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 50141, 7174 bytes','zm_rtp_source.cpp',345),(1510815703.893900,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 50141, 0 bytes','zm_rtp_source.cpp',336),(1510815704.447961,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815704.450805,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 50154, 1438 bytes','zm_rtp_source.cpp',345),(1510815704.453299,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 50154, 0 bytes','zm_rtp_source.cpp',336),(1510815710.128292,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815710.131185,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 50301, 8608 bytes','zm_rtp_source.cpp',345),(1510815710.133664,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 50301, 0 bytes','zm_rtp_source.cpp',336),(1510815710.168212,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815710.171262,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 50301, 8608 bytes','zm_rtp_source.cpp',345),(1510815710.175539,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 50301, 0 bytes','zm_rtp_source.cpp',336),(1510815723.967257,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815723.972630,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 50658, 12910 bytes','zm_rtp_source.cpp',345),(1510815723.978153,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 50658, 0 bytes','zm_rtp_source.cpp',336),(1510815724.767840,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815724.773186,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 50677, 8608 bytes','zm_rtp_source.cpp',345),(1510815724.778552,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 50677, 0 bytes','zm_rtp_source.cpp',336),(1510815730.687929,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815730.693311,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 50830, 8608 bytes','zm_rtp_source.cpp',345),(1510815730.698485,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 50830, 0 bytes','zm_rtp_source.cpp',336),(1510815730.768570,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815730.774476,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 50831, 11476 bytes','zm_rtp_source.cpp',345),(1510815736.470707,'zmc_m1',0,12538,0,'INF','Monitor-1: 49000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510815737.716609,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815737.723351,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 51012, 5740 bytes','zm_rtp_source.cpp',345),(1510815737.729807,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 51012, 0 bytes','zm_rtp_source.cpp',336),(1510815751.207523,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815751.213199,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 51360, 8608 bytes','zm_rtp_source.cpp',345),(1510815751.218775,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 51360, 0 bytes','zm_rtp_source.cpp',336),(1510815751.806757,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815751.811117,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 51376, 2872 bytes','zm_rtp_source.cpp',345),(1510815751.813824,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 51376, 0 bytes','zm_rtp_source.cpp',336),(1510815776.579199,'zmc_m1',0,12538,0,'INF','Monitor-1: 50000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815779.966977,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815779.972515,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52107, 5740 bytes','zm_rtp_source.cpp',345),(1510815779.978783,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52107, 0 bytes','zm_rtp_source.cpp',336),(1510815793.540247,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815793.546296,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52459, 67402 bytes','zm_rtp_source.cpp',345),(1510815793.552060,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52459, 0 bytes','zm_rtp_source.cpp',336),(1510815799.542251,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815799.545172,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52614, 86044 bytes','zm_rtp_source.cpp',345),(1510815799.546764,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815799.551574,'zmc_m1',0,12541,-1,'WAR','Discarding frame 52614','zm_rtp_source.cpp',349),(1510815799.557325,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52614, 0 bytes','zm_rtp_source.cpp',336),(1510815799.806475,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815799.812084,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52620, 7174 bytes','zm_rtp_source.cpp',345),(1510815799.817658,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52620, 0 bytes','zm_rtp_source.cpp',336),(1510815800.406990,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815800.412244,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52634, 1438 bytes','zm_rtp_source.cpp',345),(1510815800.416955,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52634, 0 bytes','zm_rtp_source.cpp',336),(1510815800.447753,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815800.450620,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52634, 8608 bytes','zm_rtp_source.cpp',345),(1510815800.453162,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52634, 0 bytes','zm_rtp_source.cpp',336),(1510815806.246674,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815806.249884,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52784, 2872 bytes','zm_rtp_source.cpp',345),(1510815806.251452,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52784, 0 bytes','zm_rtp_source.cpp',336),(1510815806.327511,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815806.330362,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52785, 7174 bytes','zm_rtp_source.cpp',345),(1510815806.332757,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52785, 0 bytes','zm_rtp_source.cpp',336),(1510815806.726187,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815806.732085,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52794, 4306 bytes','zm_rtp_source.cpp',345),(1510815806.737279,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52794, 0 bytes','zm_rtp_source.cpp',336),(1510815807.366368,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815807.371690,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52809, 2872 bytes','zm_rtp_source.cpp',345),(1510815807.376706,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52809, 0 bytes','zm_rtp_source.cpp',336),(1510815807.486891,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815807.492116,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52811, 8608 bytes','zm_rtp_source.cpp',345),(1510815807.497611,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52811, 0 bytes','zm_rtp_source.cpp',336),(1510815813.636446,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815813.639748,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 52972, 10042 bytes','zm_rtp_source.cpp',345),(1510815813.642583,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 52972, 0 bytes','zm_rtp_source.cpp',336),(1510815817.067129,'zmc_m1',0,12538,0,'INF','Monitor-1: 51000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510815826.846651,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815826.851963,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 53313, 1438 bytes','zm_rtp_source.cpp',345),(1510815826.857627,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 53313, 0 bytes','zm_rtp_source.cpp',336),(1510815834.006089,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815834.011334,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 53499, 4306 bytes','zm_rtp_source.cpp',345),(1510815834.015398,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815834.018270,'zmc_m1',0,12541,-1,'WAR','Discarding frame 53499','zm_rtp_source.cpp',349),(1510815834.326355,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815834.329347,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 53506, 8608 bytes','zm_rtp_source.cpp',345),(1510815834.330654,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 53506, 0 bytes','zm_rtp_source.cpp',336),(1510815834.846430,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815834.849400,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 53518, 8608 bytes','zm_rtp_source.cpp',345),(1510815834.850637,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 53518, 0 bytes','zm_rtp_source.cpp',336),(1510815834.965904,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815834.969913,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 53520, 5740 bytes','zm_rtp_source.cpp',345),(1510815834.974864,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 53520, 0 bytes','zm_rtp_source.cpp',336),(1510815840.685603,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815840.690560,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 53668, 1438 bytes','zm_rtp_source.cpp',345),(1510815840.695382,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 53668, 0 bytes','zm_rtp_source.cpp',336),(1510815854.805409,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815854.810823,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 54034, 1438 bytes','zm_rtp_source.cpp',345),(1510815854.815919,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 54034, 0 bytes','zm_rtp_source.cpp',336),(1510815854.966567,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815854.972084,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 54037, 11476 bytes','zm_rtp_source.cpp',345),(1510815855.445316,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815855.448150,'zmc_m1',0,12541,-1,'WAR','Discarding frame 54048','zm_rtp_source.cpp',349),(1510815855.450683,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 54048, 0 bytes','zm_rtp_source.cpp',336),(1510815857.416521,'zmc_m1',0,12538,0,'INF','Monitor-1: 52000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815868.921348,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815868.924207,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 54398, 1438 bytes','zm_rtp_source.cpp',345),(1510815868.929105,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 54398, 0 bytes','zm_rtp_source.cpp',336),(1510815875.555481,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815875.561073,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 54570, 103252 bytes','zm_rtp_source.cpp',345),(1510815875.566591,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 54570, 0 bytes','zm_rtp_source.cpp',336),(1510815875.710644,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815875.716627,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 54574, 7174 bytes','zm_rtp_source.cpp',345),(1510815875.721853,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 54574, 0 bytes','zm_rtp_source.cpp',336),(1510815888.604548,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815888.610231,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 54906, 12910 bytes','zm_rtp_source.cpp',345),(1510815888.616048,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 54906, 0 bytes','zm_rtp_source.cpp',336),(1510815889.724839,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815889.728058,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 54934, 12910 bytes','zm_rtp_source.cpp',345),(1510815889.730828,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 54934, 0 bytes','zm_rtp_source.cpp',336),(1510815897.764668,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 588','zm_rtp_source.cpp',127),(1510815897.770491,'zmc_m1',0,12541,-1,'WAR','Discarding frame 55091','zm_rtp_source.cpp',349),(1510815897.773804,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 55091, 0 bytes','zm_rtp_source.cpp',336),(1510815899.706683,'zmc_m1',0,12538,0,'INF','Monitor-1: 53000 - Capturing at 23.81 fps','zm_monitor.cpp',3125),(1510815903.204968,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815903.207811,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 55230, 1438 bytes','zm_rtp_source.cpp',345),(1510815903.210538,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 55230, 0 bytes','zm_rtp_source.cpp',336),(1510815903.529451,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815903.533594,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 55239, 5740 bytes','zm_rtp_source.cpp',345),(1510815903.551600,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 55239, 0 bytes','zm_rtp_source.cpp',336),(1510815939.773009,'zmc_m1',0,12538,0,'INF','Monitor-1: 54000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510815943.393506,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815943.398783,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 56272, 14344 bytes','zm_rtp_source.cpp',345),(1510815943.404967,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 56272, 0 bytes','zm_rtp_source.cpp',336),(1510815943.514764,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815943.518145,'zmc_m1',0,12541,-1,'WAR','Discarding frame 56276','zm_rtp_source.cpp',349),(1510815943.525151,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 56276, 0 bytes','zm_rtp_source.cpp',336),(1510815944.566442,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815944.569939,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 56301, 12910 bytes','zm_rtp_source.cpp',345),(1510815944.571389,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 56301, 0 bytes','zm_rtp_source.cpp',336),(1510815964.194109,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815964.199310,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 56811, 11476 bytes','zm_rtp_source.cpp',345),(1510815964.204311,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 56811, 0 bytes','zm_rtp_source.cpp',336),(1510815971.284866,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815971.289969,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 56993, 14344 bytes','zm_rtp_source.cpp',345),(1510815972.284931,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815972.290626,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 57019, 1438 bytes','zm_rtp_source.cpp',345),(1510815972.295359,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 57019, 0 bytes','zm_rtp_source.cpp',336),(1510815978.765920,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815978.771743,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 57186, 12910 bytes','zm_rtp_source.cpp',345),(1510815978.777146,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 57186, 0 bytes','zm_rtp_source.cpp',336),(1510815978.790930,'zmc_m1',0,12541,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510815978.796249,'zmc_m1',0,12541,-1,'WAR','Discarding partial frame 57186, 8608 bytes','zm_rtp_source.cpp',345),(1510815978.801399,'zmc_m1',0,12541,-1,'WAR','Discarding incomplete frame 57186, 0 bytes','zm_rtp_source.cpp',336),(1510815980.133953,'zmc_m1',0,12538,0,'INF','Monitor-1: 55000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510815987.528999,'zmc_m1',0,12541,-2,'ERR','RTP timed out','zm_rtp_data.cpp',93),(1510815994.585965,'zms',0,12552,-2,'ERR','Terminating, last frame sent time 10.011743 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510815996.029081,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510815996.058802,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510815996.118078,'zms',0,13431,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510815996.123693,'zms',0,13431,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510815996.205792,'zms',0,13431,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510815998.402430,'zmwatch',NULL,1655,0,'INF','Restarting capture daemon for Monitor-1, time since last capture 14 seconds (1510815998-1510815984)','zmwatch.pl',NULL),(1510815998.490750,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' sending stop to pid 12538 at 17/11/16 09:06:38','zmdc.pl',NULL),(1510815998.496382,'zmc_m1',0,12538,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510815999.197240,'web_php',NULL,9990,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816004.497060,'zmdc',NULL,1432,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/16 09:06:44. Sending KILL to pid 12538','zmdc.pl',NULL),(1510816004.517630,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510816004.623240,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510816004.632900,'zmdc',NULL,13447,0,'INF','\'zmc -m 1\' started at 17/11/16 09:06:44','zmdc.pl',NULL),(1510816004.632840,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:06:44, pid = 13447','zmdc.pl',NULL),(1510816004.787910,'zmc_m1',0,13447,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510816007.307466,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816007.321210,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816007.359116,'zms',0,13451,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816007.364143,'zms',0,13451,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816015.766412,'zmc_m1',0,13449,-2,'ERR','RTP timed out','zm_rtp_data.cpp',93),(1510816022.825921,'zms',0,13451,-2,'ERR','Terminating, last frame sent time 10.015292 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816024.529610,'zmwatch',NULL,1655,0,'INF','Restarting capture daemon for Monitor-1, time since last capture 12 seconds (1510816024-1510816012)','zmwatch.pl',NULL),(1510816024.618070,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' sending stop to pid 13447 at 17/11/16 09:07:04','zmdc.pl',NULL),(1510816024.625014,'zmc_m1',0,13447,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510816025.748337,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816025.775748,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816025.836597,'zms',0,13458,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816025.840567,'zms',0,13458,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816030.626000,'zmdc',NULL,1432,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/16 09:07:10. Sending KILL to pid 13447','zmdc.pl',NULL),(1510816030.640890,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510816035.053880,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510816035.063570,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:07:15, pid = 13459','zmdc.pl',NULL),(1510816035.063860,'zmdc',NULL,13459,0,'INF','\'zmc -m 1\' started at 17/11/16 09:07:15','zmdc.pl',NULL),(1510816035.229485,'zmc_m1',0,13459,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510816038.014813,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816038.032579,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816038.075778,'zms',0,13461,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816038.078640,'zms',0,13461,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816038.581907,'zms',0,13461,-2,'ERR','Terminating, last frame sent time 1510816038.081770 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816040.043925,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816040.070869,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816040.128474,'zms',0,13462,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816040.134414,'zms',0,13462,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816040.639802,'zms',0,13462,-2,'ERR','Terminating, last frame sent time 1510816040.139645 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816043.072272,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816043.092374,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816043.133027,'zms',0,13463,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816043.138639,'zms',0,13463,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816043.239655,'web_php',NULL,9989,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816043.644280,'zms',0,13463,-2,'ERR','Terminating, last frame sent time 1510816043.144162 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816045.249685,'zmc_m1',0,13459,-3,'FAT','No RTSP sources','zm_remote_camera_rtsp.cpp',162),(1510816045.261480,'zmdc',NULL,1432,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510816046.044609,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816046.072331,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816046.100336,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816046.112330,'zms',0,13464,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816046.117675,'zms',0,13464,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816046.620891,'zms',0,13464,-2,'ERR','Terminating, last frame sent time 1510816046.120787 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816049.077403,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816049.110718,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816049.150631,'zms',0,13465,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816049.153644,'zms',0,13465,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816049.655374,'zms',0,13465,-2,'ERR','Terminating, last frame sent time 1510816049.155219 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816052.043478,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816052.060987,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816052.102596,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816052.103645,'zms',0,13466,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816052.109531,'zms',0,13466,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816052.611235,'zms',0,13466,-2,'ERR','Terminating, last frame sent time 1510816052.111077 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816055.064921,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816055.087092,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816055.088250,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510816055.097170,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:07:35, pid = 13468','zmdc.pl',NULL),(1510816055.097180,'zmdc',NULL,13468,0,'INF','\'zmc -m 1\' started at 17/11/16 09:07:35','zmdc.pl',NULL),(1510816055.127509,'zms',0,13467,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816055.130097,'zms',0,13467,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816055.226790,'zmc_m1',0,13468,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510816055.631458,'zms',0,13467,-2,'ERR','Terminating, last frame sent time 1510816055.131332 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816058.042916,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816058.072502,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816058.090946,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816058.111830,'zms',0,13479,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816058.114381,'zms',0,13479,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816058.617112,'zms',0,13479,-2,'ERR','Terminating, last frame sent time 1510816058.117035 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816061.067549,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816061.092121,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816061.132510,'zms',0,13480,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816061.135178,'zms',0,13480,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816061.250674,'zmc_m1',0,13469,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510816061.253884,'zmc_m1',0,13469,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510816061.276010,'zmdc',NULL,1432,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510816061.638049,'zms',0,13480,-2,'ERR','Terminating, last frame sent time 1510816061.137970 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816064.051355,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816064.071244,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816064.094871,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816064.110793,'zms',0,13483,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816064.113377,'zms',0,13483,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816064.616031,'zms',0,13483,-2,'ERR','Terminating, last frame sent time 1510816064.115896 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816067.082268,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816067.099861,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816067.143070,'zms',0,13484,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816067.145867,'zms',0,13484,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816067.647316,'zms',0,13484,-2,'ERR','Terminating, last frame sent time 1510816067.147162 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816070.051879,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816070.078206,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816070.110213,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816070.131741,'zms',0,13485,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816070.134655,'zms',0,13485,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816070.637537,'zms',0,13485,-2,'ERR','Terminating, last frame sent time 1510816070.137374 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816073.076149,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816073.093394,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816073.132741,'zms',0,13486,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816073.135434,'zms',0,13486,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816073.638292,'zms',0,13486,-2,'ERR','Terminating, last frame sent time 1510816073.138132 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816076.052553,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816076.079477,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816076.104113,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816076.142074,'zms',0,13487,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816076.146068,'zms',0,13487,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816076.651800,'zms',0,13487,-2,'ERR','Terminating, last frame sent time 1510816076.151642 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816079.077493,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816079.097565,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816079.137623,'zms',0,13488,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816079.140595,'zms',0,13488,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816079.643501,'zms',0,13488,-2,'ERR','Terminating, last frame sent time 1510816079.143346 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816081.022600,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510816081.030930,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:08:01, pid = 13489','zmdc.pl',NULL),(1510816081.030970,'zmdc',NULL,13489,0,'INF','\'zmc -m 1\' started at 17/11/16 09:08:01','zmdc.pl',NULL),(1510816081.190967,'zmc_m1',0,13489,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510816082.054057,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816082.080051,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816082.106324,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816082.120107,'zms',0,13491,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816082.125283,'zms',0,13491,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816082.629954,'zms',0,13491,-2,'ERR','Terminating, last frame sent time 1510816082.129796 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816083.874798,'zmc_m1',0,13490,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510816083.878259,'zmc_m1',0,13490,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510816083.893500,'zmdc',NULL,1432,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510816085.082667,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816085.103373,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816085.143939,'zms',0,13493,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816085.149021,'zms',0,13493,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816085.654142,'zms',0,13493,-2,'ERR','Terminating, last frame sent time 1510816085.154016 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816088.055714,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816088.083646,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816088.111337,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816088.139323,'zms',0,13494,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816088.145156,'zms',0,13494,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816088.648959,'zms',0,13494,-2,'ERR','Terminating, last frame sent time 1510816088.148805 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816091.085522,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816091.106736,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816091.153736,'zms',0,13495,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816091.159079,'zms',0,13495,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816091.664702,'zms',0,13495,-2,'ERR','Terminating, last frame sent time 1510816091.164532 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816094.058014,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816094.076833,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816094.114239,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816094.117192,'zms',0,13496,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816094.124329,'zms',0,13496,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816094.630062,'zms',0,13496,-2,'ERR','Terminating, last frame sent time 1510816094.129906 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816097.086410,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816097.107608,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816097.147468,'zms',0,13497,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816097.152955,'zms',0,13497,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816097.658477,'zms',0,13497,-2,'ERR','Terminating, last frame sent time 1510816097.158348 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816100.055885,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816100.073898,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816100.114354,'zms',0,13498,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816100.117223,'zms',0,13498,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816100.118737,'zms',0,13498,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816100.621845,'zms',0,13498,-2,'ERR','Terminating, last frame sent time 1510816100.118728 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816103.084429,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816103.102625,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816103.117685,'web_php',NULL,10566,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816103.143291,'zms',0,13499,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816103.147352,'zms',0,13499,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816103.650531,'zms',0,13499,-2,'ERR','Terminating, last frame sent time 1510816103.150456 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816106.056037,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816106.074967,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816106.107957,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816106.114891,'zms',0,13501,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816106.117535,'zms',0,13501,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816106.618954,'zms',0,13501,-2,'ERR','Terminating, last frame sent time 1510816106.118798 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816109.076460,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816109.095392,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816109.135749,'zms',0,13502,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816109.141278,'zms',0,13502,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816109.646735,'zms',0,13502,-2,'ERR','Terminating, last frame sent time 1510816109.146661 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816112.058138,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816112.077199,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816112.106057,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816112.115973,'zms',0,13503,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816112.121269,'zms',0,13503,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816112.626742,'zms',0,13503,-2,'ERR','Terminating, last frame sent time 1510816112.126596 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816115.079612,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816115.100527,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816115.141090,'zms',0,13504,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816115.146758,'zms',0,13504,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816115.652728,'zms',0,13504,-2,'ERR','Terminating, last frame sent time 1510816115.152581 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816118.063292,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816118.089995,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816118.109341,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816118.148420,'zms',0,13514,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816118.152696,'zms',0,13514,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816118.658386,'zms',0,13514,-2,'ERR','Terminating, last frame sent time 1510816118.158233 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816121.089560,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816121.118054,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816121.177897,'zms',0,13515,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816121.181115,'zms',0,13515,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816121.684414,'zms',0,13515,-2,'ERR','Terminating, last frame sent time 1510816121.184276 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816123.055740,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510816123.064920,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:08:43, pid = 13517','zmdc.pl',NULL),(1510816123.065130,'zmdc',NULL,13517,0,'INF','\'zmc -m 1\' started at 17/11/16 09:08:43','zmdc.pl',NULL),(1510816123.206017,'zmc_m1',0,13517,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510816124.064747,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816124.084127,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816124.109756,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816124.126681,'zms',0,13521,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816124.129197,'zms',0,13521,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816124.630537,'zms',0,13521,-2,'ERR','Terminating, last frame sent time 1510816124.130371 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816126.178694,'zmc_m1',0,13518,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510816126.182338,'zmc_m1',0,13518,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510816126.197500,'zmdc',NULL,1432,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510816127.096896,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816127.116202,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816127.156819,'zms',0,13522,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816127.162486,'zms',0,13522,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816127.668146,'zms',0,13522,-2,'ERR','Terminating, last frame sent time 1510816127.167993 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816130.062790,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816130.082602,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816130.123089,'zms',0,13523,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816130.126313,'zms',0,13523,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816130.127651,'zms',0,13523,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816130.630898,'zms',0,13523,-2,'ERR','Terminating, last frame sent time 1510816130.127642 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816133.087065,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816133.106293,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816133.129910,'web_php',NULL,9991,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816133.145821,'zms',0,13524,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816133.148825,'zms',0,13524,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816133.651641,'zms',0,13524,-2,'ERR','Terminating, last frame sent time 1510816133.151487 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816136.067017,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816136.093834,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816136.117437,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816136.155207,'zms',0,13525,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816136.157754,'zms',0,13525,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816136.659307,'zms',0,13525,-2,'ERR','Terminating, last frame sent time 1510816136.159155 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816139.094025,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816139.114544,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816139.154422,'zms',0,13526,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816139.159367,'zms',0,13526,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816139.662636,'zms',0,13526,-2,'ERR','Terminating, last frame sent time 1510816139.162560 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816142.068139,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816142.088922,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816142.123091,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816142.129363,'zms',0,13529,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816142.132098,'zms',0,13529,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816142.634646,'zms',0,13529,-2,'ERR','Terminating, last frame sent time 1510816142.134507 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816145.097941,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816145.119530,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816145.160051,'zms',0,13583,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816145.165549,'zms',0,13583,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816145.668587,'zms',0,13583,-2,'ERR','Terminating, last frame sent time 1510816145.168456 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816148.069455,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816148.098838,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816148.126714,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816148.157840,'zms',0,13584,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816148.164109,'zms',0,13584,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816148.670392,'zms',0,13584,-2,'ERR','Terminating, last frame sent time 1510816148.170292 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816151.099039,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816151.123884,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816151.164094,'zms',0,13585,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816151.166706,'zms',0,13585,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816151.669368,'zms',0,13585,-2,'ERR','Terminating, last frame sent time 1510816151.169207 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816154.068907,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816154.084523,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816154.125133,'zms',0,13586,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816154.130241,'zms',0,13586,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816154.136031,'zms',0,13586,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816154.641922,'zms',0,13586,-2,'ERR','Terminating, last frame sent time 1510816154.135987 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816157.094766,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816157.115727,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816157.126536,'web_php',NULL,10566,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816157.155608,'zms',0,13587,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816157.158598,'zms',0,13587,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816157.661432,'zms',0,13587,-2,'ERR','Terminating, last frame sent time 1510816157.161279 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816160.067717,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816160.082546,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816160.122418,'zms',0,13588,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816160.127544,'zms',0,13588,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816160.130393,'zms',0,13588,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816160.633812,'zms',0,13588,-2,'ERR','Terminating, last frame sent time 1510816160.130367 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816163.093448,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816163.113770,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816163.126506,'web_php',NULL,9990,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816163.154629,'zms',0,13589,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816163.157809,'zms',0,13589,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816163.659274,'zms',0,13589,-2,'ERR','Terminating, last frame sent time 1510816163.159124 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816166.073512,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816166.098781,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816166.123512,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816166.139204,'zms',0,13590,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816166.144641,'zms',0,13590,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816166.650477,'zms',0,13590,-2,'ERR','Terminating, last frame sent time 1510816166.150312 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816169.102141,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816169.127470,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816169.167729,'zms',0,13591,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816169.172883,'zms',0,13591,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816169.676231,'zms',0,13591,-2,'ERR','Terminating, last frame sent time 1510816169.176072 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816172.074728,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816172.099755,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816172.125661,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816172.139683,'zms',0,13592,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816172.144433,'zms',0,13592,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816172.649879,'zms',0,13592,-2,'ERR','Terminating, last frame sent time 1510816172.149762 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816175.103449,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816175.123866,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816175.167402,'zms',0,13593,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816175.173029,'zms',0,13593,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816175.678330,'zms',0,13593,-2,'ERR','Terminating, last frame sent time 1510816175.178174 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816178.081722,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816178.129707,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816178.162359,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816178.204659,'zms',0,13603,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816178.210182,'zms',0,13603,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816178.716090,'zms',0,13603,-2,'ERR','Terminating, last frame sent time 1510816178.215938 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816181.172042,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816181.190693,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816181.230945,'zms',0,13604,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816181.235076,'zms',0,13604,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816181.740666,'zms',0,13604,-2,'ERR','Terminating, last frame sent time 1510816181.240541 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816184.073782,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816184.087671,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816184.127887,'zms',0,13607,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816184.130590,'zms',0,13607,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816184.636184,'zms',0,13607,-2,'ERR','Terminating, last frame sent time 1510816184.136028 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816187.096162,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816187.116168,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816187.156249,'zms',0,13608,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816187.162057,'zms',0,13608,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816187.204317,'web_php',NULL,9994,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816187.667553,'zms',0,13608,-2,'ERR','Terminating, last frame sent time 1510816187.167418 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816190.068381,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816190.082460,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816190.122180,'zms',0,13609,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816190.127589,'zms',0,13609,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816190.133086,'zms',0,13609,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816190.638610,'zms',0,13609,-2,'ERR','Terminating, last frame sent time 1510816190.133067 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816193.094332,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816193.116806,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816193.126494,'web_php',NULL,10566,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816193.159137,'zms',0,13610,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816193.165054,'zms',0,13610,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816193.670933,'zms',0,13610,-2,'ERR','Terminating, last frame sent time 1510816193.170786 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816196.072777,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816196.092865,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816196.121237,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816196.133017,'zms',0,13611,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816196.138582,'zms',0,13611,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816196.644763,'zms',0,13611,-2,'ERR','Terminating, last frame sent time 1510816196.144605 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816199.102992,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816199.124210,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816199.164961,'zms',0,13612,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816199.169816,'zms',0,13612,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816199.674705,'zms',0,13612,-2,'ERR','Terminating, last frame sent time 1510816199.174577 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816202.080475,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816202.107484,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816202.135395,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816202.146335,'zms',0,13613,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816202.152216,'zms',0,13613,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816202.658420,'zms',0,13613,-2,'ERR','Terminating, last frame sent time 1510816202.158261 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816205.104961,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816205.129179,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816205.169744,'zms',0,13616,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816205.175419,'zms',0,13616,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816205.680648,'zms',0,13616,-2,'ERR','Terminating, last frame sent time 1510816205.180586 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816206.081480,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510816206.090380,'zmdc',NULL,13617,0,'INF','\'zmc -m 1\' started at 17/11/16 09:10:06','zmdc.pl',NULL),(1510816206.090340,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:10:06, pid = 13617','zmdc.pl',NULL),(1510816206.242216,'zmc_m1',0,13617,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510816208.081316,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816208.108980,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816208.131602,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816208.162395,'zms',0,13619,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816208.168181,'zms',0,13619,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816208.674093,'zms',0,13619,-2,'ERR','Terminating, last frame sent time 1510816208.173958 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816209.218654,'zmc_m1',0,13618,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510816209.224397,'zmc_m1',0,13618,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510816209.250200,'zmdc',NULL,1432,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510816211.103910,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816211.122612,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816211.163280,'zms',0,13620,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816211.166297,'zms',0,13620,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816211.669339,'zms',0,13620,-2,'ERR','Terminating, last frame sent time 1510816211.169178 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816214.078399,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816214.095346,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816214.127199,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816214.135223,'zms',0,13621,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816214.142182,'zms',0,13621,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816214.649225,'zms',0,13621,-2,'ERR','Terminating, last frame sent time 1510816214.149074 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816217.101363,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816217.123074,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816217.163288,'zms',0,13622,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816217.169171,'zms',0,13622,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816217.675105,'zms',0,13622,-2,'ERR','Terminating, last frame sent time 1510816217.174966 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816220.087048,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816220.116727,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816220.130693,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816220.156356,'zms',0,13623,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816220.161902,'zms',0,13623,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816220.667257,'zms',0,13623,-2,'ERR','Terminating, last frame sent time 1510816220.167131 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816223.116313,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816223.135124,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816223.176013,'zms',0,13624,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816223.178817,'zms',0,13624,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816223.684180,'zms',0,13624,-2,'ERR','Terminating, last frame sent time 1510816223.184026 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816226.083066,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816226.112359,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816226.142381,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816226.151845,'zms',0,13625,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816226.156208,'zms',0,13625,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816226.661753,'zms',0,13625,-2,'ERR','Terminating, last frame sent time 1510816226.161649 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816229.108618,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816229.127173,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816229.168140,'zms',0,13626,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816229.171090,'zms',0,13626,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816229.674255,'zms',0,13626,-2,'ERR','Terminating, last frame sent time 1510816229.174125 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816232.083292,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816232.097310,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816232.135937,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816232.146282,'zms',0,13627,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816232.149622,'zms',0,13627,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816232.651160,'zms',0,13627,-2,'ERR','Terminating, last frame sent time 1510816232.151049 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816235.101479,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816235.121436,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816235.162197,'zms',0,13628,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816235.164833,'zms',0,13628,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816235.667846,'zms',0,13628,-2,'ERR','Terminating, last frame sent time 1510816235.167721 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816238.090436,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816238.123434,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816238.126278,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816238.167637,'zms',0,13629,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816238.170345,'zms',0,13629,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816238.673322,'zms',0,13629,-2,'ERR','Terminating, last frame sent time 1510816238.173171 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816241.114681,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816241.139754,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816241.179742,'zms',0,13639,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816241.182434,'zms',0,13639,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816241.685161,'zms',0,13639,-2,'ERR','Terminating, last frame sent time 1510816241.185008 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816244.084972,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816244.100680,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816244.141096,'zms',0,13642,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816244.144353,'zms',0,13642,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816244.149542,'zms',0,13642,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816244.655593,'zms',0,13642,-2,'ERR','Terminating, last frame sent time 1510816244.149515 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816247.109947,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816247.129775,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816247.142547,'web_php',NULL,9990,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816247.170120,'zms',0,13643,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816247.174713,'zms',0,13643,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816247.680399,'zms',0,13643,-2,'ERR','Terminating, last frame sent time 1510816247.180243 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816250.090427,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816250.117519,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816250.134535,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816250.174727,'zms',0,13644,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816250.177916,'zms',0,13644,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816250.679246,'zms',0,13644,-2,'ERR','Terminating, last frame sent time 1510816250.179150 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816253.117626,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816253.135793,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816253.183098,'zms',0,13645,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816253.186326,'zms',0,13645,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816253.689241,'zms',0,13645,-2,'ERR','Terminating, last frame sent time 1510816253.189110 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816256.088130,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816256.105212,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816256.141896,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816256.148624,'zms',0,13646,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816256.153564,'zms',0,13646,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816256.658635,'zms',0,13646,-2,'ERR','Terminating, last frame sent time 1510816256.158480 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816259.114942,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816259.135743,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816259.176633,'zms',0,13647,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816259.181915,'zms',0,13647,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816259.687392,'zms',0,13647,-2,'ERR','Terminating, last frame sent time 1510816259.187207 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816262.087640,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816262.109593,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816262.143645,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816262.149106,'zms',0,13648,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816262.154357,'zms',0,13648,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816262.660385,'zms',0,13648,-2,'ERR','Terminating, last frame sent time 1510816262.160226 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816265.113317,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816265.133536,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816265.173325,'zms',0,13650,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816265.178790,'zms',0,13650,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816265.683900,'zms',0,13650,-2,'ERR','Terminating, last frame sent time 1510816265.183775 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816268.093094,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816268.116956,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816268.141151,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816268.156306,'zms',0,13651,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816268.161886,'zms',0,13651,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816268.666876,'zms',0,13651,-2,'ERR','Terminating, last frame sent time 1510816268.166743 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816271.114876,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816271.135384,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816271.175912,'zms',0,13652,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816271.178752,'zms',0,13652,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816271.681627,'zms',0,13652,-2,'ERR','Terminating, last frame sent time 1510816271.181462 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816274.092767,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816274.107933,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816274.144008,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816274.148700,'zms',0,13653,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816274.151550,'zms',0,13653,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816274.654980,'zms',0,13653,-2,'ERR','Terminating, last frame sent time 1510816274.154863 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816277.117013,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816277.137401,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816277.184315,'zms',0,13654,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816277.189183,'zms',0,13654,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816277.692689,'zms',0,13654,-2,'ERR','Terminating, last frame sent time 1510816277.192526 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816280.095578,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816280.124437,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816280.140710,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816280.180763,'zms',0,13655,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816280.184385,'zms',0,13655,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816280.687331,'zms',0,13655,-2,'ERR','Terminating, last frame sent time 1510816280.187202 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816283.126599,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816283.148986,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816283.189152,'zms',0,13656,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816283.191990,'zms',0,13656,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816283.695310,'zms',0,13656,-2,'ERR','Terminating, last frame sent time 1510816283.195154 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816286.097781,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816286.125688,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816286.153782,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816286.185011,'zms',0,13657,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816286.188125,'zms',0,13657,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816286.691173,'zms',0,13657,-2,'ERR','Terminating, last frame sent time 1510816286.191044 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816289.117811,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816289.142836,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816289.182810,'zms',0,13658,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816289.186008,'zms',0,13658,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816289.687341,'zms',0,13658,-2,'ERR','Terminating, last frame sent time 1510816289.187215 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816292.094667,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816292.111056,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816292.145456,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816292.151750,'zms',0,13659,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816292.154438,'zms',0,13659,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816292.657231,'zms',0,13659,-2,'ERR','Terminating, last frame sent time 1510816292.157080 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816295.118862,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816295.140177,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816295.180090,'zms',0,13660,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816295.182784,'zms',0,13660,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816295.685385,'zms',0,13660,-2,'ERR','Terminating, last frame sent time 1510816295.185233 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816298.099974,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816298.118412,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816298.148020,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816298.157884,'zms',0,13661,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816298.160684,'zms',0,13661,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816298.663662,'zms',0,13661,-2,'ERR','Terminating, last frame sent time 1510816298.163561 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816301.125728,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816301.143756,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816301.183526,'zms',0,13671,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816301.189033,'zms',0,13671,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816301.694102,'zms',0,13671,-2,'ERR','Terminating, last frame sent time 1510816301.194014 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816304.101903,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816304.128091,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816304.152982,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816304.185984,'zms',0,13674,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816304.191610,'zms',0,13674,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816304.697782,'zms',0,13674,-2,'ERR','Terminating, last frame sent time 1510816304.197621 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816307.126170,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816307.148309,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816307.187850,'zms',0,13675,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816307.193464,'zms',0,13675,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816307.699738,'zms',0,13675,-2,'ERR','Terminating, last frame sent time 1510816307.199582 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816310.097501,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816310.124675,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816310.153199,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816310.164379,'zms',0,13676,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816310.170403,'zms',0,13676,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816310.674090,'zms',0,13676,-2,'ERR','Terminating, last frame sent time 1510816310.173920 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816313.126622,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816313.146176,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816313.187026,'zms',0,13679,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816313.192556,'zms',0,13679,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816313.696027,'zms',0,13679,-2,'ERR','Terminating, last frame sent time 1510816313.195869 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816316.098525,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816316.115470,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816316.155718,'zms',0,13680,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816316.159036,'zms',0,13680,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816316.161985,'zms',0,13680,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816316.663695,'zms',0,13680,-2,'ERR','Terminating, last frame sent time 1510816316.161972 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816319.117410,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816319.136366,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816319.161821,'web_php',NULL,9994,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816319.177192,'zms',0,13681,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816319.182766,'zms',0,13681,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816319.688502,'zms',0,13681,-2,'ERR','Terminating, last frame sent time 1510816319.188349 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816322.105605,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816322.130896,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816322.143336,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816322.187271,'zms',0,13682,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816322.193088,'zms',0,13682,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816322.698692,'zms',0,13682,-2,'ERR','Terminating, last frame sent time 1510816322.198562 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816325.132669,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816325.157681,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816325.197301,'zms',0,13684,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816325.200082,'zms',0,13684,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816325.703155,'zms',0,13684,-2,'ERR','Terminating, last frame sent time 1510816325.202998 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816328.107181,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816328.125812,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816328.160860,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816328.165521,'zms',0,13685,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816328.168287,'zms',0,13685,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816328.671011,'zms',0,13685,-2,'ERR','Terminating, last frame sent time 1510816328.170862 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816331.129740,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816331.157923,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816331.197235,'zms',0,13686,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816331.200085,'zms',0,13686,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816331.702992,'zms',0,13686,-2,'ERR','Terminating, last frame sent time 1510816331.202836 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816334.104990,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816334.127460,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816334.157157,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816334.167648,'zms',0,13687,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816334.170264,'zms',0,13687,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816334.671857,'zms',0,13687,-2,'ERR','Terminating, last frame sent time 1510816334.171704 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816337.134186,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816337.160209,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816337.202713,'zms',0,13688,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816337.205391,'zms',0,13688,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816337.706833,'zms',0,13688,-2,'ERR','Terminating, last frame sent time 1510816337.206667 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816340.107039,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816340.126962,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816340.161986,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816340.166208,'zms',0,13689,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816340.173437,'zms',0,13689,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816340.676826,'zms',0,13689,-2,'ERR','Terminating, last frame sent time 1510816340.176689 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816343.134530,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816343.158225,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816343.197665,'zms',0,13690,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816343.202370,'zms',0,13690,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816343.706940,'zms',0,13690,-2,'ERR','Terminating, last frame sent time 1510816343.206783 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816346.113109,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816346.135278,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816346.169851,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816346.175112,'zms',0,13691,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816346.179851,'zms',0,13691,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816346.685398,'zms',0,13691,-2,'ERR','Terminating, last frame sent time 1510816346.185235 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816349.143577,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816349.177112,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816349.235439,'zms',0,13692,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816349.240563,'zms',0,13692,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816349.746344,'zms',0,13692,-2,'ERR','Terminating, last frame sent time 1510816349.246185 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816352.113228,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816352.137711,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816352.177540,'zms',0,13693,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816352.182830,'zms',0,13693,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816352.187973,'zms',0,13693,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816352.693553,'zms',0,13693,-2,'ERR','Terminating, last frame sent time 1510816352.187940 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816355.135759,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816355.161142,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816355.178491,'web_php',NULL,9994,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816355.201430,'zms',0,13694,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816355.206553,'zms',0,13694,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816355.711495,'zms',0,13694,-2,'ERR','Terminating, last frame sent time 1510816355.211331 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816358.114751,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816358.144321,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816358.162411,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816358.184363,'zms',0,13695,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816358.189875,'zms',0,13695,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816358.695390,'zms',0,13695,-2,'ERR','Terminating, last frame sent time 1510816358.195231 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816361.134804,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816361.158986,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816361.199103,'zms',0,13705,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816361.204705,'zms',0,13705,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816361.710071,'zms',0,13705,-2,'ERR','Terminating, last frame sent time 1510816361.209904 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816364.112737,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816364.128005,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816364.161609,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816364.169344,'zms',0,13709,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816364.173416,'zms',0,13709,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816364.678426,'zms',0,13709,-2,'ERR','Terminating, last frame sent time 1510816364.178272 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816367.138846,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816367.161571,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816367.219316,'zms',0,13710,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816367.224778,'zms',0,13710,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816367.729874,'zms',0,13710,-2,'ERR','Terminating, last frame sent time 1510816367.229797 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816369.061720,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510816369.071610,'zmdc',NULL,13711,0,'INF','\'zmc -m 1\' started at 17/11/16 09:12:49','zmdc.pl',NULL),(1510816369.071560,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:12:49, pid = 13711','zmdc.pl',NULL),(1510816369.208300,'zmc_m1',0,13711,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510816370.114230,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816370.135950,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816370.160379,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816370.176926,'zms',0,13713,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816370.179725,'zms',0,13713,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816370.682475,'zms',0,13713,-2,'ERR','Terminating, last frame sent time 1510816370.182296 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816372.194693,'zmc_m1',0,13712,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510816372.200687,'zmc_m1',0,13712,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510816372.216720,'zmdc',NULL,1432,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510816373.147707,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816373.168780,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816373.208902,'zms',0,13714,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816373.214461,'zms',0,13714,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816373.718665,'zms',0,13714,-2,'ERR','Terminating, last frame sent time 1510816373.218535 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816376.115672,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816376.130619,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816376.171623,'zms',0,13715,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816376.174417,'zms',0,13715,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816376.677597,'zms',0,13715,-2,'ERR','Terminating, last frame sent time 1510816376.177432 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816379.139559,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816379.161138,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816379.182560,'web_php',NULL,9990,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816379.202362,'zms',0,13716,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816379.205166,'zms',0,13716,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816379.706441,'zms',0,13716,-2,'ERR','Terminating, last frame sent time 1510816379.206275 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816382.122922,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816382.153288,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816382.168861,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816382.211171,'zms',0,13717,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816382.214686,'zms',0,13717,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816382.717690,'zms',0,13717,-2,'ERR','Terminating, last frame sent time 1510816382.217615 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816385.145997,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816385.168693,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816385.209164,'zms',0,13719,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816385.212350,'zms',0,13719,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816385.715906,'zms',0,13719,-2,'ERR','Terminating, last frame sent time 1510816385.215726 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816388.116837,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816388.146362,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816388.171345,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816388.186280,'zms',0,13720,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816388.189699,'zms',0,13720,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816388.691122,'zms',0,13720,-2,'ERR','Terminating, last frame sent time 1510816388.190968 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816391.140355,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816391.161784,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816391.202007,'zms',0,13721,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816391.207076,'zms',0,13721,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816391.711447,'zms',0,13721,-2,'ERR','Terminating, last frame sent time 1510816391.211284 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816394.120569,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816394.146404,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816394.170317,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816394.185999,'zms',0,13722,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816394.191854,'zms',0,13722,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816394.696648,'zms',0,13722,-2,'ERR','Terminating, last frame sent time 1510816394.196487 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816397.149436,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816397.177878,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816397.235553,'zms',0,13723,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816397.240899,'zms',0,13723,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816397.746085,'zms',0,13723,-2,'ERR','Terminating, last frame sent time 1510816397.245928 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816400.117439,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816400.136136,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816400.179018,'zms',0,13724,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816400.184400,'zms',0,13724,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816400.189513,'zms',0,13724,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816400.694576,'zms',0,13724,-2,'ERR','Terminating, last frame sent time 1510816400.189483 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816403.141759,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816403.158203,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816403.181092,'web_php',NULL,9989,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816403.201700,'zms',0,13725,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816403.207157,'zms',0,13725,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816403.712719,'zms',0,13725,-2,'ERR','Terminating, last frame sent time 1510816403.212567 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816406.122016,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816406.133043,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816406.168206,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816406.173108,'zms',0,13726,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816406.175754,'zms',0,13726,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816406.681095,'zms',0,13726,-2,'ERR','Terminating, last frame sent time 1510816406.180925 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816409.143695,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816409.168041,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816409.208443,'zms',0,13727,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816409.211154,'zms',0,13727,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816409.714283,'zms',0,13727,-2,'ERR','Terminating, last frame sent time 1510816409.214201 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816412.121212,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816412.132283,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816412.165189,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816412.172529,'zms',0,13728,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816412.177888,'zms',0,13728,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816412.682965,'zms',0,13728,-2,'ERR','Terminating, last frame sent time 1510816412.182812 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816415.142872,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816415.160998,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816415.201231,'zms',0,13729,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816415.205294,'zms',0,13729,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816415.710489,'zms',0,13729,-2,'ERR','Terminating, last frame sent time 1510816415.210311 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816418.125395,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816418.143361,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816418.168525,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816418.185350,'zms',0,13730,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816418.188388,'zms',0,13730,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816418.691392,'zms',0,13730,-2,'ERR','Terminating, last frame sent time 1510816418.191243 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816421.151072,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816421.169321,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816421.209165,'zms',0,13740,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816421.211985,'zms',0,13740,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816421.715047,'zms',0,13740,-2,'ERR','Terminating, last frame sent time 1510816421.214891 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816424.128532,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816424.154639,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816424.175565,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816424.193957,'zms',0,13741,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816424.197179,'zms',0,13741,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816424.700427,'zms',0,13741,-2,'ERR','Terminating, last frame sent time 1510816424.200321 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816427.158208,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816427.171513,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816427.211574,'zms',0,13744,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816427.214639,'zms',0,13744,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816427.717799,'zms',0,13744,-2,'ERR','Terminating, last frame sent time 1510816427.217669 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816430.130217,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816430.146147,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816430.178127,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816430.187112,'zms',0,13745,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816430.190539,'zms',0,13745,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816430.693176,'zms',0,13745,-2,'ERR','Terminating, last frame sent time 1510816430.193014 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816433.156535,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816433.174853,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816433.215135,'zms',0,13746,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816433.218122,'zms',0,13746,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816433.721828,'zms',0,13746,-2,'ERR','Terminating, last frame sent time 1510816433.221670 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816436.131839,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816436.148231,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816436.186385,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816436.194062,'zms',0,13747,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816436.197131,'zms',0,13747,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816436.700378,'zms',0,13747,-2,'ERR','Terminating, last frame sent time 1510816436.200250 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816439.159588,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816439.180549,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816439.220164,'zms',0,13748,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816439.225399,'zms',0,13748,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816439.731073,'zms',0,13748,-2,'ERR','Terminating, last frame sent time 1510816439.230908 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816442.129259,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816442.142967,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816442.183217,'zms',0,13749,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816442.188703,'zms',0,13749,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816442.194214,'zms',0,13749,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816442.700039,'zms',0,13749,-2,'ERR','Terminating, last frame sent time 1510816442.194189 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816445.152874,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816445.171556,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816445.191786,'web_php',NULL,9993,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816445.213772,'zms',0,13751,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816445.218848,'zms',0,13751,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816445.724149,'zms',0,13751,-2,'ERR','Terminating, last frame sent time 1510816445.223984 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816448.133866,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816448.152144,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816448.180043,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816448.194421,'zms',0,13752,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816448.197234,'zms',0,13752,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816448.698890,'zms',0,13752,-2,'ERR','Terminating, last frame sent time 1510816448.198735 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816451.160158,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816451.184894,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816451.224627,'zms',0,13753,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816451.227304,'zms',0,13753,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816451.731840,'zms',0,13753,-2,'ERR','Terminating, last frame sent time 1510816451.231681 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816454.134992,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816454.152729,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816454.185939,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816454.193178,'zms',0,13754,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816454.195986,'zms',0,13754,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816454.698907,'zms',0,13754,-2,'ERR','Terminating, last frame sent time 1510816454.198752 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816457.156851,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816457.175627,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816457.215254,'zms',0,13755,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816457.217689,'zms',0,13755,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816457.719171,'zms',0,13755,-2,'ERR','Terminating, last frame sent time 1510816457.219018 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816460.136250,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816460.161614,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816460.183239,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816460.220205,'zms',0,13756,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816460.223421,'zms',0,13756,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816460.726346,'zms',0,13756,-2,'ERR','Terminating, last frame sent time 1510816460.226193 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816463.162119,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816463.179409,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816463.221908,'zms',0,13757,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816463.224799,'zms',0,13757,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816463.727742,'zms',0,13757,-2,'ERR','Terminating, last frame sent time 1510816463.227584 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816466.132009,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816466.145089,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816466.189574,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816466.194053,'zms',0,13758,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816466.199155,'zms',0,13758,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816466.704327,'zms',0,13758,-2,'ERR','Terminating, last frame sent time 1510816466.204162 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816469.154934,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816469.173254,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816469.213346,'zms',0,13759,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816469.216431,'zms',0,13759,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816469.722146,'zms',0,13759,-2,'ERR','Terminating, last frame sent time 1510816469.221990 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816472.139738,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816472.162421,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816472.180928,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816472.202145,'zms',0,13760,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816472.205227,'zms',0,13760,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816472.708307,'zms',0,13760,-2,'ERR','Terminating, last frame sent time 1510816472.208151 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816475.165331,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816475.183294,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816475.223691,'zms',0,13761,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816475.226286,'zms',0,13761,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816475.729297,'zms',0,13761,-2,'ERR','Terminating, last frame sent time 1510816475.229144 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816478.140284,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816478.158727,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816478.191822,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816478.198659,'zms',0,13762,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816478.201444,'zms',0,13762,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816478.702928,'zms',0,13762,-2,'ERR','Terminating, last frame sent time 1510816478.202774 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816481.166702,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816481.185617,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816481.225214,'zms',0,13772,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816481.228068,'zms',0,13772,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816481.731064,'zms',0,13772,-2,'ERR','Terminating, last frame sent time 1510816481.230910 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816484.142427,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816484.169069,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816484.188561,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816484.226375,'zms',0,13773,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816484.229234,'zms',0,13773,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816484.730562,'zms',0,13773,-2,'ERR','Terminating, last frame sent time 1510816484.230427 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816487.172218,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816487.197850,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816487.237282,'zms',0,13777,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816487.240077,'zms',0,13777,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816487.742935,'zms',0,13777,-2,'ERR','Terminating, last frame sent time 1510816487.242826 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816490.143301,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816490.162310,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816490.195128,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816490.203010,'zms',0,13778,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816490.206183,'zms',0,13778,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816490.707873,'zms',0,13778,-2,'ERR','Terminating, last frame sent time 1510816490.207716 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816493.167597,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816493.188089,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816493.231225,'zms',0,13779,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816493.237020,'zms',0,13779,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816493.740057,'zms',0,13779,-2,'ERR','Terminating, last frame sent time 1510816493.239903 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816496.145295,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816496.161346,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816496.195716,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816496.201569,'zms',0,13780,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816496.204596,'zms',0,13780,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816496.707574,'zms',0,13780,-2,'ERR','Terminating, last frame sent time 1510816496.207419 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816499.167277,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816499.186730,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816499.227250,'zms',0,13781,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816499.230319,'zms',0,13781,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816499.731753,'zms',0,13781,-2,'ERR','Terminating, last frame sent time 1510816499.231627 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816502.146753,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816502.174681,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816502.194726,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816502.213905,'zms',0,13782,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816502.217010,'zms',0,13782,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816502.719872,'zms',0,13782,-2,'ERR','Terminating, last frame sent time 1510816502.219794 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816505.173398,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816505.192033,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816505.232392,'zms',0,13784,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816505.235840,'zms',0,13784,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816505.738825,'zms',0,13784,-2,'ERR','Terminating, last frame sent time 1510816505.238668 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816508.147593,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816508.173907,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816508.196087,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816508.230709,'zms',0,13785,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816508.234061,'zms',0,13785,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816508.735936,'zms',0,13785,-2,'ERR','Terminating, last frame sent time 1510816508.235778 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816511.173708,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816511.195226,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816511.235943,'zms',0,13786,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816511.241383,'zms',0,13786,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816511.747082,'zms',0,13786,-2,'ERR','Terminating, last frame sent time 1510816511.246924 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816514.148285,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816514.167999,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816514.202227,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816514.207610,'zms',0,13787,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816514.212534,'zms',0,13787,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816514.718448,'zms',0,13787,-2,'ERR','Terminating, last frame sent time 1510816514.218296 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816517.171740,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816517.189660,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816517.229285,'zms',0,13788,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816517.233884,'zms',0,13788,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816517.739623,'zms',0,13788,-2,'ERR','Terminating, last frame sent time 1510816517.239469 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816520.150990,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816520.170922,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816520.200766,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816520.210735,'zms',0,13789,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816520.216220,'zms',0,13789,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816520.721238,'zms',0,13789,-2,'ERR','Terminating, last frame sent time 1510816520.221129 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816523.179002,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816523.198846,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816523.247716,'zms',0,13790,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816523.253826,'zms',0,13790,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816523.758524,'zms',0,13790,-2,'ERR','Terminating, last frame sent time 1510816523.258366 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816526.146301,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816526.169344,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816526.209010,'zms',0,13791,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816526.211854,'zms',0,13791,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816526.215386,'zms',0,13791,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816526.719010,'zms',0,13791,-2,'ERR','Terminating, last frame sent time 1510816526.215349 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816529.172035,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816529.192819,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816529.210539,'web_php',NULL,9993,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816529.232930,'zms',0,13792,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816529.235585,'zms',0,13792,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816529.738989,'zms',0,13792,-2,'ERR','Terminating, last frame sent time 1510816529.238836 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816532.152600,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816532.172352,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816532.200686,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816532.212648,'zms',0,13793,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816532.217528,'zms',0,13793,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816532.722400,'zms',0,13793,-2,'ERR','Terminating, last frame sent time 1510816532.222236 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816535.176069,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816535.236305,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816535.276620,'zms',0,13794,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816535.429950,'zms',0,13794,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816535.984009,'zms',0,13794,-2,'ERR','Terminating, last frame sent time 1510816535.483930 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816538.153768,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816538.179642,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816538.239509,'zms',0,13795,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816538.245406,'zms',0,13795,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816538.250905,'zms',0,13795,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816538.756925,'zms',0,13795,-2,'ERR','Terminating, last frame sent time 1510816538.250870 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816541.180801,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816541.200257,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816541.241031,'zms',0,13805,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816541.246884,'zms',0,13805,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816541.247024,'web_php',NULL,10569,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816541.752329,'zms',0,13805,-2,'ERR','Terminating, last frame sent time 1510816541.252171 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816544.154374,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816544.168706,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816544.207082,'zms',0,13806,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816544.212776,'zms',0,13806,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816544.219529,'zms',0,13806,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816544.725233,'zms',0,13806,-2,'ERR','Terminating, last frame sent time 1510816544.219499 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816547.179571,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816547.199175,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816547.214705,'web_php',NULL,9993,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816547.246518,'zms',0,13809,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816547.249404,'zms',0,13809,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816547.751002,'zms',0,13809,-2,'ERR','Terminating, last frame sent time 1510816547.250864 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816550.156056,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816550.181247,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816550.209583,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816550.239619,'zms',0,13810,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816550.242422,'zms',0,13810,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816550.745012,'zms',0,13810,-2,'ERR','Terminating, last frame sent time 1510816550.244859 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816553.182867,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816553.199507,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816553.239063,'zms',0,13811,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816553.244847,'zms',0,13811,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816553.750339,'zms',0,13811,-2,'ERR','Terminating, last frame sent time 1510816553.250213 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816556.158738,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816556.180112,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816556.211272,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816556.220941,'zms',0,13812,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816556.226931,'zms',0,13812,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816556.732220,'zms',0,13812,-2,'ERR','Terminating, last frame sent time 1510816556.232062 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816559.182375,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816559.204392,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816559.244748,'zms',0,13813,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816559.250027,'zms',0,13813,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816559.754788,'zms',0,13813,-2,'ERR','Terminating, last frame sent time 1510816559.254632 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816562.153497,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816562.174699,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816562.213856,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816562.216181,'zms',0,13814,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816562.223960,'zms',0,13814,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816562.728067,'zms',0,13814,-2,'ERR','Terminating, last frame sent time 1510816562.227947 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816565.181122,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816565.199803,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816565.240091,'zms',0,13816,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816565.245887,'zms',0,13816,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816565.751448,'zms',0,13816,-2,'ERR','Terminating, last frame sent time 1510816565.251329 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816568.158636,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816568.185924,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816568.210422,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816568.243706,'zms',0,13817,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816568.248734,'zms',0,13817,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816568.752039,'zms',0,13817,-2,'ERR','Terminating, last frame sent time 1510816568.251880 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816571.186857,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816571.208219,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816571.249279,'zms',0,13818,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816571.253529,'zms',0,13818,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816571.757051,'zms',0,13818,-2,'ERR','Terminating, last frame sent time 1510816571.256897 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816574.157112,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816574.172159,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816574.212355,'zms',0,13819,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816574.217945,'zms',0,13819,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816574.221714,'zms',0,13819,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816574.724762,'zms',0,13819,-2,'ERR','Terminating, last frame sent time 1510816574.221704 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816577.181369,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816577.200306,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816577.218555,'web_php',NULL,10569,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816577.241579,'zms',0,13820,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816577.244732,'zms',0,13820,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816577.747985,'zms',0,13820,-2,'ERR','Terminating, last frame sent time 1510816577.247839 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816580.161506,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816580.183806,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816580.210858,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816580.223797,'zms',0,13821,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816580.226817,'zms',0,13821,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816580.731233,'zms',0,13821,-2,'ERR','Terminating, last frame sent time 1510816580.231109 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816583.186708,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816583.205810,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816583.245248,'zms',0,13822,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816583.250028,'zms',0,13822,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816583.755325,'zms',0,13822,-2,'ERR','Terminating, last frame sent time 1510816583.255171 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816586.162439,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816586.180696,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816586.214363,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816586.221576,'zms',0,13823,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816586.226868,'zms',0,13823,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816586.732887,'zms',0,13823,-2,'ERR','Terminating, last frame sent time 1510816586.232731 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816589.189250,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816589.210331,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816589.250781,'zms',0,13824,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816589.256164,'zms',0,13824,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816589.761120,'zms',0,13824,-2,'ERR','Terminating, last frame sent time 1510816589.260969 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816592.163472,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816592.183922,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816592.218178,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816592.225270,'zms',0,13825,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816592.230372,'zms',0,13825,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816592.734518,'zms',0,13825,-2,'ERR','Terminating, last frame sent time 1510816592.234366 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816595.191327,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816595.212246,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816595.254874,'zms',0,13826,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816595.259808,'zms',0,13826,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816595.764305,'zms',0,13826,-2,'ERR','Terminating, last frame sent time 1510816595.264175 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816598.164010,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816598.189670,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816598.218427,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816598.229585,'zms',0,13827,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816598.235032,'zms',0,13827,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816598.739592,'zms',0,13827,-2,'ERR','Terminating, last frame sent time 1510816598.239434 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816601.187592,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816601.213699,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816601.272769,'zms',0,13837,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816601.278343,'zms',0,13837,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816601.784072,'zms',0,13837,-2,'ERR','Terminating, last frame sent time 1510816601.283987 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816604.164962,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816604.185795,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816604.215763,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816604.227145,'zms',0,13838,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816604.232187,'zms',0,13838,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816604.736562,'zms',0,13838,-2,'ERR','Terminating, last frame sent time 1510816604.236408 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816607.193152,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816607.213014,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816607.253462,'zms',0,13841,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816607.256261,'zms',0,13841,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816607.759461,'zms',0,13841,-2,'ERR','Terminating, last frame sent time 1510816607.259306 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816610.163187,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816610.190967,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816610.220874,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816610.231162,'zms',0,13842,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816610.234147,'zms',0,13842,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816610.735486,'zms',0,13842,-2,'ERR','Terminating, last frame sent time 1510816610.235358 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816613.185801,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816613.207113,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816613.253004,'zms',0,13846,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816613.258658,'zms',0,13846,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816613.764540,'zms',0,13846,-2,'ERR','Terminating, last frame sent time 1510816613.264380 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816616.163977,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816616.176462,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816616.215733,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816616.217730,'zms',0,13847,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816616.221159,'zms',0,13847,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816616.722819,'zms',0,13847,-2,'ERR','Terminating, last frame sent time 1510816616.222665 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816619.186444,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816619.205334,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816619.245783,'zms',0,13848,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816619.248474,'zms',0,13848,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816619.751267,'zms',0,13848,-2,'ERR','Terminating, last frame sent time 1510816619.251123 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816622.169997,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816622.195341,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816622.216074,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816622.234352,'zms',0,13852,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816622.236909,'zms',0,13852,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816622.738556,'zms',0,13852,-2,'ERR','Terminating, last frame sent time 1510816622.238403 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816625.198379,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816625.219099,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816625.259145,'zms',0,13854,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816625.264138,'zms',0,13854,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816625.768072,'zms',0,13854,-2,'ERR','Terminating, last frame sent time 1510816625.267936 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816628.170529,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816628.190633,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816628.227645,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816628.231181,'zms',0,13855,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816628.238383,'zms',0,13855,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816628.743704,'zms',0,13855,-2,'ERR','Terminating, last frame sent time 1510816628.243543 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816631.196276,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816631.216943,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816631.256970,'zms',0,13856,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816631.262391,'zms',0,13856,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816631.768360,'zms',0,13856,-2,'ERR','Terminating, last frame sent time 1510816631.268206 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816634.167210,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816634.189694,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816634.224333,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816634.229233,'zms',0,13857,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816634.234809,'zms',0,13857,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816634.740726,'zms',0,13857,-2,'ERR','Terminating, last frame sent time 1510816634.240571 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816637.192223,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816637.213472,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816637.254775,'zms',0,13858,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816637.259753,'zms',0,13858,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816637.763949,'zms',0,13858,-2,'ERR','Terminating, last frame sent time 1510816637.263791 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816640.173344,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816640.191499,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816640.216754,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816640.234775,'zms',0,13859,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816640.240583,'zms',0,13859,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816640.746277,'zms',0,13859,-2,'ERR','Terminating, last frame sent time 1510816640.246119 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816643.198674,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816643.218907,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816643.267386,'zms',0,13863,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816643.272719,'zms',0,13863,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816643.777215,'zms',0,13863,-2,'ERR','Terminating, last frame sent time 1510816643.277062 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816646.173856,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816646.189605,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816646.228637,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816646.230045,'zms',0,13864,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816646.239515,'zms',0,13864,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816646.745047,'zms',0,13864,-2,'ERR','Terminating, last frame sent time 1510816646.244893 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816649.197424,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816649.215719,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816649.256942,'zms',0,13865,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816649.262470,'zms',0,13865,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816649.767940,'zms',0,13865,-2,'ERR','Terminating, last frame sent time 1510816649.267791 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816652.169231,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816652.182086,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816652.224187,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816652.227621,'zms',0,13866,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816652.230122,'zms',0,13866,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816652.731854,'zms',0,13866,-2,'ERR','Terminating, last frame sent time 1510816652.231729 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816655.190816,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816655.208863,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816655.248477,'zms',0,13867,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816655.251390,'zms',0,13867,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816655.754729,'zms',0,13867,-2,'ERR','Terminating, last frame sent time 1510816655.254590 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816658.171598,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816658.197119,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816658.217014,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816658.254365,'zms',0,13868,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816658.257522,'zms',0,13868,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816658.759097,'zms',0,13868,-2,'ERR','Terminating, last frame sent time 1510816658.258944 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816661.195937,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816661.223445,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816661.283155,'zms',0,13878,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816661.285933,'zms',0,13878,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816661.787580,'zms',0,13878,-2,'ERR','Terminating, last frame sent time 1510816661.287508 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816664.171358,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816664.196973,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816664.224595,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816664.257682,'zms',0,13879,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816664.260372,'zms',0,13879,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816664.763665,'zms',0,13879,-2,'ERR','Terminating, last frame sent time 1510816664.263509 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816667.199625,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816667.216722,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816667.260794,'zms',0,13882,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816667.263800,'zms',0,13882,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816667.767014,'zms',0,13882,-2,'ERR','Terminating, last frame sent time 1510816667.266899 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816670.173099,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816670.187303,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816670.227578,'zms',0,13883,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816670.230732,'zms',0,13883,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816670.233460,'zms',0,13883,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816670.735171,'zms',0,13883,-2,'ERR','Terminating, last frame sent time 1510816670.233449 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816673.195873,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816673.220609,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816673.230605,'web_php',NULL,9990,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816673.283708,'zms',0,13884,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816673.286973,'zms',0,13884,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816673.791105,'zms',0,13884,-2,'ERR','Terminating, last frame sent time 1510816673.290953 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816676.178342,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816676.190664,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816676.228728,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816676.231228,'zms',0,13885,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816676.234162,'zms',0,13885,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816676.735660,'zms',0,13885,-2,'ERR','Terminating, last frame sent time 1510816676.235505 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816679.200723,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816679.221764,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816679.262017,'zms',0,13886,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816679.265271,'zms',0,13886,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816679.767902,'zms',0,13886,-2,'ERR','Terminating, last frame sent time 1510816679.267814 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816682.182370,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816682.206244,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816682.228666,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816682.245763,'zms',0,13887,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816682.248721,'zms',0,13887,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816682.751803,'zms',0,13887,-2,'ERR','Terminating, last frame sent time 1510816682.251667 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816685.209723,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816685.229483,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816685.269956,'zms',0,13889,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816685.273106,'zms',0,13889,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816685.776034,'zms',0,13889,-2,'ERR','Terminating, last frame sent time 1510816685.275888 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816688.181960,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816688.202013,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816688.235385,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816688.241834,'zms',0,13890,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816688.244944,'zms',0,13890,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816688.748367,'zms',0,13890,-2,'ERR','Terminating, last frame sent time 1510816688.248210 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816691.209425,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816691.238729,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816691.278491,'zms',0,13891,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816691.280960,'zms',0,13891,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816691.782479,'zms',0,13891,-2,'ERR','Terminating, last frame sent time 1510816691.282325 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816692.101620,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510816692.108670,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:18:12, pid = 13892','zmdc.pl',NULL),(1510816692.108730,'zmdc',NULL,13892,0,'INF','\'zmc -m 1\' started at 17/11/16 09:18:12','zmdc.pl',NULL),(1510816692.251664,'zmc_m1',0,13892,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510816694.183404,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816694.198160,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816694.238170,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816694.238743,'zms',0,13894,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816694.249310,'zms',0,13894,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816694.754561,'zms',0,13894,-2,'ERR','Terminating, last frame sent time 1510816694.254404 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816695.234637,'zmc_m1',0,13893,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510816695.238331,'zmc_m1',0,13893,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510816695.252950,'zmdc',NULL,1432,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510816697.202622,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816697.223117,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816697.262651,'zms',0,13895,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816697.265469,'zms',0,13895,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816697.767087,'zms',0,13895,-2,'ERR','Terminating, last frame sent time 1510816697.267013 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816700.181508,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816700.197503,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816700.231804,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816700.251483,'zms',0,13896,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816700.254245,'zms',0,13896,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816700.757264,'zms',0,13896,-2,'ERR','Terminating, last frame sent time 1510816700.257147 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816703.203113,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816703.222964,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816703.262817,'zms',0,13897,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816703.268676,'zms',0,13897,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816703.773154,'zms',0,13897,-2,'ERR','Terminating, last frame sent time 1510816703.272985 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816706.184509,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816706.196982,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816706.233086,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816706.239585,'zms',0,13898,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816706.242331,'zms',0,13898,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816706.744970,'zms',0,13898,-2,'ERR','Terminating, last frame sent time 1510816706.244820 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816709.202489,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816709.225162,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816709.264903,'zms',0,13899,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816709.267657,'zms',0,13899,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816709.770630,'zms',0,13899,-2,'ERR','Terminating, last frame sent time 1510816709.270544 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816712.185887,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816712.212232,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816712.228986,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816712.251986,'zms',0,13900,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816712.254995,'zms',0,13900,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816712.757727,'zms',0,13900,-2,'ERR','Terminating, last frame sent time 1510816712.257610 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816715.214806,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816715.235029,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816715.279798,'zms',0,13901,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816715.282470,'zms',0,13901,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816715.785408,'zms',0,13901,-2,'ERR','Terminating, last frame sent time 1510816715.285248 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816718.185319,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816718.197547,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816718.237726,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816718.238198,'zms',0,13902,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816718.242859,'zms',0,13902,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816718.745646,'zms',0,13902,-2,'ERR','Terminating, last frame sent time 1510816718.245506 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816721.206597,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816721.217301,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816721.256010,'zms',0,13909,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816721.258828,'zms',0,13909,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816721.761611,'zms',0,13909,-2,'ERR','Terminating, last frame sent time 1510816721.261437 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816724.186291,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816724.213145,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816724.228630,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816724.269406,'zms',0,13914,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816724.272251,'zms',0,13914,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816724.775056,'zms',0,13914,-2,'ERR','Terminating, last frame sent time 1510816724.274902 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816727.213470,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816727.233521,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816727.273817,'zms',0,13917,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816727.276919,'zms',0,13917,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816727.779695,'zms',0,13917,-2,'ERR','Terminating, last frame sent time 1510816727.279542 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816730.185328,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816730.196960,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816730.242114,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816730.247213,'zms',0,13918,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816730.250346,'zms',0,13918,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816730.752991,'zms',0,13918,-2,'ERR','Terminating, last frame sent time 1510816730.252908 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816733.207572,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816733.224055,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816733.264357,'zms',0,13919,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816733.267340,'zms',0,13919,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816733.770322,'zms',0,13919,-2,'ERR','Terminating, last frame sent time 1510816733.270196 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816736.191318,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816736.215924,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816736.234684,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816736.255669,'zms',0,13920,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816736.258428,'zms',0,13920,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816736.762686,'zms',0,13920,-2,'ERR','Terminating, last frame sent time 1510816736.262530 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816739.218060,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816739.233987,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816739.274839,'zms',0,13921,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816739.278185,'zms',0,13921,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816739.779735,'zms',0,13921,-2,'ERR','Terminating, last frame sent time 1510816739.279611 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816742.191880,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816742.210058,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816742.245843,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816742.248971,'zms',0,13922,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816742.251728,'zms',0,13922,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816742.754625,'zms',0,13922,-2,'ERR','Terminating, last frame sent time 1510816742.254459 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816745.220742,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816745.238482,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816745.278161,'zms',0,13924,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816745.280808,'zms',0,13924,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816745.783668,'zms',0,13924,-2,'ERR','Terminating, last frame sent time 1510816745.283586 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816748.187914,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816748.200069,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816748.240086,'zms',0,13925,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816748.242954,'zms',0,13925,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816748.746365,'zms',0,13925,-2,'ERR','Terminating, last frame sent time 1510816748.246215 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816751.204438,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816751.222504,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816751.250141,'web_php',NULL,9994,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816751.261997,'zms',0,13926,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816751.264505,'zms',0,13926,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816751.767459,'zms',0,13926,-2,'ERR','Terminating, last frame sent time 1510816751.267385 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816754.189990,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816754.201424,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816754.231337,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816754.241452,'zms',0,13927,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816754.244532,'zms',0,13927,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816754.747628,'zms',0,13927,-2,'ERR','Terminating, last frame sent time 1510816754.247468 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816757.211579,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816757.232210,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816757.272421,'zms',0,13928,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816757.277606,'zms',0,13928,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816757.783021,'zms',0,13928,-2,'ERR','Terminating, last frame sent time 1510816757.282861 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816760.192281,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816760.217661,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816760.236718,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816760.273305,'zms',0,13929,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816760.278675,'zms',0,13929,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816760.784253,'zms',0,13929,-2,'ERR','Terminating, last frame sent time 1510816760.284169 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816763.214950,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816763.235569,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816763.275851,'zms',0,13930,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816763.281079,'zms',0,13930,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816763.786041,'zms',0,13930,-2,'ERR','Terminating, last frame sent time 1510816763.285906 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816766.187898,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816766.204457,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816766.242422,'zms',0,13931,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816766.247365,'zms',0,13931,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816766.250916,'zms',0,13931,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816766.754066,'zms',0,13931,-2,'ERR','Terminating, last frame sent time 1510816766.250896 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816769.211432,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816769.235963,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816769.246494,'web_php',NULL,10569,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816769.274859,'zms',0,13932,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816769.281286,'zms',0,13932,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816769.786269,'zms',0,13932,-2,'ERR','Terminating, last frame sent time 1510816769.286111 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816772.194690,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816772.218393,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816772.239549,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816772.258566,'zms',0,13933,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816772.261857,'zms',0,13933,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816772.763561,'zms',0,13933,-2,'ERR','Terminating, last frame sent time 1510816772.263423 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816775.227292,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816775.246306,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816775.286412,'zms',0,13934,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816775.289136,'zms',0,13934,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816775.790918,'zms',0,13934,-2,'ERR','Terminating, last frame sent time 1510816775.290762 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816778.191768,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816778.215569,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816778.253272,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816778.255014,'zms',0,13935,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816778.258442,'zms',0,13935,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816778.761031,'zms',0,13935,-2,'ERR','Terminating, last frame sent time 1510816778.260878 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816781.218246,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816781.238772,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816781.277964,'zms',0,13936,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816781.283929,'zms',0,13936,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816781.786953,'zms',0,13936,-2,'ERR','Terminating, last frame sent time 1510816781.286890 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816784.195450,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816784.214510,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816784.246099,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816784.252377,'zms',0,13946,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816784.257346,'zms',0,13946,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816784.762659,'zms',0,13946,-2,'ERR','Terminating, last frame sent time 1510816784.262505 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816787.222974,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816787.242078,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816787.283487,'zms',0,13949,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816787.289202,'zms',0,13949,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816787.794048,'zms',0,13949,-2,'ERR','Terminating, last frame sent time 1510816787.293910 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816790.197628,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816790.219850,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816790.253237,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816790.261678,'zms',0,13950,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816790.267521,'zms',0,13950,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816790.773261,'zms',0,13950,-2,'ERR','Terminating, last frame sent time 1510816790.273107 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816793.227425,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816793.245956,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816793.286137,'zms',0,13951,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816793.291071,'zms',0,13951,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816793.796742,'zms',0,13951,-2,'ERR','Terminating, last frame sent time 1510816793.296586 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816796.193574,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816796.208943,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816796.248503,'zms',0,13952,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816796.253760,'zms',0,13952,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816796.258972,'zms',0,13952,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816796.772308,'zms',0,13952,-2,'ERR','Terminating, last frame sent time 1510816796.258957 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816799.218533,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816799.237461,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816799.261825,'web_php',NULL,9991,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816799.277162,'zms',0,13953,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816799.282640,'zms',0,13953,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816799.788168,'zms',0,13953,-2,'ERR','Terminating, last frame sent time 1510816799.288017 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816802.196406,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816802.212248,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816802.247681,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816802.259469,'zms',0,13954,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816802.264419,'zms',0,13954,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816802.769563,'zms',0,13954,-2,'ERR','Terminating, last frame sent time 1510816802.269411 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816805.220655,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816805.239243,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816805.279048,'zms',0,13956,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816805.282406,'zms',0,13956,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816805.784951,'zms',0,13956,-2,'ERR','Terminating, last frame sent time 1510816805.284816 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816808.201754,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816808.225060,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816808.246817,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816808.275362,'zms',0,13957,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816808.277962,'zms',0,13957,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816808.779388,'zms',0,13957,-2,'ERR','Terminating, last frame sent time 1510816808.279235 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816811.222729,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816811.241463,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816811.280978,'zms',0,13958,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816811.284161,'zms',0,13958,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816811.787665,'zms',0,13958,-2,'ERR','Terminating, last frame sent time 1510816811.287508 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816814.202189,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816814.225762,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816814.249385,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816814.264690,'zms',0,13959,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816814.267720,'zms',0,13959,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816814.770573,'zms',0,13959,-2,'ERR','Terminating, last frame sent time 1510816814.270487 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816817.227558,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816817.246259,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816817.286657,'zms',0,13960,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816817.289418,'zms',0,13960,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816817.791256,'zms',0,13960,-2,'ERR','Terminating, last frame sent time 1510816817.291102 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816820.203535,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816820.220182,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816820.255583,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816820.259860,'zms',0,13961,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816820.262727,'zms',0,13961,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816820.766124,'zms',0,13961,-2,'ERR','Terminating, last frame sent time 1510816820.265985 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816823.228793,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816823.247510,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816823.285467,'zms',0,13962,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816823.287965,'zms',0,13962,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816823.790715,'zms',0,13962,-2,'ERR','Terminating, last frame sent time 1510816823.290560 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816826.199600,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816826.212726,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816826.253160,'zms',0,13963,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816826.255922,'zms',0,13963,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816826.258636,'zms',0,13963,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816826.761518,'zms',0,13963,-2,'ERR','Terminating, last frame sent time 1510816826.258626 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816829.221689,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816829.245791,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816829.258605,'web_php',NULL,9993,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816829.299132,'zms',0,13964,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816829.302078,'zms',0,13964,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816829.803847,'zms',0,13964,-2,'ERR','Terminating, last frame sent time 1510816829.303691 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816832.206924,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816832.231918,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816832.246750,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816832.284101,'zms',0,13965,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816832.289153,'zms',0,13965,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816832.794712,'zms',0,13965,-2,'ERR','Terminating, last frame sent time 1510816832.294552 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816835.231426,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816835.257687,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816835.297609,'zms',0,13966,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816835.302889,'zms',0,13966,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816835.808125,'zms',0,13966,-2,'ERR','Terminating, last frame sent time 1510816835.307968 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816838.207797,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816838.233957,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816838.259003,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816838.291459,'zms',0,13967,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816838.296447,'zms',0,13967,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816838.802076,'zms',0,13967,-2,'ERR','Terminating, last frame sent time 1510816838.301925 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816841.231400,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816841.251074,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816841.290750,'zms',0,13968,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816841.295598,'zms',0,13968,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816841.801256,'zms',0,13968,-2,'ERR','Terminating, last frame sent time 1510816841.301157 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816844.201877,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816844.221046,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816844.258965,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816844.260969,'zms',0,13979,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816844.269314,'zms',0,13979,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816844.775148,'zms',0,13979,-2,'ERR','Terminating, last frame sent time 1510816844.274989 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816847.228195,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816847.247848,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816847.287120,'zms',0,13982,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816847.291848,'zms',0,13982,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816847.798261,'zms',0,13982,-2,'ERR','Terminating, last frame sent time 1510816847.298108 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816850.210678,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816850.239958,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816850.259145,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816850.296319,'zms',0,13983,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816850.301885,'zms',0,13983,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816850.805837,'zms',0,13983,-2,'ERR','Terminating, last frame sent time 1510816850.305677 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816853.240597,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816853.256627,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816853.296305,'zms',0,13984,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816853.299111,'zms',0,13984,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816853.801826,'zms',0,13984,-2,'ERR','Terminating, last frame sent time 1510816853.301674 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816856.211335,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816856.227692,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816856.267103,'zms',0,13985,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816856.270127,'zms',0,13985,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816856.271680,'zms',0,13985,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816856.775094,'zms',0,13985,-2,'ERR','Terminating, last frame sent time 1510816856.271662 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816859.235701,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816859.251913,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816859.270392,'web_php',NULL,10566,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816859.291895,'zms',0,13986,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816859.295188,'zms',0,13986,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816859.798492,'zms',0,13986,-2,'ERR','Terminating, last frame sent time 1510816859.298336 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816862.207461,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816862.233010,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816862.258155,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816862.271591,'zms',0,13987,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816862.277052,'zms',0,13987,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816862.781470,'zms',0,13987,-2,'ERR','Terminating, last frame sent time 1510816862.281383 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816865.235510,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816865.255442,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816865.297869,'zms',0,13989,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816865.302941,'zms',0,13989,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816865.805644,'zms',0,13989,-2,'ERR','Terminating, last frame sent time 1510816865.305493 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816868.215030,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816868.233346,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816868.263744,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816868.275132,'zms',0,13990,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816868.280843,'zms',0,13990,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816868.785533,'zms',0,13990,-2,'ERR','Terminating, last frame sent time 1510816868.285379 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816871.243555,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816871.261831,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816871.301265,'zms',0,13991,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816871.307997,'zms',0,13991,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816871.813812,'zms',0,13991,-2,'ERR','Terminating, last frame sent time 1510816871.313658 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816874.215773,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816874.241651,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816874.269591,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816874.301074,'zms',0,13992,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816874.306660,'zms',0,13992,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816874.811126,'zms',0,13992,-2,'ERR','Terminating, last frame sent time 1510816874.310976 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816877.243661,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816877.263119,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816877.302116,'zms',0,13993,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816877.307162,'zms',0,13993,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816877.811679,'zms',0,13993,-2,'ERR','Terminating, last frame sent time 1510816877.311520 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816880.216842,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816880.244342,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816880.270746,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816880.301183,'zms',0,13994,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816880.306074,'zms',0,13994,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816880.810569,'zms',0,13994,-2,'ERR','Terminating, last frame sent time 1510816880.310400 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816883.241925,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816883.262056,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816883.302088,'zms',0,13995,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816883.307112,'zms',0,13995,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816883.812713,'zms',0,13995,-2,'ERR','Terminating, last frame sent time 1510816883.312509 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816886.218312,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816886.239031,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816886.269937,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816886.277688,'zms',0,13996,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816886.283949,'zms',0,13996,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816886.790899,'zms',0,13996,-2,'ERR','Terminating, last frame sent time 1510816886.290747 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816889.247707,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816889.265443,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816889.305431,'zms',0,13997,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816889.309912,'zms',0,13997,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816889.812998,'zms',0,13997,-2,'ERR','Terminating, last frame sent time 1510816889.312841 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816892.219129,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816892.244923,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816892.275254,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816892.302927,'zms',0,13998,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816892.308679,'zms',0,13998,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816892.814167,'zms',0,13998,-2,'ERR','Terminating, last frame sent time 1510816892.314016 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816895.246902,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816895.267792,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816895.307704,'zms',0,13999,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816895.312929,'zms',0,13999,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816895.818602,'zms',0,13999,-2,'ERR','Terminating, last frame sent time 1510816895.318470 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816898.220849,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816898.245822,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816898.274488,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816898.302462,'zms',0,14000,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816898.308393,'zms',0,14000,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816898.814013,'zms',0,14000,-2,'ERR','Terminating, last frame sent time 1510816898.313862 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816901.245855,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816901.262099,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816901.302043,'zms',0,14001,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816901.304716,'zms',0,14001,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816901.810074,'zms',0,14001,-2,'ERR','Terminating, last frame sent time 1510816901.309918 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816904.222330,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816904.246169,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816904.262812,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816904.285812,'zms',0,14011,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816904.288922,'zms',0,14011,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816904.791936,'zms',0,14011,-2,'ERR','Terminating, last frame sent time 1510816904.291780 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816907.247488,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816907.264107,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816907.305223,'zms',0,14014,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816907.308212,'zms',0,14014,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816907.811226,'zms',0,14014,-2,'ERR','Terminating, last frame sent time 1510816907.311069 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816910.222441,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816910.246567,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816910.270340,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816910.285130,'zms',0,14015,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816910.288053,'zms',0,14015,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816910.790914,'zms',0,14015,-2,'ERR','Terminating, last frame sent time 1510816910.290765 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816913.252001,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816913.272598,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816913.312454,'zms',0,14018,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816913.315708,'zms',0,14018,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816913.818837,'zms',0,14018,-2,'ERR','Terminating, last frame sent time 1510816913.318721 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816916.225177,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816916.243999,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816916.280843,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816916.286581,'zms',0,14019,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816916.291915,'zms',0,14019,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816916.797335,'zms',0,14019,-2,'ERR','Terminating, last frame sent time 1510816916.297259 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816919.257252,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816919.278137,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816919.317843,'zms',0,14020,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816919.324320,'zms',0,14020,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816919.830553,'zms',0,14020,-2,'ERR','Terminating, last frame sent time 1510816919.330396 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816922.227646,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816922.243176,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816922.281900,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816922.283363,'zms',0,14021,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816922.288792,'zms',0,14021,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816922.794421,'zms',0,14021,-2,'ERR','Terminating, last frame sent time 1510816922.294269 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816925.253995,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816925.270640,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816925.310001,'zms',0,14023,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816925.312844,'zms',0,14023,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816925.818185,'zms',0,14023,-2,'ERR','Terminating, last frame sent time 1510816925.318028 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816928.224942,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816928.236148,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816928.276695,'zms',0,14024,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816928.279641,'zms',0,14024,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816928.282436,'zms',0,14024,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510816928.785634,'zms',0,14024,-2,'ERR','Terminating, last frame sent time 1510816928.282425 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816931.242964,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816931.260935,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816931.284430,'web_php',NULL,9991,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816931.300434,'zms',0,14025,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816931.303099,'zms',0,14025,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816931.805996,'zms',0,14025,-2,'ERR','Terminating, last frame sent time 1510816931.305844 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816934.229671,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816934.249179,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816934.266611,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816934.291828,'zms',0,14026,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816934.294760,'zms',0,14026,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816934.798216,'zms',0,14026,-2,'ERR','Terminating, last frame sent time 1510816934.298061 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816937.258002,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816937.278880,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816937.317863,'zms',0,14027,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816937.320928,'zms',0,14027,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816937.824382,'zms',0,14027,-2,'ERR','Terminating, last frame sent time 1510816937.324229 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816940.231555,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816940.257916,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816940.286079,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816940.313470,'zms',0,14028,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816940.316343,'zms',0,14028,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816940.819353,'zms',0,14028,-2,'ERR','Terminating, last frame sent time 1510816940.319195 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816943.259223,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816943.277161,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816943.316813,'zms',0,14029,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816943.322222,'zms',0,14029,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816943.825966,'zms',0,14029,-2,'ERR','Terminating, last frame sent time 1510816943.325810 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816946.232823,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816946.248944,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816946.282670,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816946.289228,'zms',0,14030,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816946.292178,'zms',0,14030,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816946.795271,'zms',0,14030,-2,'ERR','Terminating, last frame sent time 1510816946.295093 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816949.258747,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816949.276180,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816949.315794,'zms',0,14031,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816949.318808,'zms',0,14031,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816949.821616,'zms',0,14031,-2,'ERR','Terminating, last frame sent time 1510816949.321464 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816952.229291,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816952.246897,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816952.281527,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816952.286603,'zms',0,14032,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816952.289834,'zms',0,14032,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816952.791570,'zms',0,14032,-2,'ERR','Terminating, last frame sent time 1510816952.291414 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816955.253904,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816955.277008,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816955.316916,'zms',0,14033,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816955.321056,'zms',0,14033,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816955.824417,'zms',0,14033,-2,'ERR','Terminating, last frame sent time 1510816955.324264 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816958.235720,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816958.263676,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816958.283854,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816958.318472,'zms',0,14034,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816958.324525,'zms',0,14034,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816958.830286,'zms',0,14034,-2,'ERR','Terminating, last frame sent time 1510816958.330172 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816961.263800,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816961.284108,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816961.326932,'zms',0,14035,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816961.332440,'zms',0,14035,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816961.835322,'zms',0,14035,-2,'ERR','Terminating, last frame sent time 1510816961.335198 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816964.236349,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816964.256146,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816964.291477,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816964.296947,'zms',0,14046,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816964.299541,'zms',0,14046,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816964.802492,'zms',0,14046,-2,'ERR','Terminating, last frame sent time 1510816964.302341 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816967.264183,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816967.282845,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816967.322410,'zms',0,14049,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816967.326319,'zms',0,14049,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816967.829490,'zms',0,14049,-2,'ERR','Terminating, last frame sent time 1510816967.329332 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816970.237236,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816970.263351,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816970.291754,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816970.320803,'zms',0,14050,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816970.323342,'zms',0,14050,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816970.826107,'zms',0,14050,-2,'ERR','Terminating, last frame sent time 1510816970.326044 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816973.265484,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816973.282819,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816973.323398,'zms',0,14051,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816973.326918,'zms',0,14051,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816973.830325,'zms',0,14051,-2,'ERR','Terminating, last frame sent time 1510816973.330189 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816976.232392,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816976.245920,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816976.286697,'zms',0,14052,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816976.290114,'zms',0,14052,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816976.791484,'zms',0,14052,-2,'ERR','Terminating, last frame sent time 1510816976.291328 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816979.256812,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816979.277554,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816979.295728,'web_php',NULL,9989,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816979.321837,'zms',0,14053,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816979.325050,'zms',0,14053,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816979.827895,'zms',0,14053,-2,'ERR','Terminating, last frame sent time 1510816979.327734 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816982.240386,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816982.255467,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816982.287558,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816982.295307,'zms',0,14054,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816982.298728,'zms',0,14054,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816982.801713,'zms',0,14054,-2,'ERR','Terminating, last frame sent time 1510816982.301555 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816985.267714,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816985.289665,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816985.329497,'zms',0,14056,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816985.332803,'zms',0,14056,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816985.835668,'zms',0,14056,-2,'ERR','Terminating, last frame sent time 1510816985.335534 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816988.235534,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816988.249364,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816988.289352,'zms',0,14057,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816988.292668,'zms',0,14057,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816988.795339,'zms',0,14057,-2,'ERR','Terminating, last frame sent time 1510816988.295181 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816991.258441,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816991.276717,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816991.298617,'web_php',NULL,10566,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816991.316652,'zms',0,14058,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816991.319405,'zms',0,14058,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816991.822182,'zms',0,14058,-2,'ERR','Terminating, last frame sent time 1510816991.322029 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816994.240795,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816994.269109,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510816994.287849,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816994.322440,'zms',0,14059,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816994.327990,'zms',0,14059,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816994.831403,'zms',0,14059,-2,'ERR','Terminating, last frame sent time 1510816994.331248 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510816997.269967,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510816997.290119,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510816997.329915,'zms',0,14060,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510816997.335314,'zms',0,14060,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510816997.841073,'zms',0,14060,-2,'ERR','Terminating, last frame sent time 1510816997.340921 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817000.242485,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817000.262081,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817000.298693,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817000.300612,'zms',0,14061,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817000.309455,'zms',0,14061,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817000.815362,'zms',0,14061,-2,'ERR','Terminating, last frame sent time 1510817000.315206 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817003.268207,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817003.286687,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817003.326075,'zms',0,14062,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817003.328785,'zms',0,14062,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817003.831931,'zms',0,14062,-2,'ERR','Terminating, last frame sent time 1510817003.331814 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817006.244326,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817006.274438,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817006.293706,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817006.331462,'zms',0,14063,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817006.335047,'zms',0,14063,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817006.838421,'zms',0,14063,-2,'ERR','Terminating, last frame sent time 1510817006.338290 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817009.273538,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817009.298777,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817009.356270,'zms',0,14064,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817009.360386,'zms',0,14064,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817009.863220,'zms',0,14064,-2,'ERR','Terminating, last frame sent time 1510817009.363072 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817012.242326,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817012.266913,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817012.300688,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817012.306767,'zms',0,14065,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817012.312824,'zms',0,14065,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817012.818554,'zms',0,14065,-2,'ERR','Terminating, last frame sent time 1510817012.318398 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817015.267506,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817015.287487,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817015.327206,'zms',0,14066,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817015.332545,'zms',0,14066,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817015.838198,'zms',0,14066,-2,'ERR','Terminating, last frame sent time 1510817015.338042 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817018.246661,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817018.271010,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817018.295287,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817018.309558,'zms',0,14067,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817018.315139,'zms',0,14067,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817018.820504,'zms',0,14067,-2,'ERR','Terminating, last frame sent time 1510817018.320346 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817021.269437,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817021.287966,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817021.327595,'zms',0,14068,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817021.332906,'zms',0,14068,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817021.838703,'zms',0,14068,-2,'ERR','Terminating, last frame sent time 1510817021.338545 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817024.247869,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817024.273493,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817024.291986,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817024.330218,'zms',0,14078,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817024.335752,'zms',0,14078,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817024.841483,'zms',0,14078,-2,'ERR','Terminating, last frame sent time 1510817024.341331 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817027.275438,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817027.292902,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817027.333570,'zms',0,14081,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817027.338068,'zms',0,14081,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817027.843681,'zms',0,14081,-2,'ERR','Terminating, last frame sent time 1510817027.343525 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817030.250768,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817030.269153,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817030.301836,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817030.308533,'zms',0,14082,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817030.313838,'zms',0,14082,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817030.817145,'zms',0,14082,-2,'ERR','Terminating, last frame sent time 1510817030.317013 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817033.277870,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817033.296558,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817033.337080,'zms',0,14083,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817033.342438,'zms',0,14083,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817033.848013,'zms',0,14083,-2,'ERR','Terminating, last frame sent time 1510817033.347856 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817036.250694,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817036.279084,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817036.307748,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817036.336907,'zms',0,14085,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817036.342295,'zms',0,14085,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817036.848175,'zms',0,14085,-2,'ERR','Terminating, last frame sent time 1510817036.348020 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817039.278156,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817039.297909,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817039.338389,'zms',0,14086,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817039.343583,'zms',0,14086,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817039.849492,'zms',0,14086,-2,'ERR','Terminating, last frame sent time 1510817039.349338 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817042.251841,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817042.267847,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817042.301296,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817042.308115,'zms',0,14087,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817042.312794,'zms',0,14087,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817042.818437,'zms',0,14087,-2,'ERR','Terminating, last frame sent time 1510817042.318285 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817045.278907,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817045.296340,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817045.335036,'zms',0,14089,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817045.339153,'zms',0,14089,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817045.844554,'zms',0,14089,-2,'ERR','Terminating, last frame sent time 1510817045.344423 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817048.252522,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817048.268104,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817048.306719,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817048.310727,'zms',0,14090,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817048.313693,'zms',0,14090,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817048.815163,'zms',0,14090,-2,'ERR','Terminating, last frame sent time 1510817048.315010 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817051.278325,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817051.297043,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817051.336802,'zms',0,14091,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817051.339877,'zms',0,14091,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817051.843362,'zms',0,14091,-2,'ERR','Terminating, last frame sent time 1510817051.343203 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817054.254364,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817054.278284,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817054.298733,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817054.337338,'zms',0,14092,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817054.342403,'zms',0,14092,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817054.848192,'zms',0,14092,-2,'ERR','Terminating, last frame sent time 1510817054.348073 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817057.279767,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817057.300124,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817057.339335,'zms',0,14093,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817057.344908,'zms',0,14093,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817057.850371,'zms',0,14093,-2,'ERR','Terminating, last frame sent time 1510817057.350211 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817060.255165,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817060.279461,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817060.308287,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817060.318216,'zms',0,14094,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817060.324254,'zms',0,14094,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817060.830313,'zms',0,14094,-2,'ERR','Terminating, last frame sent time 1510817060.330196 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817063.283761,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817063.304535,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817063.343946,'zms',0,14095,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817063.349907,'zms',0,14095,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817063.854996,'zms',0,14095,-2,'ERR','Terminating, last frame sent time 1510817063.354841 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817066.255603,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817066.274706,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817066.311735,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817066.314683,'zms',0,14096,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817066.322351,'zms',0,14096,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817066.828169,'zms',0,14096,-2,'ERR','Terminating, last frame sent time 1510817066.328009 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817069.284411,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817069.303925,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817069.342799,'zms',0,14097,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817069.347781,'zms',0,14097,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817069.853159,'zms',0,14097,-2,'ERR','Terminating, last frame sent time 1510817069.353004 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817072.256290,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817072.275459,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817072.311498,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817072.314574,'zms',0,14098,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817072.321821,'zms',0,14098,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817072.827633,'zms',0,14098,-2,'ERR','Terminating, last frame sent time 1510817072.327471 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817075.282164,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817075.301879,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817075.341171,'zms',0,14099,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817075.345981,'zms',0,14099,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817075.851817,'zms',0,14099,-2,'ERR','Terminating, last frame sent time 1510817075.351662 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817078.257287,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817078.282972,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817078.307754,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817078.341941,'zms',0,14100,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817078.347031,'zms',0,14100,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817078.852428,'zms',0,14100,-2,'ERR','Terminating, last frame sent time 1510817078.352289 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817081.284177,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817081.312187,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817081.367881,'zms',0,14101,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817081.372960,'zms',0,14101,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817081.878620,'zms',0,14101,-2,'ERR','Terminating, last frame sent time 1510817081.378461 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817084.260288,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817084.286648,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817084.312063,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817084.343496,'zms',0,14111,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817084.348914,'zms',0,14111,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817084.854660,'zms',0,14111,-2,'ERR','Terminating, last frame sent time 1510817084.354504 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817087.285805,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817087.309733,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817087.370246,'zms',0,14115,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817087.373322,'zms',0,14115,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817087.876512,'zms',0,14115,-2,'ERR','Terminating, last frame sent time 1510817087.376356 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817090.260907,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817090.279775,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817090.310828,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817090.319425,'zms',0,14116,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817090.322555,'zms',0,14116,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817090.825373,'zms',0,14116,-2,'ERR','Terminating, last frame sent time 1510817090.325219 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817093.287684,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817093.307164,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817093.346387,'zms',0,14117,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817093.351689,'zms',0,14117,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817093.856992,'zms',0,14117,-2,'ERR','Terminating, last frame sent time 1510817093.356833 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817096.256492,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817096.269735,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817096.317243,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817096.322009,'zms',0,14118,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817096.327548,'zms',0,14118,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817096.833435,'zms',0,14118,-2,'ERR','Terminating, last frame sent time 1510817096.333357 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817099.278870,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817099.297203,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817099.336584,'zms',0,14119,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817099.341533,'zms',0,14119,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817099.847349,'zms',0,14119,-2,'ERR','Terminating, last frame sent time 1510817099.347192 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817102.256299,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817102.278823,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817102.307531,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817102.317619,'zms',0,14120,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817102.322833,'zms',0,14120,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817102.828319,'zms',0,14120,-2,'ERR','Terminating, last frame sent time 1510817102.328163 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817105.282725,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817105.300580,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817105.340018,'zms',0,14122,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817105.344991,'zms',0,14122,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817105.850234,'zms',0,14122,-2,'ERR','Terminating, last frame sent time 1510817105.350100 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817108.262087,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817108.289570,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817108.306005,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817108.347011,'zms',0,14123,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817108.351986,'zms',0,14123,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817108.857560,'zms',0,14123,-2,'ERR','Terminating, last frame sent time 1510817108.357407 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817111.290109,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817111.311599,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817111.350654,'zms',0,14124,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817111.356067,'zms',0,14124,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817111.859245,'zms',0,14124,-2,'ERR','Terminating, last frame sent time 1510817111.359083 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817114.263146,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817114.279949,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817114.318582,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817114.319871,'zms',0,14125,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817114.322688,'zms',0,14125,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817114.825805,'zms',0,14125,-2,'ERR','Terminating, last frame sent time 1510817114.325723 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817117.287767,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817117.306404,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817117.346138,'zms',0,14126,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817117.349138,'zms',0,14126,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817117.851934,'zms',0,14126,-2,'ERR','Terminating, last frame sent time 1510817117.351803 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817120.262099,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817120.273913,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817120.313430,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817120.318797,'zms',0,14127,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817120.322000,'zms',0,14127,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817120.823568,'zms',0,14127,-2,'ERR','Terminating, last frame sent time 1510817120.323451 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817123.283410,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817123.301040,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817123.340993,'zms',0,14128,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817123.343863,'zms',0,14128,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817123.846780,'zms',0,14128,-2,'ERR','Terminating, last frame sent time 1510817123.346636 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817126.265404,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817126.289745,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817126.308808,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817126.346721,'zms',0,14129,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817126.349638,'zms',0,14129,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817126.851085,'zms',0,14129,-2,'ERR','Terminating, last frame sent time 1510817126.350997 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817129.291639,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817129.308822,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817129.348235,'zms',0,14130,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817129.351401,'zms',0,14130,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817129.854152,'zms',0,14130,-2,'ERR','Terminating, last frame sent time 1510817129.353992 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817132.267625,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817132.290127,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817132.313641,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817132.347173,'zms',0,14131,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817132.349752,'zms',0,14131,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817132.851590,'zms',0,14131,-2,'ERR','Terminating, last frame sent time 1510817132.351436 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817135.292660,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817135.310252,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817135.349938,'zms',0,14132,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817135.352373,'zms',0,14132,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817135.855156,'zms',0,14132,-2,'ERR','Terminating, last frame sent time 1510817135.355003 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817138.269092,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817138.292300,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817138.317535,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817138.348809,'zms',0,14133,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817138.351905,'zms',0,14133,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817138.854665,'zms',0,14133,-2,'ERR','Terminating, last frame sent time 1510817138.354507 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817141.294029,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817141.311132,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817141.350131,'zms',0,14134,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817141.355334,'zms',0,14134,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817141.860918,'zms',0,14134,-2,'ERR','Terminating, last frame sent time 1510817141.360766 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817144.270598,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817144.294408,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817144.320530,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817144.352272,'zms',0,14144,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817144.355301,'zms',0,14144,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817144.860996,'zms',0,14144,-2,'ERR','Terminating, last frame sent time 1510817144.360841 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817147.295633,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817147.313000,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817147.352367,'zms',0,14147,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817147.357250,'zms',0,14147,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817147.862954,'zms',0,14147,-2,'ERR','Terminating, last frame sent time 1510817147.362796 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817150.272580,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817150.297326,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817150.321158,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817150.353210,'zms',0,14148,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817150.358819,'zms',0,14148,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817150.864252,'zms',0,14148,-2,'ERR','Terminating, last frame sent time 1510817150.364092 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817153.301538,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817153.320945,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817153.361197,'zms',0,14149,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817153.366711,'zms',0,14149,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817153.872498,'zms',0,14149,-2,'ERR','Terminating, last frame sent time 1510817153.372370 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817156.273489,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817156.291749,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817156.326644,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817156.337247,'zms',0,14150,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817156.343142,'zms',0,14150,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817156.848786,'zms',0,14150,-2,'ERR','Terminating, last frame sent time 1510817156.348631 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817159.298375,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817159.314712,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817159.354197,'zms',0,14151,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817159.359248,'zms',0,14151,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817159.864209,'zms',0,14151,-2,'ERR','Terminating, last frame sent time 1510817159.364052 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817162.274083,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817162.289070,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817162.326037,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817162.328317,'zms',0,14152,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817162.331387,'zms',0,14152,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817162.836679,'zms',0,14152,-2,'ERR','Terminating, last frame sent time 1510817162.336553 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817165.298033,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817165.315887,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817165.355710,'zms',0,14154,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817165.358835,'zms',0,14154,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817165.861472,'zms',0,14154,-2,'ERR','Terminating, last frame sent time 1510817165.361317 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817168.275102,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817168.298043,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817168.319429,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817168.336813,'zms',0,14155,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817168.339692,'zms',0,14155,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817168.842806,'zms',0,14155,-2,'ERR','Terminating, last frame sent time 1510817168.342647 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817171.300435,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817171.319192,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817171.359757,'zms',0,14156,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817171.365114,'zms',0,14156,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817171.870480,'zms',0,14156,-2,'ERR','Terminating, last frame sent time 1510817171.370351 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817174.271624,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817174.292715,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817174.327559,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817174.332449,'zms',0,14157,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817174.335140,'zms',0,14157,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817174.839512,'zms',0,14157,-2,'ERR','Terminating, last frame sent time 1510817174.339400 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817177.296708,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817177.314604,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817177.353772,'zms',0,14158,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817177.356272,'zms',0,14158,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817177.858725,'zms',0,14158,-2,'ERR','Terminating, last frame sent time 1510817177.358649 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817180.277860,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817180.302104,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817180.321876,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817180.358066,'zms',0,14159,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817180.361043,'zms',0,14159,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817180.863816,'zms',0,14159,-2,'ERR','Terminating, last frame sent time 1510817180.363664 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817183.301777,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817183.319180,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817183.366138,'zms',0,14160,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817183.369238,'zms',0,14160,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817183.872288,'zms',0,14160,-2,'ERR','Terminating, last frame sent time 1510817183.372132 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817186.278321,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817186.305306,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817186.327358,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817186.361135,'zms',0,14161,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817186.363792,'zms',0,14161,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817186.866815,'zms',0,14161,-2,'ERR','Terminating, last frame sent time 1510817186.366690 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817189.305110,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817189.323000,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817189.362837,'zms',0,14162,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817189.365588,'zms',0,14162,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817189.867278,'zms',0,14162,-2,'ERR','Terminating, last frame sent time 1510817189.367136 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817192.279984,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817192.296783,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817192.330302,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817192.336359,'zms',0,14163,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817192.339406,'zms',0,14163,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817192.842571,'zms',0,14163,-2,'ERR','Terminating, last frame sent time 1510817192.342437 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817195.305689,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817195.323094,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817195.361662,'zms',0,14164,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817195.364869,'zms',0,14164,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817195.867728,'zms',0,14164,-2,'ERR','Terminating, last frame sent time 1510817195.367604 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817198.281282,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817198.305756,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817198.325559,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817198.359305,'zms',0,14165,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817198.365745,'zms',0,14165,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817198.872951,'zms',0,14165,-2,'ERR','Terminating, last frame sent time 1510817198.372795 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817201.306251,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817201.324094,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817201.363003,'zms',0,14166,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817201.366430,'zms',0,14166,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817201.871692,'zms',0,14166,-2,'ERR','Terminating, last frame sent time 1510817201.371539 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817204.281328,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817204.304910,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817204.327414,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817204.362956,'zms',0,14177,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817204.366391,'zms',0,14177,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817204.869445,'zms',0,14177,-2,'ERR','Terminating, last frame sent time 1510817204.369292 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817207.302359,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817207.320389,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817207.366472,'zms',0,14180,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817207.369142,'zms',0,14180,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817207.870742,'zms',0,14180,-2,'ERR','Terminating, last frame sent time 1510817207.370622 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817210.284344,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817210.301528,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817210.327237,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817210.342939,'zms',0,14181,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817210.348043,'zms',0,14181,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817210.853157,'zms',0,14181,-2,'ERR','Terminating, last frame sent time 1510817210.353024 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817213.307178,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817213.328223,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817213.367765,'zms',0,14185,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817213.373525,'zms',0,14185,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817213.879717,'zms',0,14185,-2,'ERR','Terminating, last frame sent time 1510817213.379568 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817216.285687,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817216.310573,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817216.334460,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817216.349513,'zms',0,14186,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817216.354857,'zms',0,14186,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817216.860238,'zms',0,14186,-2,'ERR','Terminating, last frame sent time 1510817216.360086 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817219.313571,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817219.332443,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817219.372914,'zms',0,14187,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817219.378219,'zms',0,14187,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817219.883939,'zms',0,14187,-2,'ERR','Terminating, last frame sent time 1510817219.383785 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817222.285908,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817222.306136,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817222.339602,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817222.345685,'zms',0,14188,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817222.350701,'zms',0,14188,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817222.856055,'zms',0,14188,-2,'ERR','Terminating, last frame sent time 1510817222.355903 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817225.314938,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817225.336258,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817225.375409,'zms',0,14190,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817225.380967,'zms',0,14190,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817225.886944,'zms',0,14190,-2,'ERR','Terminating, last frame sent time 1510817225.386790 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817228.286993,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817228.300945,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817228.335104,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817228.342290,'zms',0,14191,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817228.347459,'zms',0,14191,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817228.852770,'zms',0,14191,-2,'ERR','Terminating, last frame sent time 1510817228.352615 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817231.310983,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817231.331136,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817231.370372,'zms',0,14192,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817231.376146,'zms',0,14192,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817231.882078,'zms',0,14192,-2,'ERR','Terminating, last frame sent time 1510817231.381924 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817234.287057,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817234.306077,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817234.339756,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817234.345812,'zms',0,14193,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817234.350650,'zms',0,14193,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817234.856249,'zms',0,14193,-2,'ERR','Terminating, last frame sent time 1510817234.356093 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817237.313321,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817237.333070,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817237.372945,'zms',0,14194,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817237.379008,'zms',0,14194,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817237.884864,'zms',0,14194,-2,'ERR','Terminating, last frame sent time 1510817237.384732 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817240.290743,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817240.307957,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817240.341737,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817240.346699,'zms',0,14195,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817240.351776,'zms',0,14195,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817240.857384,'zms',0,14195,-2,'ERR','Terminating, last frame sent time 1510817240.357244 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817243.315980,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817243.333039,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817243.373115,'zms',0,14196,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817243.378081,'zms',0,14196,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817243.883369,'zms',0,14196,-2,'ERR','Terminating, last frame sent time 1510817243.383217 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817246.291802,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817246.314980,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817246.340577,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817246.375269,'zms',0,14197,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817246.378390,'zms',0,14197,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817246.881815,'zms',0,14197,-2,'ERR','Terminating, last frame sent time 1510817246.381663 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817249.317636,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817249.333567,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817249.376714,'zms',0,14198,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817249.380091,'zms',0,14198,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817249.883027,'zms',0,14198,-2,'ERR','Terminating, last frame sent time 1510817249.382874 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817252.292938,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817252.315718,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817252.341841,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817252.355144,'zms',0,14199,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817252.358054,'zms',0,14199,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817252.859641,'zms',0,14199,-2,'ERR','Terminating, last frame sent time 1510817252.359480 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817255.319497,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817255.337159,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817255.379666,'zms',0,14200,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817255.385031,'zms',0,14200,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817255.890569,'zms',0,14200,-2,'ERR','Terminating, last frame sent time 1510817255.390505 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817258.295673,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817258.312305,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817258.344287,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817258.351001,'zms',0,14201,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817258.354264,'zms',0,14201,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817258.855736,'zms',0,14201,-2,'ERR','Terminating, last frame sent time 1510817258.355604 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817261.320383,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817261.338963,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817261.378253,'zms',0,14202,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817261.383936,'zms',0,14202,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817261.891070,'zms',0,14202,-2,'ERR','Terminating, last frame sent time 1510817261.390945 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817264.288248,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817264.301986,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817264.337713,'zms',0,14208,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817264.344551,'zms',0,14208,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817264.351217,'zms',0,14208,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510817264.858184,'zms',0,14208,-2,'ERR','Terminating, last frame sent time 1510817264.351204 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817267.313570,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817267.334400,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817267.350546,'web_php',NULL,10569,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817267.380892,'zms',0,14215,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817267.388281,'zms',0,14215,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817267.895501,'zms',0,14215,-2,'ERR','Terminating, last frame sent time 1510817267.395378 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817270.298888,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817270.327795,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817270.341848,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817270.386058,'zms',0,14216,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817270.391342,'zms',0,14216,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817270.896907,'zms',0,14216,-2,'ERR','Terminating, last frame sent time 1510817270.396777 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817273.330029,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817273.349981,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817273.389930,'zms',0,14217,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817273.396617,'zms',0,14217,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817273.901330,'zms',0,14217,-2,'ERR','Terminating, last frame sent time 1510817273.401206 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817276.296149,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817276.311934,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817276.351377,'zms',0,14218,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817276.357417,'zms',0,14218,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817276.363135,'zms',0,14218,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510817276.869317,'zms',0,14218,-2,'ERR','Terminating, last frame sent time 1510817276.363117 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817279.316585,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817279.341647,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817279.357885,'web_php',NULL,9991,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817279.381434,'zms',0,14219,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817279.384714,'zms',0,14219,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817279.887942,'zms',0,14219,-2,'ERR','Terminating, last frame sent time 1510817279.387786 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817282.293229,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817282.316633,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817282.352098,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817282.355674,'zms',0,14220,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817282.358695,'zms',0,14220,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817282.864796,'zms',0,14220,-2,'ERR','Terminating, last frame sent time 1510817282.364639 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817285.315917,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817285.334185,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817285.374057,'zms',0,14222,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817285.377160,'zms',0,14222,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817285.880522,'zms',0,14222,-2,'ERR','Terminating, last frame sent time 1510817285.380369 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817288.295663,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817288.308835,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817288.342254,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817288.347823,'zms',0,14223,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817288.350759,'zms',0,14223,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817288.853677,'zms',0,14223,-2,'ERR','Terminating, last frame sent time 1510817288.353560 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817291.319415,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817291.339418,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817291.379162,'zms',0,14224,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817291.382409,'zms',0,14224,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817291.885512,'zms',0,14224,-2,'ERR','Terminating, last frame sent time 1510817291.385381 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817294.300029,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817294.316195,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817294.343072,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817294.368943,'zms',0,14225,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817294.371618,'zms',0,14225,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817294.874819,'zms',0,14225,-2,'ERR','Terminating, last frame sent time 1510817294.374705 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817295.078810,'zmdc',NULL,1432,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510817295.085620,'zmdc',NULL,1432,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:28:15, pid = 14226','zmdc.pl',NULL),(1510817295.085720,'zmdc',NULL,14226,0,'INF','\'zmc -m 1\' started at 17/11/16 09:28:15','zmdc.pl',NULL),(1510817295.216975,'zmc_m1',0,14226,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510817297.323789,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817297.342986,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817297.383066,'zms',0,14228,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817297.386003,'zms',0,14228,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817297.887738,'zms',0,14228,-2,'ERR','Terminating, last frame sent time 1510817297.387588 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817298.178702,'zmc_m1',0,14227,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510817298.185103,'zmc_m1',0,14227,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510817298.202510,'zmdc',NULL,1432,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510817300.305702,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817300.329829,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817300.350310,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817300.377051,'zms',0,14229,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817300.382424,'zms',0,14229,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817300.887957,'zms',0,14229,-2,'ERR','Terminating, last frame sent time 1510817300.387802 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817303.331364,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817303.351554,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817303.391163,'zms',0,14230,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817303.396264,'zms',0,14230,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817303.902179,'zms',0,14230,-2,'ERR','Terminating, last frame sent time 1510817303.402014 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817306.305663,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817306.328426,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817306.359460,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817306.380248,'zms',0,14231,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817306.384521,'zms',0,14231,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817306.890344,'zms',0,14231,-2,'ERR','Terminating, last frame sent time 1510817306.390191 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817309.330160,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817309.348107,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817309.387666,'zms',0,14232,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817309.393032,'zms',0,14232,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817309.898435,'zms',0,14232,-2,'ERR','Terminating, last frame sent time 1510817309.398278 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817312.307013,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817312.329736,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817312.355337,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817312.387234,'zms',0,14233,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817312.392287,'zms',0,14233,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817312.898089,'zms',0,14233,-2,'ERR','Terminating, last frame sent time 1510817312.397932 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817315.331608,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817315.349344,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817315.389533,'zms',0,14234,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817315.392676,'zms',0,14234,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817315.896913,'zms',0,14234,-2,'ERR','Terminating, last frame sent time 1510817315.396757 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817318.308758,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817318.326030,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817318.357160,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817318.365781,'zms',0,14235,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817318.368506,'zms',0,14235,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817318.871505,'zms',0,14235,-2,'ERR','Terminating, last frame sent time 1510817318.371349 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817321.333667,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817321.351666,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817321.391439,'zms',0,14236,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817321.394435,'zms',0,14236,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817321.898029,'zms',0,14236,-2,'ERR','Terminating, last frame sent time 1510817321.397873 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817324.311167,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817324.329243,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817324.356923,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817324.369965,'zms',0,14238,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817324.372893,'zms',0,14238,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817324.875630,'zms',0,14238,-2,'ERR','Terminating, last frame sent time 1510817324.375565 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817327.337505,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817327.357392,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817327.394867,'zms',0,14250,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817327.397599,'zms',0,14250,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817327.898972,'zms',0,14250,-2,'ERR','Terminating, last frame sent time 1510817327.398820 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817330.311208,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817330.332406,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817330.362680,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817330.371166,'zms',0,14251,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817330.373843,'zms',0,14251,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817330.875246,'zms',0,14251,-2,'ERR','Terminating, last frame sent time 1510817330.375086 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817333.340854,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817333.360610,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817333.400034,'zms',0,14252,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817333.402654,'zms',0,14252,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817333.905279,'zms',0,14252,-2,'ERR','Terminating, last frame sent time 1510817333.405125 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817336.313224,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817336.341293,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817336.369822,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817336.398245,'zms',0,14253,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817336.401504,'zms',0,14253,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817336.904814,'zms',0,14253,-2,'ERR','Terminating, last frame sent time 1510817336.404660 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817339.341678,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817339.358615,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817339.398927,'zms',0,14254,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817339.401645,'zms',0,14254,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817339.902956,'zms',0,14254,-2,'ERR','Terminating, last frame sent time 1510817339.402802 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817342.313816,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817342.339783,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817342.370873,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817342.397603,'zms',0,14255,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817342.400228,'zms',0,14255,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817342.902810,'zms',0,14255,-2,'ERR','Terminating, last frame sent time 1510817342.402658 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817345.341347,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817345.356632,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817345.397114,'zms',0,14257,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817345.399829,'zms',0,14257,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817345.902920,'zms',0,14257,-2,'ERR','Terminating, last frame sent time 1510817345.402765 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817348.316799,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817348.334262,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817348.368713,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817348.373933,'zms',0,14258,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817348.376973,'zms',0,14258,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817348.879866,'zms',0,14258,-2,'ERR','Terminating, last frame sent time 1510817348.379710 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817351.341870,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817351.360586,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817351.399706,'zms',0,14259,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817351.404992,'zms',0,14259,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817351.910392,'zms',0,14259,-2,'ERR','Terminating, last frame sent time 1510817351.410234 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817354.309842,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817354.322860,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817354.362293,'zms',0,14260,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817354.365277,'zms',0,14260,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817354.368094,'zms',0,14260,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510817354.874068,'zms',0,14260,-2,'ERR','Terminating, last frame sent time 1510817354.368074 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817357.330782,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817357.348503,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817357.366492,'web_php',NULL,9990,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817357.387793,'zms',0,14261,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817357.392950,'zms',0,14261,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817357.898592,'zms',0,14261,-2,'ERR','Terminating, last frame sent time 1510817357.398435 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817360.317010,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817360.340298,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817360.358809,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817360.396981,'zms',0,14262,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817360.402747,'zms',0,14262,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817360.908388,'zms',0,14262,-2,'ERR','Terminating, last frame sent time 1510817360.408232 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817363.338111,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817363.356765,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817363.402132,'zms',0,14263,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817363.407362,'zms',0,14263,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817363.913414,'zms',0,14263,-2,'ERR','Terminating, last frame sent time 1510817363.413255 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817366.312477,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817366.337667,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817366.362286,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817366.396535,'zms',0,14264,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817366.399478,'zms',0,14264,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817366.902357,'zms',0,14264,-2,'ERR','Terminating, last frame sent time 1510817366.402204 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817369.337327,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817369.363768,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817369.418962,'zms',0,14265,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817369.422576,'zms',0,14265,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817369.925532,'zms',0,14265,-2,'ERR','Terminating, last frame sent time 1510817369.425382 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817372.317882,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817372.343340,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817372.364320,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817372.402400,'zms',0,14266,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817372.405671,'zms',0,14266,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817372.907339,'zms',0,14266,-2,'ERR','Terminating, last frame sent time 1510817372.407185 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817375.345624,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817375.363105,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817375.403313,'zms',0,14267,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817375.406605,'zms',0,14267,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817375.909685,'zms',0,14267,-2,'ERR','Terminating, last frame sent time 1510817375.409531 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817378.318760,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817378.344447,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817378.371051,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817378.402929,'zms',0,14268,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817378.406325,'zms',0,14268,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817378.909751,'zms',0,14268,-2,'ERR','Terminating, last frame sent time 1510817378.409595 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817381.346003,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817381.370555,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817381.409886,'zms',0,14269,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817381.413328,'zms',0,14269,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817381.916459,'zms',0,14269,-2,'ERR','Terminating, last frame sent time 1510817381.416303 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817384.319744,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817384.345341,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817384.372814,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817384.402260,'zms',0,14270,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817384.405124,'zms',0,14270,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817384.908261,'zms',0,14270,-2,'ERR','Terminating, last frame sent time 1510817384.408165 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817387.347107,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817387.365408,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817387.405052,'zms',0,14282,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817387.407862,'zms',0,14282,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817387.910544,'zms',0,14282,-2,'ERR','Terminating, last frame sent time 1510817387.410463 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817390.321609,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817390.338280,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817390.370391,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817390.384009,'zms',0,14283,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817390.387332,'zms',0,14283,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817390.890579,'zms',0,14283,-2,'ERR','Terminating, last frame sent time 1510817390.390426 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817393.349839,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817393.368405,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817393.408084,'zms',0,14284,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817393.413133,'zms',0,14284,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817393.918716,'zms',0,14284,-2,'ERR','Terminating, last frame sent time 1510817393.418559 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817396.321968,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817396.348072,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817396.378561,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817396.403991,'zms',0,14285,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817396.410711,'zms',0,14285,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817396.917644,'zms',0,14285,-2,'ERR','Terminating, last frame sent time 1510817396.417518 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817399.348308,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817399.367285,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817399.407099,'zms',0,14286,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817399.412197,'zms',0,14286,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817399.917786,'zms',0,14286,-2,'ERR','Terminating, last frame sent time 1510817399.417654 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817402.324626,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817402.345064,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817402.374030,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817402.384338,'zms',0,14287,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817402.389593,'zms',0,14287,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817402.894340,'zms',0,14287,-2,'ERR','Terminating, last frame sent time 1510817402.394185 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817405.353856,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817405.374636,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817405.414222,'zms',0,14289,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817405.419542,'zms',0,14289,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817405.924085,'zms',0,14289,-2,'ERR','Terminating, last frame sent time 1510817405.423947 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817408.321329,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817408.337929,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817408.376952,'zms',0,14290,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817408.382123,'zms',0,14290,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817408.387709,'zms',0,14290,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510817408.892056,'zms',0,14290,-2,'ERR','Terminating, last frame sent time 1510817408.387686 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817411.346697,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817411.366877,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817411.382538,'web_php',NULL,9991,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817411.407318,'zms',0,14291,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817411.412717,'zms',0,14291,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817411.917196,'zms',0,14291,-2,'ERR','Terminating, last frame sent time 1510817411.417110 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817414.326273,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817414.345652,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817414.370814,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817414.384708,'zms',0,14292,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817414.390665,'zms',0,14292,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817414.896616,'zms',0,14292,-2,'ERR','Terminating, last frame sent time 1510817414.396460 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817417.353332,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817417.373494,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817417.413458,'zms',0,14293,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817417.418764,'zms',0,14293,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817417.924254,'zms',0,14293,-2,'ERR','Terminating, last frame sent time 1510817417.424101 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817420.327501,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817420.350207,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817420.377929,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817420.404167,'zms',0,14294,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817420.409496,'zms',0,14294,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817420.915383,'zms',0,14294,-2,'ERR','Terminating, last frame sent time 1510817420.415221 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817423.354550,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817423.374285,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817423.413656,'zms',0,14295,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817423.416715,'zms',0,14295,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817423.919723,'zms',0,14295,-2,'ERR','Terminating, last frame sent time 1510817423.419567 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817426.328106,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817426.345348,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817426.381432,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817426.385048,'zms',0,14296,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817426.387791,'zms',0,14296,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817426.890624,'zms',0,14296,-2,'ERR','Terminating, last frame sent time 1510817426.390474 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817429.353878,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817429.370725,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817429.410461,'zms',0,14297,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817429.413781,'zms',0,14297,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817429.915349,'zms',0,14297,-2,'ERR','Terminating, last frame sent time 1510817429.415220 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817432.327426,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817432.351501,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817432.380223,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817432.390484,'zms',0,14298,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817432.393398,'zms',0,14298,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817432.894915,'zms',0,14298,-2,'ERR','Terminating, last frame sent time 1510817432.394754 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817435.354111,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817435.374426,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817435.413690,'zms',0,14299,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817435.418731,'zms',0,14299,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817435.923177,'zms',0,14299,-2,'ERR','Terminating, last frame sent time 1510817435.423022 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817438.332033,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817438.356747,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817438.381670,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817438.395307,'zms',0,14300,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817438.400756,'zms',0,14300,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817438.906356,'zms',0,14300,-2,'ERR','Terminating, last frame sent time 1510817438.406203 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817441.359280,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817441.379962,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817441.421728,'zms',0,14301,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817441.428358,'zms',0,14301,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817441.933616,'zms',0,14301,-2,'ERR','Terminating, last frame sent time 1510817441.433488 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817444.332730,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817444.349667,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817444.386312,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817444.388862,'zms',0,14302,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817444.395835,'zms',0,14302,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817444.901234,'zms',0,14302,-2,'ERR','Terminating, last frame sent time 1510817444.401124 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817447.348576,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817447.367323,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817447.409773,'zms',0,14315,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817447.412823,'zms',0,14315,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817447.916353,'zms',0,14315,-2,'ERR','Terminating, last frame sent time 1510817447.416199 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817450.334717,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817450.361314,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817450.374247,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817450.414629,'zms',0,14316,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817450.419413,'zms',0,14316,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817450.925545,'zms',0,14316,-2,'ERR','Terminating, last frame sent time 1510817450.425391 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817453.362735,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817453.380980,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817453.423558,'zms',0,14317,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817453.428625,'zms',0,14317,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817453.933463,'zms',0,14317,-2,'ERR','Terminating, last frame sent time 1510817453.433333 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817456.335976,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817456.352756,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817456.387003,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817456.392401,'zms',0,14318,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817456.396755,'zms',0,14318,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817456.902354,'zms',0,14318,-2,'ERR','Terminating, last frame sent time 1510817456.402224 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817459.362776,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817459.379324,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817459.419906,'zms',0,14319,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817459.423018,'zms',0,14319,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817459.927660,'zms',0,14319,-2,'ERR','Terminating, last frame sent time 1510817459.427505 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817462.332444,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817462.348593,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817462.388281,'zms',0,14320,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817462.391292,'zms',0,14320,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817462.396032,'zms',0,14320,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510817462.901701,'zms',0,14320,-2,'ERR','Terminating, last frame sent time 1510817462.396001 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817465.355604,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817465.371999,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817465.394531,'web_php',NULL,10575,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817465.430489,'zms',0,14324,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817465.436066,'zms',0,14324,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817465.941404,'zms',0,14324,-2,'ERR','Terminating, last frame sent time 1510817465.441252 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817468.340828,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817468.366807,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817468.373698,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817468.423156,'zms',0,14325,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817468.428494,'zms',0,14325,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817468.933941,'zms',0,14325,-2,'ERR','Terminating, last frame sent time 1510817468.433823 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817471.369168,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817471.397239,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817471.449676,'zms',0,14326,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817471.454925,'zms',0,14326,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817471.960680,'zms',0,14326,-2,'ERR','Terminating, last frame sent time 1510817471.460522 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817474.335118,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817474.347161,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817474.386570,'zms',0,14327,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817474.391868,'zms',0,14327,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817474.397440,'zms',0,14327,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510817474.902837,'zms',0,14327,-2,'ERR','Terminating, last frame sent time 1510817474.397414 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817477.356037,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817477.380617,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817477.394619,'web_php',NULL,10566,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817477.441668,'zms',0,14334,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817477.449893,'zms',0,14334,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817477.955686,'zms',0,14334,-2,'ERR','Terminating, last frame sent time 1510817477.455530 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817480.341780,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817480.368164,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817480.380568,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817480.427800,'zms',0,14335,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817480.433056,'zms',0,14335,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817480.937790,'zms',0,14335,-2,'ERR','Terminating, last frame sent time 1510817480.437636 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817483.369585,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817483.390299,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817483.430285,'zms',0,14336,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817483.435801,'zms',0,14336,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817483.939246,'zms',0,14336,-2,'ERR','Terminating, last frame sent time 1510817483.439116 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817486.342603,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817486.362565,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817486.398166,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817486.402749,'zms',0,14337,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817486.408847,'zms',0,14337,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817486.912113,'zms',0,14337,-2,'ERR','Terminating, last frame sent time 1510817486.411955 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817489.369735,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817489.390243,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817489.433959,'zms',0,14338,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817489.438891,'zms',0,14338,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817489.942902,'zms',0,14338,-2,'ERR','Terminating, last frame sent time 1510817489.442746 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817492.343881,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817492.363096,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817492.399694,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817492.403220,'zms',0,14339,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817492.409903,'zms',0,14339,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817492.915284,'zms',0,14339,-2,'ERR','Terminating, last frame sent time 1510817492.415127 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817495.371735,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817495.391376,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817495.431244,'zms',0,14340,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817495.436817,'zms',0,14340,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817495.942445,'zms',0,14340,-2,'ERR','Terminating, last frame sent time 1510817495.442290 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817498.345160,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817498.363998,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817498.399083,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817498.406810,'zms',0,14341,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817498.411771,'zms',0,14341,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817498.916893,'zms',0,14341,-2,'ERR','Terminating, last frame sent time 1510817498.416765 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817501.369522,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817501.386959,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817501.426728,'zms',0,14342,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817501.431998,'zms',0,14342,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817501.937891,'zms',0,14342,-2,'ERR','Terminating, last frame sent time 1510817501.437738 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817504.347100,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817504.370086,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817504.395421,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817504.409640,'zms',0,14343,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817504.412752,'zms',0,14343,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817504.917019,'zms',0,14343,-2,'ERR','Terminating, last frame sent time 1510817504.416885 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817507.371510,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817507.392755,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817507.433620,'zms',0,14355,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817507.438875,'zms',0,14355,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817507.944278,'zms',0,14355,-2,'ERR','Terminating, last frame sent time 1510817507.444207 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817510.348367,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817510.367926,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817510.399941,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817510.413733,'zms',0,14356,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817510.418931,'zms',0,14356,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817510.924509,'zms',0,14356,-2,'ERR','Terminating, last frame sent time 1510817510.424349 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817513.378981,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817513.396925,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817513.440332,'zms',0,14359,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817513.442912,'zms',0,14359,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817513.946359,'zms',0,14359,-2,'ERR','Terminating, last frame sent time 1510817513.446233 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817516.348051,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817516.373453,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817516.402572,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817516.434067,'zms',0,14360,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817516.437452,'zms',0,14360,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817516.940439,'zms',0,14360,-2,'ERR','Terminating, last frame sent time 1510817516.440298 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817519.375793,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817519.393400,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817519.433359,'zms',0,14361,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817519.436229,'zms',0,14361,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817519.939088,'zms',0,14361,-2,'ERR','Terminating, last frame sent time 1510817519.438924 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817522.349652,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817522.378169,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817522.405871,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817522.434459,'zms',0,14362,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817522.437307,'zms',0,14362,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817522.938861,'zms',0,14362,-2,'ERR','Terminating, last frame sent time 1510817522.438732 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817525.378685,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817525.392048,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817525.427876,'zms',0,14364,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817525.432774,'zms',0,14364,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817525.936458,'zms',0,14364,-2,'ERR','Terminating, last frame sent time 1510817525.436335 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817528.354010,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817528.375573,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817528.399214,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817528.415489,'zms',0,14366,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817528.418336,'zms',0,14366,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817528.919943,'zms',0,14366,-2,'ERR','Terminating, last frame sent time 1510817528.419779 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817531.379458,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817531.400388,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817531.440998,'zms',0,14367,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817531.443988,'zms',0,14367,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817531.949117,'zms',0,14367,-2,'ERR','Terminating, last frame sent time 1510817531.448979 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817534.348579,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817534.371183,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817534.408002,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817534.410429,'zms',0,14368,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817534.413312,'zms',0,14368,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817534.916036,'zms',0,14368,-2,'ERR','Terminating, last frame sent time 1510817534.415873 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817537.374296,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817537.393338,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817537.433982,'zms',0,14369,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817537.436766,'zms',0,14369,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817537.942055,'zms',0,14369,-2,'ERR','Terminating, last frame sent time 1510817537.441894 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817540.348427,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817540.371031,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817540.400516,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817540.410721,'zms',0,14370,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817540.414171,'zms',0,14370,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817540.915844,'zms',0,14370,-2,'ERR','Terminating, last frame sent time 1510817540.415687 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817543.374253,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817543.392956,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817543.433592,'zms',0,14371,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817543.436329,'zms',0,14371,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817543.939614,'zms',0,14371,-2,'ERR','Terminating, last frame sent time 1510817543.439475 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817546.348070,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817546.367219,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817546.400661,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817546.410186,'zms',0,14372,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817546.413173,'zms',0,14372,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817546.916088,'zms',0,14372,-2,'ERR','Terminating, last frame sent time 1510817546.415963 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817549.374865,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817549.391455,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817549.431813,'zms',0,14373,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817549.434663,'zms',0,14373,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817549.940276,'zms',0,14373,-2,'ERR','Terminating, last frame sent time 1510817549.440125 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817552.354617,'web_php',NULL,9993,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817552.378155,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817552.403075,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817552.434764,'zms',0,14374,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817552.437548,'zms',0,14374,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817552.939160,'zms',0,14374,-2,'ERR','Terminating, last frame sent time 1510817552.439006 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817555.376688,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817555.393176,'web_js',NULL,9993,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817555.433386,'zms',0,14375,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817555.436134,'zms',0,14375,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817555.939026,'zms',0,14375,-2,'ERR','Terminating, last frame sent time 1510817555.438864 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817558.356374,'web_php',NULL,9989,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817558.377855,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817558.403244,'web_php',NULL,9993,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817558.417580,'zms',0,14376,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817558.420957,'zms',0,14376,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817558.924226,'zms',0,14376,-2,'ERR','Terminating, last frame sent time 1510817558.424133 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817561.380737,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817561.404966,'web_js',NULL,9989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817561.445272,'zms',0,14377,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817561.451056,'zms',0,14377,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817561.956483,'zms',0,14377,-2,'ERR','Terminating, last frame sent time 1510817561.456325 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817564.361911,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817564.388848,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817564.408854,'web_php',NULL,9989,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817564.448772,'zms',0,14379,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817564.454328,'zms',0,14379,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817564.959624,'zms',0,14379,-2,'ERR','Terminating, last frame sent time 1510817564.459474 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817567.391093,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817567.418927,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817567.473400,'zms',0,14391,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817567.478433,'zms',0,14391,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817567.983637,'zms',0,14391,-2,'ERR','Terminating, last frame sent time 1510817567.483510 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817570.358566,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817570.382355,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817570.422177,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817570.437927,'zms',0,14393,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817570.443355,'zms',0,14393,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817570.948771,'zms',0,14393,-2,'ERR','Terminating, last frame sent time 1510817570.448698 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817573.387176,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817573.407984,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817573.450558,'zms',0,14394,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817573.454115,'zms',0,14394,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817573.955621,'zms',0,14394,-2,'ERR','Terminating, last frame sent time 1510817573.455436 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817576.353720,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817576.371645,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-925861w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817576.417751,'zms',0,14396,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817576.422564,'zms',0,14396,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817576.427463,'zms',0,14396,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510817576.932752,'zms',0,14396,-2,'ERR','Terminating, last frame sent time 1510817576.427446 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817578.990236,'zms',0,14398,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817578.993615,'zms',0,14398,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817579.380527,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-925861s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817579.421892,'web_php',NULL,10566,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-925861s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817579.494919,'zms',0,14398,-2,'ERR','Terminating, last frame sent time 1510817578.994768 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817581.890312,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-183549s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817581.915936,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-183549s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817581.958851,'zms',0,14399,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817581.964027,'zms',0,14399,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817582.469169,'zms',0,14399,-2,'ERR','Terminating, last frame sent time 1510817581.969020 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817584.936413,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-183549s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817584.963507,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-183549s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817585.003832,'zms',0,14401,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817585.009120,'zms',0,14401,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817585.514357,'zms',0,14401,-2,'ERR','Terminating, last frame sent time 1510817585.014275 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817587.047615,'web_php',NULL,10575,-2,'ERR','socket_bind( /var/run/zm/zms-183549w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817587.065464,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-183549w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817587.104343,'zms',0,14402,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817587.107062,'zms',0,14402,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817587.609787,'zms',0,14402,-2,'ERR','Terminating, last frame sent time 1510817587.109664 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817590.090836,'web_php',NULL,10575,-2,'ERR','Socket /var/run/zm/zms-183549s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817590.118776,'web_js',NULL,10575,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-183549s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817590.159577,'zms',0,14403,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817590.162516,'zms',0,14403,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817590.182935,'web_php',NULL,9994,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-183549s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817590.665620,'zms',0,14403,-2,'ERR','Terminating, last frame sent time 1510817590.165479 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817593.058523,'web_php',NULL,10566,-2,'ERR','socket_bind( /var/run/zm/zms-183549w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817593.075859,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-183549w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510817593.117715,'zms',0,14404,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817593.122680,'zms',0,14404,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817593.128274,'zms',0,14404,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510817593.633941,'zms',0,14404,-2,'ERR','Terminating, last frame sent time 1510817593.128236 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817596.083653,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-183549s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817596.118428,'web_js',NULL,10566,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-183549s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510817596.124846,'web_php',NULL,10575,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-183549s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817596.177098,'zms',0,14405,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817596.182249,'zms',0,14405,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817596.687653,'zms',0,14405,-2,'ERR','Terminating, last frame sent time 1510817596.187578 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510817599.122560,'web_php',NULL,10566,-2,'ERR','Socket /var/run/zm/zms-183549s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510817628.359260,'zmpkg',NULL,14436,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510817628.365650,'zmpkg',NULL,14436,0,'INF','Command: restart','zmpkg.pl',NULL),(1510817628.464600,'zmsystemctl',NULL,14442,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510817628.546190,'zmpkg',NULL,14446,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510817628.551810,'zmpkg',NULL,14446,0,'INF','Command: stop','zmpkg.pl',NULL),(1510817628.736540,'zmdc',NULL,1432,0,'INF','\'zmaudit.pl -c\' sending stop to pid 1649 at 17/11/16 09:33:48','zmdc.pl',NULL),(1510817628.739930,'zmdc',NULL,1432,0,'INF','\'zmwatch.pl\' sending stop to pid 1655 at 17/11/16 09:33:48','zmdc.pl',NULL),(1510817628.742940,'zmdc',NULL,1432,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510817628.746050,'zmdc',NULL,1432,0,'INF','\'zmtelemetry.pl\' sending stop to pid 1665 at 17/11/16 09:33:48','zmdc.pl',NULL),(1510817628.747390,'zmdc',NULL,1432,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510817628.750000,'zmdc',NULL,1432,0,'INF','\'zmfilter.pl\' sending stop to pid 1639 at 17/11/16 09:33:48','zmdc.pl',NULL),(1510817628.751820,'zmdc',NULL,1432,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510817628.756080,'zmdc',NULL,1432,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510817638.861100,'zmdc',NULL,1432,0,'INF','Server shutdown at 17/11/16 09:33:58','zmdc.pl',NULL),(1510817638.971540,'zmpkg',NULL,14483,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510817638.975030,'zmpkg',NULL,14483,0,'INF','Command: start','zmpkg.pl',NULL),(1510817639.172450,'zmdc',NULL,14498,0,'INF','Server starting at 17/11/16 09:33:59','zmdc.pl',NULL),(1510817642.179820,'zmpkg',NULL,14483,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510817642.273370,'zmdc',NULL,14524,0,'INF','\'zmc -m 1\' started at 17/11/16 09:34:02','zmdc.pl',NULL),(1510817642.273370,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:34:02, pid = 14524','zmdc.pl',NULL),(1510817642.313060,'zmdc',NULL,14498,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510817642.318950,'zmdc',NULL,14498,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510817642.326330,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' starting at 17/11/16 09:34:02, pid = 14528','zmdc.pl',NULL),(1510817642.326340,'zmdc',NULL,14528,0,'INF','\'zmc -m 1\' started at 17/11/16 09:34:02','zmdc.pl',NULL),(1510817642.363560,'zmdc',NULL,14498,0,'INF','\'zmfilter.pl\' starting at 17/11/16 09:34:02, pid = 14530','zmdc.pl',NULL),(1510817642.364000,'zmdc',NULL,14530,0,'INF','\'zmfilter.pl\' started at 17/11/16 09:34:02','zmdc.pl',NULL),(1510817642.465840,'zmdc',NULL,14498,0,'INF','\'zmaudit.pl -c\' starting at 17/11/16 09:34:02, pid = 14536','zmdc.pl',NULL),(1510817642.465840,'zmdc',NULL,14536,0,'INF','\'zmaudit.pl -c\' started at 17/11/16 09:34:02','zmdc.pl',NULL),(1510817642.489754,'zmc_m1',0,14528,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510817642.542010,'zmfilter',NULL,14530,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510817642.573980,'zmdc',NULL,14498,0,'INF','\'zmwatch.pl\' starting at 17/11/16 09:34:02, pid = 14542','zmdc.pl',NULL),(1510817642.573990,'zmdc',NULL,14542,0,'INF','\'zmwatch.pl\' started at 17/11/16 09:34:02','zmdc.pl',NULL),(1510817642.653250,'zmwatch',NULL,14542,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510817642.658810,'zmwatch',NULL,14542,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510817642.661240,'zmdc',NULL,14498,0,'INF','\'zmtelemetry.pl\' starting at 17/11/16 09:34:02, pid = 14548','zmdc.pl',NULL),(1510817642.661240,'zmdc',NULL,14548,0,'INF','\'zmtelemetry.pl\' started at 17/11/16 09:34:02','zmdc.pl',NULL),(1510817644.684702,'zms',0,14564,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510817644.690079,'zms',0,14564,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510817683.708479,'zmc_m1',0,14528,0,'INF','Monitor-1: 1000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510817708.179979,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 9','zm_rtp_source.cpp',127),(1510817708.185332,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 1670, 11476 bytes','zm_rtp_source.cpp',345),(1510817708.190726,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 1670, 0 bytes','zm_rtp_source.cpp',336),(1510817722.262266,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 9','zm_rtp_source.cpp',127),(1510817722.265117,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 2039, 10042 bytes','zm_rtp_source.cpp',345),(1510817722.266410,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 2039, 0 bytes','zm_rtp_source.cpp',336),(1510817723.886647,'zmc_m1',0,14528,0,'INF','Monitor-1: 2000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510817740.406899,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 7','zm_rtp_source.cpp',127),(1510817740.411906,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 2494, 47326 bytes','zm_rtp_source.cpp',345),(1510817740.416970,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 2494, 0 bytes','zm_rtp_source.cpp',336),(1510817740.421167,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 79','zm_rtp_source.cpp',127),(1510817740.423740,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 2494, 8608 bytes','zm_rtp_source.cpp',345),(1510817740.426164,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 2494, 0 bytes','zm_rtp_source.cpp',336),(1510817740.620313,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 22','zm_rtp_source.cpp',127),(1510817740.623330,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 2505, 7174 bytes','zm_rtp_source.cpp',345),(1510817740.626070,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 2505, 0 bytes','zm_rtp_source.cpp',336),(1510817764.303474,'zmc_m1',0,14528,0,'INF','Monitor-1: 3000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510817804.283126,'zmc_m1',0,14528,0,'INF','Monitor-1: 4000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510817823.498500,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 40','zm_rtp_source.cpp',127),(1510817823.503928,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 4637, 7174 bytes','zm_rtp_source.cpp',345),(1510817823.509373,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 4637, 0 bytes','zm_rtp_source.cpp',336),(1510817823.519714,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 11','zm_rtp_source.cpp',127),(1510817823.525292,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 4638, 1438 bytes','zm_rtp_source.cpp',345),(1510817823.540712,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 6','zm_rtp_source.cpp',127),(1510817823.545714,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 4639, 14344 bytes','zm_rtp_source.cpp',345),(1510817823.548984,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 4639, 0 bytes','zm_rtp_source.cpp',336),(1510817824.458911,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 22','zm_rtp_source.cpp',127),(1510817824.461808,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 4674, 8608 bytes','zm_rtp_source.cpp',345),(1510817824.463279,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 4674, 0 bytes','zm_rtp_source.cpp',336),(1510817844.739387,'zmc_m1',0,14528,0,'INF','Monitor-1: 5000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510817884.730808,'zmc_m1',0,14528,0,'INF','Monitor-1: 6000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510817917.269698,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 6','zm_rtp_source.cpp',127),(1510817917.272528,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 7082, 10042 bytes','zm_rtp_source.cpp',345),(1510817917.275012,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 7082, 0 bytes','zm_rtp_source.cpp',336),(1510817917.289944,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 12','zm_rtp_source.cpp',127),(1510817917.294793,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 7083, 1438 bytes','zm_rtp_source.cpp',345),(1510817918.597217,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 28','zm_rtp_source.cpp',127),(1510817918.603179,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 7107, 8608 bytes','zm_rtp_source.cpp',345),(1510817918.608862,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 7107, 0 bytes','zm_rtp_source.cpp',336),(1510817918.617653,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 44','zm_rtp_source.cpp',127),(1510817918.622791,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 7108, 8608 bytes','zm_rtp_source.cpp',345),(1510817918.627810,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 7108, 0 bytes','zm_rtp_source.cpp',336),(1510817925.337644,'zmc_m1',0,14528,0,'INF','Monitor-1: 7000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510817956.500066,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 31','zm_rtp_source.cpp',127),(1510817956.502900,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 8088, 7174 bytes','zm_rtp_source.cpp',345),(1510817956.508720,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 8088, 0 bytes','zm_rtp_source.cpp',336),(1510817961.935501,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 3','zm_rtp_source.cpp',127),(1510817961.938358,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 8226, 11476 bytes','zm_rtp_source.cpp',345),(1510817965.649735,'zmc_m1',0,14528,0,'INF','Monitor-1: 8000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818005.547916,'zmc_m1',0,14528,0,'INF','Monitor-1: 9000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818029.566887,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 13','zm_rtp_source.cpp',127),(1510818029.569792,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 9983, 14344 bytes','zm_rtp_source.cpp',345),(1510818029.571312,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 9983, 0 bytes','zm_rtp_source.cpp',336),(1510818045.765339,'zmc_m1',0,14528,0,'INF','Monitor-1: 10000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818085.728616,'zmc_m1',0,14528,0,'INF','Monitor-1: 11000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818099.183040,'zmcontrol',NULL,14896,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510818099.209000,'zmcontrol',NULL,14899,0,'INF','Control server 1/Floureon starting at 17/11/16 09:41:39','zmcontrol.pl',NULL),(1510818101.797296,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 83','zm_rtp_source.cpp',127),(1510818101.800193,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 11860, 140536 bytes','zm_rtp_source.cpp',345),(1510818101.805470,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 11860, 0 bytes','zm_rtp_source.cpp',336),(1510818125.747133,'zmc_m1',0,14528,0,'INF','Monitor-1: 12000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818157.647833,'zms',0,14606,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510818165.745861,'zmc_m1',0,14528,0,'INF','Monitor-1: 13000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818203.824875,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 11','zm_rtp_source.cpp',127),(1510818203.830533,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 14512, 8608 bytes','zm_rtp_source.cpp',345),(1510818203.836481,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 14512, 0 bytes','zm_rtp_source.cpp',336),(1510818205.906636,'zmc_m1',0,14528,0,'INF','Monitor-1: 14000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818206.797300,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 31','zm_rtp_source.cpp',127),(1510818206.800246,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 14583, 17212 bytes','zm_rtp_source.cpp',345),(1510818206.802762,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 14583, 0 bytes','zm_rtp_source.cpp',336),(1510818246.020955,'zmc_m1',0,14528,0,'INF','Monitor-1: 15000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510818261.874084,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 56','zm_rtp_source.cpp',127),(1510818261.879996,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 16011, 98950 bytes','zm_rtp_source.cpp',345),(1510818261.885924,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 16011, 0 bytes','zm_rtp_source.cpp',336),(1510818261.891064,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 41','zm_rtp_source.cpp',127),(1510818261.896383,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 16011, 28684 bytes','zm_rtp_source.cpp',345),(1510818261.899796,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 16011, 0 bytes','zm_rtp_source.cpp',336),(1510818278.406680,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 26','zm_rtp_source.cpp',127),(1510818278.412658,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 16414, 12910 bytes','zm_rtp_source.cpp',345),(1510818278.418158,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 16414, 0 bytes','zm_rtp_source.cpp',336),(1510818278.431104,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 31','zm_rtp_source.cpp',127),(1510818278.436599,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 16415, 12910 bytes','zm_rtp_source.cpp',345),(1510818278.442191,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 16415, 0 bytes','zm_rtp_source.cpp',336),(1510818278.626169,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 48','zm_rtp_source.cpp',127),(1510818278.629483,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 16425, 1438 bytes','zm_rtp_source.cpp',345),(1510818278.632173,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 16425, 0 bytes','zm_rtp_source.cpp',336),(1510818278.634913,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 11','zm_rtp_source.cpp',127),(1510818278.637734,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 16425, 22948 bytes','zm_rtp_source.cpp',345),(1510818278.639084,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 16425, 0 bytes','zm_rtp_source.cpp',336),(1510818278.665816,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 54','zm_rtp_source.cpp',127),(1510818278.668617,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 16427, 14344 bytes','zm_rtp_source.cpp',345),(1510818278.671382,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 16427, 0 bytes','zm_rtp_source.cpp',336),(1510818281.741922,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 40','zm_rtp_source.cpp',127),(1510818281.748213,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 16508, 119026 bytes','zm_rtp_source.cpp',345),(1510818281.754684,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 16508, 0 bytes','zm_rtp_source.cpp',336),(1510818287.066700,'zmc_m1',0,14528,0,'INF','Monitor-1: 16000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510818327.076291,'zmc_m1',0,14528,0,'INF','Monitor-1: 17000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818335.588786,'zms',0,14871,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510818367.068484,'zmc_m1',0,14528,0,'INF','Monitor-1: 18000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818401.697329,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 10','zm_rtp_source.cpp',127),(1510818401.700298,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 19625, 140536 bytes','zm_rtp_source.cpp',345),(1510818401.724640,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 19625, 0 bytes','zm_rtp_source.cpp',336),(1510818407.183875,'zmc_m1',0,14528,0,'INF','Monitor-1: 19000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818416.770730,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 8','zm_rtp_source.cpp',127),(1510818416.776722,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 20010, 28684 bytes','zm_rtp_source.cpp',345),(1510818416.783042,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 20010, 0 bytes','zm_rtp_source.cpp',336),(1510818416.813259,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 28','zm_rtp_source.cpp',127),(1510818416.819492,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 20012, 11476 bytes','zm_rtp_source.cpp',345),(1510818416.824702,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 20012, 0 bytes','zm_rtp_source.cpp',336),(1510818418.632047,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 7','zm_rtp_source.cpp',127),(1510818418.636255,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 20051, 24382 bytes','zm_rtp_source.cpp',345),(1510818418.641123,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 20051, 0 bytes','zm_rtp_source.cpp',336),(1510818418.646014,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 6','zm_rtp_source.cpp',127),(1510818418.651702,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 20051, 24382 bytes','zm_rtp_source.cpp',345),(1510818418.656850,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 20051, 0 bytes','zm_rtp_source.cpp',336),(1510818418.772963,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510818418.778139,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 20057, 28684 bytes','zm_rtp_source.cpp',345),(1510818418.783230,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 20057, 0 bytes','zm_rtp_source.cpp',336),(1510818430.724535,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 32','zm_rtp_source.cpp',127),(1510818430.727462,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 20360, 31552 bytes','zm_rtp_source.cpp',345),(1510818430.730310,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 20360, 0 bytes','zm_rtp_source.cpp',336),(1510818430.746252,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 14','zm_rtp_source.cpp',127),(1510818430.749031,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 20361, 24382 bytes','zm_rtp_source.cpp',345),(1510818430.751515,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 20361, 0 bytes','zm_rtp_source.cpp',336),(1510818447.642488,'zmc_m1',0,14528,0,'INF','Monitor-1: 20000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818472.077461,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 5','zm_rtp_source.cpp',127),(1510818472.080641,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21437, 32986 bytes','zm_rtp_source.cpp',345),(1510818472.083440,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 19','zm_rtp_source.cpp',127),(1510818472.086097,'zmc_m1',0,14560,-1,'WAR','Discarding frame 21437','zm_rtp_source.cpp',349),(1510818472.087503,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21437, 0 bytes','zm_rtp_source.cpp',336),(1510818479.943097,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 18','zm_rtp_source.cpp',127),(1510818479.946015,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21642, 31552 bytes','zm_rtp_source.cpp',345),(1510818479.949422,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21642, 0 bytes','zm_rtp_source.cpp',336),(1510818483.899508,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 23','zm_rtp_source.cpp',127),(1510818483.902363,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21742, 54496 bytes','zm_rtp_source.cpp',345),(1510818483.904952,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21742, 0 bytes','zm_rtp_source.cpp',336),(1510818483.919294,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 12','zm_rtp_source.cpp',127),(1510818483.922087,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21742, 43024 bytes','zm_rtp_source.cpp',345),(1510818483.933467,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21742, 0 bytes','zm_rtp_source.cpp',336),(1510818488.066066,'zmc_m1',0,14528,0,'INF','Monitor-1: 21000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510818491.990965,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 16','zm_rtp_source.cpp',127),(1510818491.996126,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21911, 11476 bytes','zm_rtp_source.cpp',345),(1510818492.001079,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21911, 0 bytes','zm_rtp_source.cpp',336),(1510818492.207729,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 16','zm_rtp_source.cpp',127),(1510818492.210561,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21919, 31552 bytes','zm_rtp_source.cpp',345),(1510818492.213118,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 91','zm_rtp_source.cpp',127),(1510818492.214581,'zmc_m1',0,14560,-1,'WAR','Discarding frame 21919','zm_rtp_source.cpp',349),(1510818492.217054,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21919, 0 bytes','zm_rtp_source.cpp',336),(1510818492.234193,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 7','zm_rtp_source.cpp',127),(1510818492.237033,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21920, 22948 bytes','zm_rtp_source.cpp',345),(1510818492.238338,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21920, 0 bytes','zm_rtp_source.cpp',336),(1510818492.304354,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 73','zm_rtp_source.cpp',127),(1510818492.308539,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21923, 43024 bytes','zm_rtp_source.cpp',345),(1510818492.313368,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21923, 0 bytes','zm_rtp_source.cpp',336),(1510818492.318928,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 31','zm_rtp_source.cpp',127),(1510818492.323938,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21923, 40156 bytes','zm_rtp_source.cpp',345),(1510818492.328795,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21923, 0 bytes','zm_rtp_source.cpp',336),(1510818492.333572,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 5','zm_rtp_source.cpp',127),(1510818492.338204,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21924, 15778 bytes','zm_rtp_source.cpp',345),(1510818492.355210,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 10','zm_rtp_source.cpp',127),(1510818492.358865,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21925, 106120 bytes','zm_rtp_source.cpp',345),(1510818492.361340,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 12','zm_rtp_source.cpp',127),(1510818492.362627,'zmc_m1',0,14560,-1,'WAR','Discarding frame 21925','zm_rtp_source.cpp',349),(1510818492.364997,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21925, 0 bytes','zm_rtp_source.cpp',336),(1510818492.490132,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 58','zm_rtp_source.cpp',127),(1510818492.493068,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21932, 1438 bytes','zm_rtp_source.cpp',345),(1510818492.495583,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21932, 0 bytes','zm_rtp_source.cpp',336),(1510818492.498170,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 50','zm_rtp_source.cpp',127),(1510818492.499284,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21932, 17212 bytes','zm_rtp_source.cpp',345),(1510818492.501909,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21932, 0 bytes','zm_rtp_source.cpp',336),(1510818492.512278,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 28','zm_rtp_source.cpp',127),(1510818492.517210,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21933, 4306 bytes','zm_rtp_source.cpp',345),(1510818492.522285,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21933, 0 bytes','zm_rtp_source.cpp',336),(1510818492.537072,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 46','zm_rtp_source.cpp',127),(1510818492.542414,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 21933, 17212 bytes','zm_rtp_source.cpp',345),(1510818492.547675,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 21933, 0 bytes','zm_rtp_source.cpp',336),(1510818503.062088,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 20','zm_rtp_source.cpp',127),(1510818503.065141,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 22202, 12910 bytes','zm_rtp_source.cpp',345),(1510818503.067890,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 22202, 0 bytes','zm_rtp_source.cpp',336),(1510818503.081381,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 5','zm_rtp_source.cpp',127),(1510818503.084084,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 22203, 20080 bytes','zm_rtp_source.cpp',345),(1510818503.086547,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 22203, 0 bytes','zm_rtp_source.cpp',336),(1510818514.002899,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 10','zm_rtp_source.cpp',127),(1510818514.007026,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 22479, 140536 bytes','zm_rtp_source.cpp',345),(1510818514.016853,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 22479, 0 bytes','zm_rtp_source.cpp',336),(1510818516.429909,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 22','zm_rtp_source.cpp',127),(1510818516.432790,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 22547, 1438 bytes','zm_rtp_source.cpp',345),(1510818516.435621,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 22547, 0 bytes','zm_rtp_source.cpp',336),(1510818516.451932,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 51','zm_rtp_source.cpp',127),(1510818516.454525,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 22547, 17212 bytes','zm_rtp_source.cpp',345),(1510818516.457366,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 22547, 0 bytes','zm_rtp_source.cpp',336),(1510818522.020197,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 33','zm_rtp_source.cpp',127),(1510818522.022983,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 22688, 28684 bytes','zm_rtp_source.cpp',345),(1510818522.028103,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 22688, 0 bytes','zm_rtp_source.cpp',336),(1510818528.657290,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 16','zm_rtp_source.cpp',127),(1510818528.660276,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 22859, 8608 bytes','zm_rtp_source.cpp',345),(1510818528.662852,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 22859, 0 bytes','zm_rtp_source.cpp',336),(1510818529.752483,'zmc_m1',0,14528,0,'INF','Monitor-1: 22000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510818547.203893,'zms',0,14940,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510818569.728703,'zmc_m1',0,14528,0,'INF','Monitor-1: 23000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818609.755473,'zmc_m1',0,14528,0,'INF','Monitor-1: 24000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818649.777073,'zmc_m1',0,14528,0,'INF','Monitor-1: 25000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818689.786869,'zmc_m1',0,14528,0,'INF','Monitor-1: 26000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818729.800220,'zmc_m1',0,14528,0,'INF','Monitor-1: 27000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818769.762188,'zmc_m1',0,14528,0,'INF','Monitor-1: 28000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818809.768601,'zmc_m1',0,14528,0,'INF','Monitor-1: 29000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818849.763417,'zmc_m1',0,14528,0,'INF','Monitor-1: 30000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818889.799980,'zmc_m1',0,14528,0,'INF','Monitor-1: 31000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818929.758391,'zmc_m1',0,14528,0,'INF','Monitor-1: 32000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510818948.110832,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510818948.114055,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 33764, 25816 bytes','zm_rtp_source.cpp',345),(1510818948.116620,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 33764, 0 bytes','zm_rtp_source.cpp',336),(1510818949.905178,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 8','zm_rtp_source.cpp',127),(1510818949.910353,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 33809, 25816 bytes','zm_rtp_source.cpp',345),(1510818949.914232,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 33809, 0 bytes','zm_rtp_source.cpp',336),(1510818969.885936,'zmc_m1',0,14528,0,'INF','Monitor-1: 33000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819009.881070,'zmc_m1',0,14528,0,'INF','Monitor-1: 34000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819049.881850,'zmc_m1',0,14528,0,'INF','Monitor-1: 35000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819089.854105,'zmc_m1',0,14528,0,'INF','Monitor-1: 36000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819111.095926,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 14','zm_rtp_source.cpp',127),(1510819111.098902,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 37973, 11476 bytes','zm_rtp_source.cpp',345),(1510819111.101730,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 37973, 0 bytes','zm_rtp_source.cpp',336),(1510819111.114241,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 16','zm_rtp_source.cpp',127),(1510819111.117002,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 37974, 5740 bytes','zm_rtp_source.cpp',345),(1510819111.119753,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 37974, 0 bytes','zm_rtp_source.cpp',336),(1510819111.133375,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 51','zm_rtp_source.cpp',127),(1510819111.136031,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 37975, 12910 bytes','zm_rtp_source.cpp',345),(1510819111.140133,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 37975, 0 bytes','zm_rtp_source.cpp',336),(1510819111.152167,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 39','zm_rtp_source.cpp',127),(1510819111.157085,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 37976, 2872 bytes','zm_rtp_source.cpp',345),(1510819111.161908,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 37976, 0 bytes','zm_rtp_source.cpp',336),(1510819111.271966,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 7','zm_rtp_source.cpp',127),(1510819111.277317,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 37983, 10042 bytes','zm_rtp_source.cpp',345),(1510819111.282796,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 37983, 0 bytes','zm_rtp_source.cpp',336),(1510819130.660224,'zmc_m1',0,14528,0,'INF','Monitor-1: 37000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510819134.728363,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 12','zm_rtp_source.cpp',127),(1510819134.731325,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 38591, 1438 bytes','zm_rtp_source.cpp',345),(1510819134.734086,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 38591, 0 bytes','zm_rtp_source.cpp',336),(1510819146.079148,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 6','zm_rtp_source.cpp',127),(1510819146.084401,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 38878, 17212 bytes','zm_rtp_source.cpp',345),(1510819146.094071,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 38878, 0 bytes','zm_rtp_source.cpp',336),(1510819146.099088,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 37','zm_rtp_source.cpp',127),(1510819146.104104,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 38878, 12910 bytes','zm_rtp_source.cpp',345),(1510819146.108420,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 38878, 0 bytes','zm_rtp_source.cpp',336),(1510819170.900468,'zmc_m1',0,14528,0,'INF','Monitor-1: 38000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819171.712730,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 13','zm_rtp_source.cpp',127),(1510819171.715643,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 39543, 20080 bytes','zm_rtp_source.cpp',345),(1510819171.718448,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 39543, 0 bytes','zm_rtp_source.cpp',336),(1510819171.721231,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 5','zm_rtp_source.cpp',127),(1510819171.722438,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 39543, 32986 bytes','zm_rtp_source.cpp',345),(1510819171.725173,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 39543, 0 bytes','zm_rtp_source.cpp',336),(1510819189.797328,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 15','zm_rtp_source.cpp',127),(1510819189.802657,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 40012, 12910 bytes','zm_rtp_source.cpp',345),(1510819189.807922,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 40012, 0 bytes','zm_rtp_source.cpp',336),(1510819211.216419,'zmc_m1',0,14528,0,'INF','Monitor-1: 39000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510819251.171311,'zmc_m1',0,14528,0,'INF','Monitor-1: 40000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819291.175160,'zmc_m1',0,14528,0,'INF','Monitor-1: 41000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819331.172590,'zmc_m1',0,14528,0,'INF','Monitor-1: 42000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819371.176705,'zmc_m1',0,14528,0,'INF','Monitor-1: 43000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819382.015798,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 5','zm_rtp_source.cpp',127),(1510819382.021055,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45000, 30118 bytes','zm_rtp_source.cpp',345),(1510819382.026527,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45000, 0 bytes','zm_rtp_source.cpp',336),(1510819382.375458,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 23','zm_rtp_source.cpp',127),(1510819382.380774,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45011, 31552 bytes','zm_rtp_source.cpp',345),(1510819382.385972,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45011, 0 bytes','zm_rtp_source.cpp',336),(1510819382.405788,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 5','zm_rtp_source.cpp',127),(1510819382.409597,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45012, 15778 bytes','zm_rtp_source.cpp',345),(1510819382.412407,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45012, 0 bytes','zm_rtp_source.cpp',336),(1510819382.534658,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 10','zm_rtp_source.cpp',127),(1510819382.537517,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45016, 43024 bytes','zm_rtp_source.cpp',345),(1510819382.538946,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45016, 0 bytes','zm_rtp_source.cpp',336),(1510819382.541465,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 27','zm_rtp_source.cpp',127),(1510819382.542752,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45016, 30118 bytes','zm_rtp_source.cpp',345),(1510819382.545375,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45016, 0 bytes','zm_rtp_source.cpp',336),(1510819384.595682,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 20','zm_rtp_source.cpp',127),(1510819384.598674,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45061, 110422 bytes','zm_rtp_source.cpp',345),(1510819384.616066,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45061, 0 bytes','zm_rtp_source.cpp',336),(1510819384.935663,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 7','zm_rtp_source.cpp',127),(1510819384.938644,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45071, 27250 bytes','zm_rtp_source.cpp',345),(1510819384.943747,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45071, 0 bytes','zm_rtp_source.cpp',336),(1510819385.299798,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 9','zm_rtp_source.cpp',127),(1510819385.305128,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45081, 55930 bytes','zm_rtp_source.cpp',345),(1510819385.310340,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45081, 0 bytes','zm_rtp_source.cpp',336),(1510819385.315740,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 31','zm_rtp_source.cpp',127),(1510819385.320669,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45081, 47326 bytes','zm_rtp_source.cpp',345),(1510819385.325552,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45081, 0 bytes','zm_rtp_source.cpp',336),(1510819385.331014,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 12','zm_rtp_source.cpp',127),(1510819385.333666,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45081, 17212 bytes','zm_rtp_source.cpp',345),(1510819385.335001,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45081, 0 bytes','zm_rtp_source.cpp',336),(1510819401.220562,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 19','zm_rtp_source.cpp',127),(1510819401.224161,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45471, 11476 bytes','zm_rtp_source.cpp',345),(1510819401.227175,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45471, 0 bytes','zm_rtp_source.cpp',336),(1510819401.543397,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 33','zm_rtp_source.cpp',127),(1510819401.546403,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45483, 27250 bytes','zm_rtp_source.cpp',345),(1510819401.549045,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45483, 0 bytes','zm_rtp_source.cpp',336),(1510819401.564032,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 22','zm_rtp_source.cpp',127),(1510819401.566851,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45484, 11476 bytes','zm_rtp_source.cpp',345),(1510819401.569312,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45484, 0 bytes','zm_rtp_source.cpp',336),(1510819401.774319,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 56','zm_rtp_source.cpp',127),(1510819401.779702,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45494, 5740 bytes','zm_rtp_source.cpp',345),(1510819401.784838,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45494, 0 bytes','zm_rtp_source.cpp',336),(1510819401.815165,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 14','zm_rtp_source.cpp',127),(1510819401.820299,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45497, 12910 bytes','zm_rtp_source.cpp',345),(1510819401.825600,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 20','zm_rtp_source.cpp',127),(1510819401.831564,'zmc_m1',0,14560,-1,'WAR','Discarding frame 45497','zm_rtp_source.cpp',349),(1510819401.836739,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45497, 0 bytes','zm_rtp_source.cpp',336),(1510819401.842043,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 2','zm_rtp_source.cpp',127),(1510819401.845029,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 45498, 14344 bytes','zm_rtp_source.cpp',345),(1510819401.846636,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 45498, 0 bytes','zm_rtp_source.cpp',336),(1510819412.269808,'zmc_m1',0,14528,0,'INF','Monitor-1: 44000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510819452.288256,'zmc_m1',0,14528,0,'INF','Monitor-1: 45000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819492.283972,'zmc_m1',0,14528,0,'INF','Monitor-1: 46000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819501.779784,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 31','zm_rtp_source.cpp',127),(1510819501.785205,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 48092, 136234 bytes','zm_rtp_source.cpp',345),(1510819501.790356,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 48092, 0 bytes','zm_rtp_source.cpp',336),(1510819509.709479,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 18','zm_rtp_source.cpp',127),(1510819509.712189,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 48273, 17212 bytes','zm_rtp_source.cpp',345),(1510819509.714780,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 48273, 0 bytes','zm_rtp_source.cpp',336),(1510819509.733580,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 21','zm_rtp_source.cpp',127),(1510819509.738737,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 48274, 24382 bytes','zm_rtp_source.cpp',345),(1510819509.743695,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 48274, 0 bytes','zm_rtp_source.cpp',336),(1510819509.748598,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 32','zm_rtp_source.cpp',127),(1510819509.753364,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 48274, 10042 bytes','zm_rtp_source.cpp',345),(1510819509.759161,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 48274, 0 bytes','zm_rtp_source.cpp',336),(1510819509.936617,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 27','zm_rtp_source.cpp',127),(1510819509.941301,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 48283, 1438 bytes','zm_rtp_source.cpp',345),(1510819509.945645,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 36','zm_rtp_source.cpp',127),(1510819509.948110,'zmc_m1',0,14560,-1,'WAR','Discarding frame 48283','zm_rtp_source.cpp',349),(1510819509.950549,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 73','zm_rtp_source.cpp',127),(1510819509.953078,'zmc_m1',0,14560,-1,'WAR','Discarding frame 48283','zm_rtp_source.cpp',349),(1510819509.954382,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 48283, 0 bytes','zm_rtp_source.cpp',336),(1510819509.956960,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 37','zm_rtp_source.cpp',127),(1510819509.958164,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 48283, 11476 bytes','zm_rtp_source.cpp',345),(1510819509.959318,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 48283, 0 bytes','zm_rtp_source.cpp',336),(1510819509.990328,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 13','zm_rtp_source.cpp',127),(1510819509.992956,'zmc_m1',0,14560,-1,'WAR','Discarding frame 48285','zm_rtp_source.cpp',349),(1510819509.995642,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 48285, 0 bytes','zm_rtp_source.cpp',336),(1510819533.190476,'zmc_m1',0,14528,0,'INF','Monitor-1: 47000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510819543.902525,'zms',0,15298,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510819573.227175,'zmc_m1',0,14528,0,'INF','Monitor-1: 48000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819580.104212,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 13','zm_rtp_source.cpp',127),(1510819580.107064,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50075, 28684 bytes','zm_rtp_source.cpp',345),(1510819580.109645,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50075, 0 bytes','zm_rtp_source.cpp',336),(1510819580.110969,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 18','zm_rtp_source.cpp',127),(1510819580.113420,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50075, 31552 bytes','zm_rtp_source.cpp',345),(1510819580.115934,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50075, 0 bytes','zm_rtp_source.cpp',336),(1510819580.453922,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 11','zm_rtp_source.cpp',127),(1510819580.459301,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50087, 17212 bytes','zm_rtp_source.cpp',345),(1510819580.464482,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50087, 0 bytes','zm_rtp_source.cpp',336),(1510819580.478375,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 9','zm_rtp_source.cpp',127),(1510819580.483394,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50089, 5740 bytes','zm_rtp_source.cpp',345),(1510819580.488494,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 5','zm_rtp_source.cpp',127),(1510819580.492156,'zmc_m1',0,14560,-1,'WAR','Discarding frame 50089','zm_rtp_source.cpp',349),(1510819580.494611,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 30','zm_rtp_source.cpp',127),(1510819580.497279,'zmc_m1',0,14560,-1,'WAR','Discarding frame 50089','zm_rtp_source.cpp',349),(1510819580.503458,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50089, 0 bytes','zm_rtp_source.cpp',336),(1510819580.753901,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 7','zm_rtp_source.cpp',127),(1510819580.756864,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50102, 20080 bytes','zm_rtp_source.cpp',345),(1510819580.759661,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50102, 0 bytes','zm_rtp_source.cpp',336),(1510819580.819466,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 18','zm_rtp_source.cpp',127),(1510819580.822205,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50105, 5740 bytes','zm_rtp_source.cpp',345),(1510819580.824834,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50105, 0 bytes','zm_rtp_source.cpp',336),(1510819580.829649,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 9','zm_rtp_source.cpp',127),(1510819580.834682,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50105, 45892 bytes','zm_rtp_source.cpp',345),(1510819580.839661,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50105, 0 bytes','zm_rtp_source.cpp',336),(1510819583.845081,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 16','zm_rtp_source.cpp',127),(1510819583.848115,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50185, 40156 bytes','zm_rtp_source.cpp',345),(1510819583.850811,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 69','zm_rtp_source.cpp',127),(1510819583.853273,'zmc_m1',0,14560,-1,'WAR','Discarding frame 50185','zm_rtp_source.cpp',349),(1510819583.854601,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50185, 0 bytes','zm_rtp_source.cpp',336),(1510819583.862782,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 42','zm_rtp_source.cpp',127),(1510819583.865635,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50186, 1438 bytes','zm_rtp_source.cpp',345),(1510819583.868144,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50186, 0 bytes','zm_rtp_source.cpp',336),(1510819598.137841,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 49','zm_rtp_source.cpp',127),(1510819598.141606,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50551, 24382 bytes','zm_rtp_source.cpp',345),(1510819598.144435,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50551, 0 bytes','zm_rtp_source.cpp',336),(1510819602.051654,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 83','zm_rtp_source.cpp',127),(1510819602.056803,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 50650, 1438 bytes','zm_rtp_source.cpp',345),(1510819602.061722,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 50650, 0 bytes','zm_rtp_source.cpp',336),(1510819614.251419,'zmc_m1',0,14528,0,'INF','Monitor-1: 49000 - Capturing at 24.39 fps','zm_monitor.cpp',3125),(1510819654.250018,'zmc_m1',0,14528,0,'INF','Monitor-1: 50000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819694.248479,'zmc_m1',0,14528,0,'INF','Monitor-1: 51000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819734.240687,'zmc_m1',0,14528,0,'INF','Monitor-1: 52000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819774.234464,'zmc_m1',0,14528,0,'INF','Monitor-1: 53000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819814.275464,'zmc_m1',0,14528,0,'INF','Monitor-1: 54000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819830.560696,'zms',0,15426,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510819854.239872,'zmc_m1',0,14528,0,'INF','Monitor-1: 55000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819894.242684,'zmc_m1',0,14528,0,'INF','Monitor-1: 56000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819911.340873,'zms',0,14564,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510819911.343946,'zms',0,15471,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510819911.346619,'zms',0,15471,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510819911.349435,'zms',0,15471,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510819911.386446,'zms',0,15471,-2,'ERR','Terminating, last frame sent time 1510819911.349333 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510819911.391689,'zms',0,15703,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510819911.396706,'zms',0,15703,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510819911.402081,'zms',0,15703,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510819911.464663,'zms',0,15703,-2,'ERR','Terminating, last frame sent time 1510819911.401904 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510819913.977703,'zms',0,15738,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510819913.983118,'zms',0,15738,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510819934.273616,'zmc_m1',0,14528,0,'INF','Monitor-1: 57000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510819973.236635,'zms',0,15758,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510819973.241934,'zms',0,15758,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510819974.228623,'zmc_m1',0,14528,0,'INF','Monitor-1: 58000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820014.246606,'zmc_m1',0,14528,0,'INF','Monitor-1: 59000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820034.876791,'zms',0,15758,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820054.241708,'zmc_m1',0,14528,0,'INF','Monitor-1: 60000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820094.236365,'zmc_m1',0,14528,0,'INF','Monitor-1: 61000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820134.245187,'zmc_m1',0,14528,0,'INF','Monitor-1: 62000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820174.236892,'zmc_m1',0,14528,0,'INF','Monitor-1: 63000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820214.238486,'zmc_m1',0,14528,0,'INF','Monitor-1: 64000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820250.340343,'zms',0,15834,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510820250.343648,'zms',0,15834,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510820254.235573,'zmc_m1',0,14528,0,'INF','Monitor-1: 65000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820282.954341,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 21','zm_rtp_source.cpp',127),(1510820282.959896,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 68351, 2872 bytes','zm_rtp_source.cpp',345),(1510820282.964786,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 68351, 0 bytes','zm_rtp_source.cpp',336),(1510820285.689217,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 8','zm_rtp_source.cpp',127),(1510820285.694860,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 68413, 20080 bytes','zm_rtp_source.cpp',345),(1510820285.699019,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 68413, 0 bytes','zm_rtp_source.cpp',336),(1510820285.702275,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 28','zm_rtp_source.cpp',127),(1510820285.703558,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 68413, 8608 bytes','zm_rtp_source.cpp',345),(1510820285.706029,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 68413, 0 bytes','zm_rtp_source.cpp',336),(1510820285.707349,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 17','zm_rtp_source.cpp',127),(1510820285.709860,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 68413, 17212 bytes','zm_rtp_source.cpp',345),(1510820285.711216,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 24','zm_rtp_source.cpp',127),(1510820285.713743,'zmc_m1',0,14560,-1,'WAR','Discarding frame 68413','zm_rtp_source.cpp',349),(1510820285.715221,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 68413, 0 bytes','zm_rtp_source.cpp',336),(1510820285.718023,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 13','zm_rtp_source.cpp',127),(1510820285.719380,'zmc_m1',0,14560,-1,'WAR','Discarding frame 68414','zm_rtp_source.cpp',349),(1510820285.724489,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 68414, 0 bytes','zm_rtp_source.cpp',336),(1510820286.879365,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 17','zm_rtp_source.cpp',127),(1510820286.882168,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 68437, 7174 bytes','zm_rtp_source.cpp',345),(1510820286.883483,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 68437, 0 bytes','zm_rtp_source.cpp',336),(1510820286.901406,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 10','zm_rtp_source.cpp',127),(1510820286.904149,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 68438, 5740 bytes','zm_rtp_source.cpp',345),(1510820286.907993,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 68438, 0 bytes','zm_rtp_source.cpp',336),(1510820294.879225,'zmc_m1',0,14528,0,'INF','Monitor-1: 66000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820334.876108,'zmc_m1',0,14528,0,'INF','Monitor-1: 67000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820374.863031,'zmc_m1',0,14528,0,'INF','Monitor-1: 68000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820414.872565,'zmc_m1',0,14528,0,'INF','Monitor-1: 69000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820454.873427,'zmc_m1',0,14528,0,'INF','Monitor-1: 70000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820466.994536,'zms',0,15834,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820466.997397,'zms',0,15901,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510820466.998850,'zms',0,15901,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510820467.012417,'zms',0,15901,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820467.039762,'zms',0,15901,-2,'ERR','Terminating, last frame sent time 1510820467.001410 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510820467.042631,'zms',0,15839,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510820467.045123,'zms',0,15839,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510820467.055068,'zms',0,15839,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820467.082397,'zms',0,15839,-2,'ERR','Terminating, last frame sent time 1510820467.046389 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510820467.087709,'zms',0,15902,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510820467.092784,'zms',0,15902,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510820467.106444,'zms',0,15902,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820467.133809,'zms',0,15902,-2,'ERR','Terminating, last frame sent time 1510820467.097858 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510820469.604321,'zms',0,15913,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510820469.609572,'zms',0,15913,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510820494.883685,'zmc_m1',0,14528,0,'INF','Monitor-1: 71000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820534.872430,'zmc_m1',0,14528,0,'INF','Monitor-1: 72000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820574.876156,'zmc_m1',0,14528,0,'INF','Monitor-1: 73000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820614.875523,'zmc_m1',0,14528,0,'INF','Monitor-1: 74000 - Capturing at 25.00 fps','zm_monitor.cpp',3125),(1510820624.977981,'zms',0,15913,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820624.980983,'zms',0,15940,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510820624.985020,'zms',0,15940,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510820625.005133,'zms',0,15940,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820625.054699,'zms',0,15940,-2,'ERR','Terminating, last frame sent time 1510820624.989808 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510820625.059866,'zms',0,15983,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510820625.065052,'zms',0,15983,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510820625.070373,'zms',0,15983,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820628.075538,'zms',0,15914,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510820628.080814,'zms',0,15914,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510820628.085893,'zms',0,15914,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820628.122174,'zms',0,15914,-2,'ERR','Terminating, last frame sent time 1510820628.085778 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510820628.127363,'zms',0,15986,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510820628.131818,'zms',0,15986,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510820628.159143,'zms',0,15986,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820628.221387,'zms',0,15986,-2,'ERR','Terminating, last frame sent time 1510820628.134874 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510820653.003102,'zms',0,15999,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510820653.006043,'zms',0,15999,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510820658.790546,'zmc_m1',0,14528,0,'INF','Monitor-1: 75000 - Capturing at 22.73 fps','zm_monitor.cpp',3125),(1510820752.860315,'zmc_m1',0,14528,0,'INF','Monitor-1: 76000 - Capturing at 10.64 fps','zm_monitor.cpp',3125),(1510820819.537275,'zmc_m1',0,14528,0,'INF','Monitor-1: 77000 - Capturing at 14.93 fps','zm_monitor.cpp',3125),(1510820886.236463,'zmc_m1',0,14528,0,'INF','Monitor-1: 78000 - Capturing at 14.93 fps','zm_monitor.cpp',3125),(1510820962.338324,'zms',0,16000,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510820964.741095,'zmc_m1',0,14528,0,'INF','Monitor-1: 79000 - Capturing at 12.82 fps','zm_monitor.cpp',3125),(1510820999.229030,'zms',0,16014,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510821002.362893,'zms',0,15999,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510821002.368461,'zms',0,15999,-2,'ERR','Unable to send stream frame: Broken pipe','zm_monitor.cpp',3936),(1510821004.523330,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-202335w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510821004.538266,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-202335w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510821004.576660,'zms',0,16162,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510821004.582321,'zms',0,16162,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510821004.588446,'zms',0,16162,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510821007.588134,'web_php',NULL,9990,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-202335s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510821028.080379,'zmc_m1',0,14560,-1,'WAR','Packet in sequence, gap 15','zm_rtp_source.cpp',127),(1510821028.085937,'zmc_m1',0,14560,-1,'WAR','Discarding partial frame 82830, 140536 bytes','zm_rtp_source.cpp',345),(1510821028.091784,'zmc_m1',0,14560,-1,'WAR','Discarding incomplete frame 82830, 0 bytes','zm_rtp_source.cpp',336),(1510821064.816954,'zmc_m1',0,14528,0,'INF','Monitor-1: 80000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510821164.805283,'zmc_m1',0,14528,0,'INF','Monitor-1: 81000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510821264.656534,'zmc_m1',0,14528,0,'INF','Monitor-1: 82000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510821303.814450,'zmdc',NULL,14498,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510821303.903360,'zmdc',NULL,14498,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510821303.986950,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' already running at 17/11/16 09:34:02, pid = 14528','zmdc.pl',NULL),(1510821304.076080,'zmdc',NULL,14498,0,'INF','\'zma -m 1\' starting at 17/11/16 10:35:04, pid = 16593','zmdc.pl',NULL),(1510821304.076080,'zmdc',NULL,16593,0,'INF','\'zma -m 1\' started at 17/11/16 10:35:04','zmdc.pl',NULL),(1510821304.152096,'zma_m1',0,16593,0,'INF','In mode 5/1, warming up','zma.cpp',142),(1510821305.230486,'zma_m1',0,16593,0,'INF','Monitor-1: 026 - Opening new event 1, section start','zm_monitor.cpp',1541),(1510821306.423720,'zms',0,16162,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510821306.432970,'zms',0,16162,-2,'ERR','Unable to send stream frame: Connection timed out','zm_monitor.cpp',3936),(1510821306.469617,'zms',0,16603,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510821306.473325,'zms',0,16603,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510821364.655767,'zmc_m1',0,14528,0,'INF','Monitor-1: 83000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510821370.731770,'zmcontrol',NULL,14899,0,'INF','Control server 1/Floureon exiting at 17/11/16 10:36:10','zmcontrol.pl',NULL),(1510821402.616582,'zma_m1',0,16593,0,'INF','Monitor-1: 1000 - Analysing at 10.20 fps','zm_monitor.cpp',1296),(1510821464.662962,'zmc_m1',0,14528,0,'INF','Monitor-1: 84000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510821502.577996,'zma_m1',0,16593,0,'INF','Monitor-1: 2000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510821514.220268,'zma_m1',0,16593,0,'INF','Monitor-1: 2115 - Gone into alarm state','zm_monitor.cpp',1614),(1510821517.205511,'zma_m1',0,16593,0,'INF','Monitor-1: 2138 - Gone into alert state','zm_monitor.cpp',1704),(1510821517.298406,'zma_m1',0,16593,0,'INF','Monitor-1: 2139 - Gone back into alarm state','zm_monitor.cpp',1695),(1510821519.542182,'zma_m1',0,16593,0,'INF','Monitor-1: 2161 - Gone into alert state','zm_monitor.cpp',1704),(1510821521.835219,'zma_m1',0,16593,0,'INF','Monitor-1: 2186 - Left alarm state (1) - 2160(45) images','zm_monitor.cpp',1711),(1510821564.683468,'zmc_m1',0,14528,0,'INF','Monitor-1: 85000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510821600.097585,'zma_m1',0,16593,0,'INF','Monitor-1: 2969 - Closing event 1, section end','zm_monitor.cpp',1521),(1510821600.110641,'zma_m1',0,16593,0,'INF','Monitor-1: 2969 - Opening new event 2, section start','zm_monitor.cpp',1541),(1510821603.185294,'zma_m1',0,16593,0,'INF','Monitor-1: 3000 - Analysing at 9.90 fps','zm_monitor.cpp',1296),(1510821610.326757,'zms',0,16605,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510821613.434692,'zms',0,16603,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510821614.745469,'web_php',NULL,15989,-2,'ERR','socket_bind( /var/run/zm/zms-940218w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510821614.766671,'web_js',NULL,15989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-940218w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510821614.805402,'zms',0,16789,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510821614.811756,'zms',0,16789,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510821614.990708,'zms',0,16789,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510821617.979358,'web_php',NULL,14416,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-940218s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510821662.888940,'zms',0,16795,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510821662.891999,'zms',0,16795,-2,'ERR','Unable to send raw frame 145: Broken pipe','zm_event.cpp',1332),(1510821664.658156,'zmc_m1',0,14528,0,'INF','Monitor-1: 86000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510821691.872709,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00919-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821691.992769,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00920-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821692.076164,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00921-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821692.222545,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00922-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821692.267794,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00923-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821692.430157,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00924-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821692.475924,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00925-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821692.622344,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00926-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821692.704534,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00927-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821692.816811,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00928-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821692.876075,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00929-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821692.996422,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00930-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821693.083149,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00931-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821693.198604,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00932-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821693.286320,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00933-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821693.406637,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00934-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821693.655059,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00935-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821693.666231,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00936-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821693.711929,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00937-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821693.823571,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00938-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821693.870348,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00939-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821694.015425,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00940-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821694.096775,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00941-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821694.213472,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00942-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821694.294135,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00943-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821694.408038,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00944-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821694.504515,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00945-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821694.636337,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00946-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821694.692324,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00947-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821694.853773,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00948-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821694.906081,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00949-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821695.034918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00950-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821695.090276,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00951-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821695.246900,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00952-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821695.300139,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00953-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821695.413110,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00954-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821695.494699,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00955-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821695.617185,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00956-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821695.751591,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00957-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821695.799395,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00958-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821695.928273,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00959-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821696.014577,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00960-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821696.101102,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00961-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821696.213229,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00962-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821696.304744,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00963-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821696.422543,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00964-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821696.523662,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00965-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821696.606096,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00966-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821696.721811,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00967-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821696.802910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00968-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821696.815940,'zms',0,16789,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510821696.928281,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00969-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821697.023268,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00970-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821697.069504,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00971-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821697.215568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00972-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821697.298534,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00973-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821697.418084,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00974-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821697.501781,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00975-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821697.616155,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00976-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821697.694666,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00977-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821697.808791,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00978-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821697.890196,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00979-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821698.004886,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00980-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821698.085069,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00981-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821698.196510,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00982-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821698.318827,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00983-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821698.447613,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00984-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821698.627334,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00985-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821698.639651,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00986-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821698.694839,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00987-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821698.841698,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00988-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821698.889614,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00989-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821699.039255,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00990-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821699.088660,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00991-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821699.204251,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00992-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821699.324128,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00993-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821699.405651,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00994-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821699.520345,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00995-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821699.650063,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00996-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821699.696374,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00997-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821699.844628,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00998-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821699.905669,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/00999-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821700.024790,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01000-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821700.083350,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01001-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821700.247525,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01002-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821700.296387,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01003-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821700.411065,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01004-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821700.493897,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01005-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821700.608175,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01006-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821700.696539,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01007-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821700.810266,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01008-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821700.895987,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01009-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821701.019908,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01010-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821701.114731,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01011-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821701.194383,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01012-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821701.319036,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01013-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821701.433819,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01014-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821701.482161,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01015-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821701.597860,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01016-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821701.726347,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01017-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821701.843655,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01018-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821701.892971,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01019-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821702.041956,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01020-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821702.091324,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01021-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821702.241245,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01022-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821702.291210,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01023-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821702.452405,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01024-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821702.508370,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01025-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821702.633734,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01026-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821702.730025,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01027-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821702.854053,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01028-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821702.916953,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01029-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821703.056516,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01030-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821703.105743,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01031-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821703.213962,'zma_m1',0,16593,0,'INF','Monitor-1: 4000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510821703.226953,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01032-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821703.291501,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01033-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821703.457187,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01034-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821703.605628,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01035-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821703.653065,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01036-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821703.700849,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01037-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821703.814469,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01038-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821703.895251,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01039-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821704.047683,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01040-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821704.093594,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01041-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821704.240272,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01042-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821704.286581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01043-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821704.433050,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01044-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821704.481051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01045-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821704.596480,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01046-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821704.678524,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01047-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821704.838194,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01048-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821704.897083,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01049-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821705.020847,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01050-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821705.110024,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01051-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821705.229275,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01052-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821705.274814,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01053-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821705.420686,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01054-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821705.465907,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01055-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821705.612919,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01056-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821705.694828,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01057-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821705.808459,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01058-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821705.889552,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01059-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821706.005474,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01060-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821706.054186,'zms',0,16858,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510821706.059098,'zms',0,16858,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510821706.086170,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01061-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821706.200531,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01062-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821706.281550,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01063-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821706.430455,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01064-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821706.476671,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01065-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821706.622557,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01066-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821706.668955,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01067-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821706.816846,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01068-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821706.916700,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01069-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.048357,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01070-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.096137,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01071-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.209562,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01072-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.291743,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01073-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.440546,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01074-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.492227,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01075-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.639425,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01076-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.685533,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01077-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.831818,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01078-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.876947,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01079-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821707.989722,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01080-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821708.068687,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01081-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821708.215125,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01082-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821708.297617,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01083-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821708.413930,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01084-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821708.628669,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01085-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821708.643034,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01086-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821708.690473,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01087-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821708.805782,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01088-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821708.885307,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01089-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821709.032929,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01090-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821709.082969,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01091-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821709.244967,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01092-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821709.292590,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01093-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821709.405656,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01094-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821709.486354,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01095-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821709.632363,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01096-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821709.681184,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01097-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821709.827868,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01098-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821709.878537,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01099-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821710.027151,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01100-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821710.081609,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01101-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821710.230038,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01102-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821710.279247,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01103-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821710.426525,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01104-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821710.505660,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01105-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821710.618477,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01106-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821710.663145,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01107-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821710.809222,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01108-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821710.889254,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01109-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821711.003388,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01110-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821711.116772,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01111-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821711.198877,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01112-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821711.278950,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01113-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821711.431173,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01114-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821711.479382,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01115-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821711.628343,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01116-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821711.677079,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01117-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821711.824918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01118-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821711.871572,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01119-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821712.017199,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01120-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821712.097249,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01121-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821712.209248,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01122-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821712.289182,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01123-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821712.438832,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01124-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821712.520412,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01125-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821712.634605,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01126-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821712.680886,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01127-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821712.833806,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01128-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821712.882085,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01129-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821713.030519,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01130-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821713.078347,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01131-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821713.240523,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01132-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821713.293518,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01133-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821713.405692,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01134-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821713.621073,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01135-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821713.668080,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01136-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821713.682874,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01137-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821713.838741,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01138-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821713.894133,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01139-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821714.050915,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01140-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821714.112904,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01141-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821714.233794,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01142-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821714.281770,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01143-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821714.428829,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01144-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821714.492636,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01145-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821714.608474,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01146-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821714.691029,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01147-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821714.840145,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01148-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821714.887215,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01149-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821715.033346,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01150-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821715.079211,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01151-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821715.201705,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01152-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821715.315121,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01153-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821715.427378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01154-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821715.472448,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01155-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821715.620643,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01156-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821715.669294,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01157-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821715.817989,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01158-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821715.903479,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01159-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821716.019064,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01160-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821716.076873,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01161-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821716.226210,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01162-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821716.276303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01163-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821716.422880,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01164-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821716.505188,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01165-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821716.585047,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01166-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821716.701818,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01167-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821716.814306,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01168-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821716.894526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01169-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821717.011549,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01170-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821717.092976,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01171-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821717.208431,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01172-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821717.256223,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01173-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821717.403901,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01174-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821717.484661,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01175-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821717.646859,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01176-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821717.692989,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01177-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821717.838782,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01178-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821717.884206,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01179-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821718.031959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01180-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821718.077710,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01181-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821718.224140,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01182-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821718.321432,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01183-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821718.404795,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01184-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821718.622190,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01185-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821718.637361,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01186-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821718.701706,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01187-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821718.817464,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01188-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821718.865941,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01189-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821719.024008,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01190-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821719.071815,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01191-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821719.218111,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01192-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821719.263168,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01193-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821719.408918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01194-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821719.491322,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01195-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821719.653313,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01196-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821719.700465,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01197-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821719.813089,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01198-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821719.897566,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01199-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821720.013977,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01200-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821720.113334,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01201-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821720.248247,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01202-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821720.296774,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01203-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821720.411304,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01204-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821720.512599,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01205-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821720.626150,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01206-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821720.672343,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01207-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821720.820807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01208-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821720.866362,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01209-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821721.012115,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01210-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821721.093848,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01211-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821721.240543,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01212-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821721.286425,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01213-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821721.439093,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01214-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821721.487800,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01215-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821721.617154,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01216-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821721.698723,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01217-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821721.812721,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01218-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821721.897590,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01219-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821722.011195,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01220-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821722.093480,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01221-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821722.206883,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01222-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821722.286287,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01223-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821722.399249,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01224-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821722.514649,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01225-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821722.631116,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01226-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821722.678632,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01227-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821722.824644,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01228-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821722.872808,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01229-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821723.039591,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01230-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821723.091451,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01231-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821723.256566,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01232-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821723.306230,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01233-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821723.421836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01234-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821723.636330,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01235-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821723.650445,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01236-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821723.712138,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01237-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821723.830543,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01238-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821723.912054,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01239-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821724.025912,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01240-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821724.071596,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01241-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821724.218323,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01242-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821724.263859,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01243-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821724.409917,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01244-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821724.495588,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01245-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821724.644644,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01246-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821724.692935,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01247-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821724.809013,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01248-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821724.892101,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01249-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821725.050340,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01250-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821725.099405,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01251-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821725.214793,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01252-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821725.296154,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01253-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821725.450048,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01254-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821725.510671,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01255-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821725.623754,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01256-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821725.669086,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01257-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821725.849045,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01258-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821725.904892,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01259-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821726.023756,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01260-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821726.105742,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01261-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821726.225894,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01262-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821726.323192,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01263-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821726.407122,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01264-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821726.489030,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01265-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821726.607027,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01266-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821726.687289,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01267-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821726.801558,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01268-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821726.913661,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01269-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821727.025943,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01270-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821727.071694,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01271-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821727.250944,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01272-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821727.299379,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01273-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821727.411778,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01274-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821727.490538,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01275-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821727.636809,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01276-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821727.685096,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01277-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821727.831327,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01278-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821727.878518,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01279-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821728.031072,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01280-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821728.078953,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01281-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821728.242833,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01282-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821728.291492,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01283-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821728.406405,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01284-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821728.623775,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01285-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821728.638108,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01286-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821728.699568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01287-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821728.824360,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01288-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821728.922180,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01289-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821729.001458,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01290-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821729.080079,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01291-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821729.225260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01292-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821729.296004,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01293-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821729.457164,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01294-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821729.506288,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01295-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821729.621542,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01296-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821729.669447,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01297-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821729.818903,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01298-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821729.867493,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01299-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821730.016133,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01300-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821730.069648,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01301-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821730.214573,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01302-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821730.295336,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01303-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821730.409129,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01304-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821730.537917,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01305-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821730.635374,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01306-capture.jpg: No such file or directory','zm_image.cpp',869); -INSERT INTO `Logs` VALUES (1510821730.716963,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01307-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821730.839390,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01308-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821730.896371,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01309-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821731.010948,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01310-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821731.097537,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01311-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821731.190292,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01312-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821731.272295,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01313-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821731.435887,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01314-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821731.519905,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01315-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821731.635496,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01316-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821731.688424,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01317-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821731.835573,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01318-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821731.881429,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01319-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821732.027410,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01320-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821732.072794,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01321-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821732.218941,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01322-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821732.301923,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01323-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821732.416251,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01324-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821732.498579,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01325-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821732.613619,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01326-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821732.695217,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01327-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821732.844231,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01328-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821732.893363,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01329-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821733.042688,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01330-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821733.088419,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01331-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821733.201047,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01332-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821733.279581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01333-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821733.425261,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01334-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821733.604026,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01335-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821733.649954,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01336-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821733.698492,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01337-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821733.818979,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01338-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821733.899823,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01339-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821734.013617,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01340-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821734.094884,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01341-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821734.222135,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01342-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821734.332874,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01343-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821734.419721,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01344-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821734.503521,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01345-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821734.622357,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01346-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821734.667699,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01347-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821734.813954,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01348-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821734.895334,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01349-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821735.048804,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01350-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821735.094914,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01351-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821735.208776,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01352-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821735.291313,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01353-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821735.405343,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01354-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821735.487192,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01355-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821735.636023,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01356-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821735.684925,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01357-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821735.833580,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01358-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821735.881581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01359-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821736.030231,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01360-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821736.076900,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01361-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821736.222974,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01362-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821736.268126,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01363-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821736.414044,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01364-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821736.495021,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01365-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821736.642425,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01366-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821736.688669,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01367-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821736.833672,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01368-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821736.880830,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01369-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821737.028961,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01370-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821737.077836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01371-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821737.226783,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01372-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821737.275224,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01373-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821737.425431,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01374-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821737.507307,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01375-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821737.621697,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01376-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821737.668869,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01377-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821737.814900,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01378-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821737.860321,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01379-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821738.005609,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01380-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821738.085377,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01381-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821738.198875,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01382-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821738.278686,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01383-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821738.425644,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01384-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821738.607193,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01385-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821738.654398,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01386-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821738.668933,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01387-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821738.819040,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01388-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821738.866865,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01389-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821739.015882,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01390-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821739.064163,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01391-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821739.250519,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01392-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821739.299383,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01393-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821739.411254,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01394-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821739.492524,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01395-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821739.639735,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01396-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821739.688020,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01397-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821739.834032,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01398-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821739.880200,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01399-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821740.027962,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01400-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821740.081497,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01401-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821740.229970,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01402-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821740.277843,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01403-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821740.426337,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01404-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821740.474621,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01405-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821740.623649,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01406-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821740.670427,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01407-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821740.816426,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01408-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821740.897817,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01409-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821741.044674,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01410-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821741.091984,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01411-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821741.204593,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01412-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821741.284978,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01413-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821741.431562,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01414-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821741.479021,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01415-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821741.627434,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01416-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821741.685469,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01417-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821741.835173,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01418-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821741.882652,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01419-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821742.032670,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01420-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821742.082530,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01421-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821742.231148,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01422-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821742.278271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01423-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821742.424051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01424-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821742.469780,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01425-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821742.617970,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01426-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821742.663167,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01427-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821742.808196,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01428-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821742.888495,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01429-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821743.035090,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01430-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821743.082260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01431-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821743.229571,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01432-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821743.291364,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01433-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821743.454353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01434-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821743.603082,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01435-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821743.617865,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01436-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821743.676031,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01437-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821743.840962,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01438-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821743.900162,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01439-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821744.015798,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01440-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821744.095588,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01441-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821744.209470,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01442-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821744.339065,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01443-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821744.426203,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01444-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821744.521241,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01445-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821744.640316,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01446-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821744.704339,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01447-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821744.829607,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01448-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821744.892209,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01449-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821745.013184,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01450-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821745.094911,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01451-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821745.244807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01452-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821745.296973,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01453-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821745.410682,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01454-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821745.490189,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01455-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821745.601930,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01456-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821745.714223,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01457-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821745.843967,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01458-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821745.891133,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01459-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821746.005052,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01460-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821746.084984,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01461-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821746.200236,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01462-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821746.280856,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01463-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821746.429664,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01464-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821746.486926,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01465-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821746.651153,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01466-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821746.700461,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01467-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821746.819459,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01468-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821746.901539,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01469-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821747.014076,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01470-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821747.094496,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01471-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821747.208865,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01472-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821747.291480,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01473-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821747.403684,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01474-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821747.482762,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01475-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821747.631578,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01476-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821747.676547,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01477-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821747.823951,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01478-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821747.872471,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01479-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821748.021247,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01480-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821748.106784,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01481-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821748.226300,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01482-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821748.274423,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01483-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821748.424237,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01484-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821748.605544,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01485-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821748.651563,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01486-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821748.662117,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01487-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821748.841792,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01488-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821748.889437,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01489-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821749.037128,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01490-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821749.083571,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01491-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821749.239631,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01492-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821749.286029,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01493-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821749.436976,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01494-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821749.487676,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01495-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821749.658568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01496-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821749.707278,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01497-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821749.824964,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01498-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821749.874568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01499-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821750.028061,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01500-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821750.080789,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01501-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821750.227049,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01502-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821750.272484,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01503-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821750.419266,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01504-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821750.500623,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01505-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821750.613819,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01506-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821750.695979,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01507-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821750.810806,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01508-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821750.893419,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01509-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821751.057872,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01510-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821751.106435,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01511-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821751.230495,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01512-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821751.279003,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01513-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821751.427581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01514-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821751.476410,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01515-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821751.624035,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01516-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821751.708099,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01517-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821751.823602,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01518-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821751.870959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01519-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821752.020262,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01520-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821752.104958,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01521-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821752.203294,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01522-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821752.287118,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01523-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821752.437037,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01524-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821752.486206,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01525-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821752.636796,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01526-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821752.686275,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01527-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821752.833075,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01528-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821752.882154,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01529-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821753.030870,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01530-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821753.079475,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01531-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821753.231627,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01532-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821753.280296,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01533-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821753.429132,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01534-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821753.610396,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01535-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821753.622061,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01536-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821753.667741,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01537-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821753.813138,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01538-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821753.899095,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01539-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821754.010546,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01540-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821754.088700,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01541-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821754.201266,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01542-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821754.282029,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01543-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821754.444429,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01544-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821754.504392,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01545-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821754.633600,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01546-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821754.695077,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01547-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821754.806710,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01548-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821754.905513,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01549-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821755.019394,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01550-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821755.064504,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01551-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821755.243933,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01552-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821755.306328,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01553-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821755.430394,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01554-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821755.515534,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01555-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821755.630864,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01556-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821755.678562,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01557-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821755.828232,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01558-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821755.881302,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01559-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821756.044578,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01560-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821756.109248,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01561-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821756.227244,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01562-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821756.276939,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01563-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821756.423258,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01564-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821756.469723,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01565-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821756.617906,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01566-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821756.662654,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01567-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821756.842633,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01568-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821756.889468,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01569-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821757.035591,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01570-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821757.080833,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01571-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821757.229753,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01572-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821757.277624,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01573-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821757.441786,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01574-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821757.491274,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01575-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821757.639823,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01576-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821757.687814,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01577-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821757.837781,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01578-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821757.884517,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01579-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821758.030859,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01580-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821758.079131,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01581-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821758.227500,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01582-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821758.275781,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01583-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821758.423947,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01584-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821758.605218,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01585-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821758.619002,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01586-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821758.666747,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01587-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821758.814918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01588-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821758.896652,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01589-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821759.010146,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01590-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821759.089051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01591-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821759.202046,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01592-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821759.281543,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01593-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821759.427661,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01594-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821759.473271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01595-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821759.620902,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01596-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821759.669413,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01597-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821759.818069,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01598-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821759.901232,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01599-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821760.017037,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01600-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821760.069974,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01601-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821760.218109,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01602-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821760.298085,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01603-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821760.410001,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01604-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821760.508833,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01605-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821760.588746,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01606-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821760.701380,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01607-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821760.813878,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01608-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821760.892877,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01609-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821761.007351,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01610-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821761.089632,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01611-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821761.239104,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01612-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821761.288304,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01613-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821761.403251,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01614-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821761.484887,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01615-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821761.600812,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01616-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821761.680051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01617-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821761.826498,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01618-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821761.872177,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01619-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821762.017909,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01620-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821762.098311,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01621-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821762.216356,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01622-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821762.295839,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01623-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821762.444244,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01624-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821762.494242,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01625-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821762.609231,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01626-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821762.691453,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01627-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821762.841954,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01628-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821762.891442,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01629-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821763.019184,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01630-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821763.108227,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01631-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821763.223432,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01632-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821763.270100,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01633-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821763.416001,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01634-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821763.595932,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01635-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821763.606262,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01636-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821763.686217,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01637-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821763.832730,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01638-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821763.878581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01639-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821764.027729,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01640-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821764.076000,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01641-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821764.224456,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01642-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821764.307680,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01643-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821764.422870,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01644-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821764.471107,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01645-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821764.659442,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01646-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821764.662881,'zmc_m1',0,14528,0,'INF','Monitor-1: 87000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510821764.674140,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01647-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821764.820608,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01648-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821764.900901,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01649-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821765.012744,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01650-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821765.092164,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01651-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821765.204802,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01652-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821765.289070,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01653-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821765.437404,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01654-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821765.484641,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01655-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821765.634560,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01656-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821765.682589,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01657-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821765.838403,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01658-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821765.888326,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01659-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821766.037441,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01660-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821766.085779,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01661-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821766.201274,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01662-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821766.315956,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01663-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821766.444430,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01664-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821766.490461,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01665-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821766.603310,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01666-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821766.682697,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01667-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821766.828513,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01668-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821766.875123,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01669-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821767.020846,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01670-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821767.068163,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01671-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821767.216071,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01672-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821767.303364,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01673-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821767.421844,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01674-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821767.470662,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01675-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821767.619964,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01676-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821767.668282,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01677-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821767.817040,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01678-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821767.898117,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01679-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821768.010384,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01680-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821768.089638,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01681-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821768.237107,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01682-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821768.287352,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01683-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821768.435100,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01684-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821768.581345,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01685-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821768.629922,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01686-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821768.678314,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01687-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821768.826677,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01688-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821768.875822,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01689-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821769.024191,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01690-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821769.072437,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01691-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821769.221865,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01692-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821769.270519,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01693-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821769.417874,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01694-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821769.462937,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01695-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821769.643985,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01696-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821769.689577,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01697-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821769.851108,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01698-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821769.897029,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01699-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821770.011518,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01700-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821770.064358,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01701-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821770.213015,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01702-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821770.295784,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01703-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821770.413262,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01704-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821770.535153,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01705-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821770.615912,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01706-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821770.699094,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01707-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821770.811435,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01708-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821770.907669,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01709-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821771.022185,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01710-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821771.067279,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01711-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821771.213796,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01712-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821771.262501,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01713-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821771.410105,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01714-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821771.525264,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01715-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821771.607728,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01716-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821771.689694,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01717-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821771.840825,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01718-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821771.890133,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01719-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821772.039496,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01720-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821772.087822,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01721-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821772.234264,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01722-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821772.279713,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01723-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821772.426054,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01724-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821772.472109,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01725-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821772.618823,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01726-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821772.664414,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01727-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821772.853245,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01728-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821772.902283,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01729-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821773.017500,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01730-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821773.064634,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01731-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821773.213607,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01732-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821773.296719,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01733-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821773.411995,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01734-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821773.693358,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01735-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821773.705872,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01736-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821773.716619,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01737-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821773.795724,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01738-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821773.911009,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01739-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821774.024064,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01740-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821774.069291,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01741-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821774.215001,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01742-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821774.294316,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01743-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821774.440743,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01744-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821774.489462,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01745-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821774.637842,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01746-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821774.691837,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01747-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821774.843144,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01748-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821774.892378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01749-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821775.006841,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01750-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821775.089040,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01751-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821775.203815,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01752-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821775.284286,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01753-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821775.409416,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01754-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821775.488512,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01755-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821775.644296,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01756-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821775.691456,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01757-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821775.837961,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01758-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821775.886230,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01759-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821776.034925,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01760-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821776.082337,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01761-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821776.230856,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01762-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821776.278839,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01763-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821776.427297,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01764-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821776.477837,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01765-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821776.627292,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01766-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821776.676234,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01767-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821776.822230,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01768-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821776.901111,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01769-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821777.013378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01770-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821777.093321,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01771-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821777.242094,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01772-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821777.287868,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01773-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821777.434677,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01774-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821777.480360,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01775-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821777.628274,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01776-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821777.676586,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01777-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821777.825394,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01778-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821777.873588,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01779-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821778.022119,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01780-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821778.106654,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01781-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821778.221615,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01782-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821778.268106,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01783-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821778.414183,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01784-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821778.593053,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01785-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821778.604653,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01786-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821778.683503,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01787-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821778.832682,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01788-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821778.878016,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01789-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.024271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01790-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.070917,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01791-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.219059,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01792-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.300583,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01793-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.416574,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01794-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.499256,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01795-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.614747,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01796-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.697107,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01797-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.811248,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01798-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.908420,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01799-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821779.987627,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01800-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821780.068866,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01801-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821780.213124,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01802-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821780.293229,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01803-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821780.439631,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01804-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821780.485188,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01805-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821780.637520,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01806-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821780.687835,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01807-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821780.837097,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01808-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821780.885878,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01809-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821781.002813,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01810-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821781.086019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01811-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821781.237038,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01812-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821781.285553,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01813-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821781.433729,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01814-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821781.479379,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01815-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821781.623788,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01816-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821781.669745,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01817-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821781.815414,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01818-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821781.896333,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01819-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821782.008531,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01820-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821782.103444,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01821-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821782.232581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01822-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821782.286012,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01823-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821782.430092,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01824-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821782.488563,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01825-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821782.642928,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01826-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821782.691452,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01827-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821782.841140,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01828-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821782.891017,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01829-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821783.014537,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01830-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821783.094853,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01831-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821783.208309,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01832-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821783.299031,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01833-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821783.424438,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01834-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821783.603813,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01835-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821783.616157,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01836-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821783.663467,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01837-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821783.813283,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01838-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821783.896667,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01839-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821784.012675,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01840-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821784.097853,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01841-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821784.214005,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01842-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821784.260758,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01843-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821784.410188,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01844-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821784.494934,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01845-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821784.608245,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01846-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821784.688576,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01847-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821784.851742,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01848-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821784.905293,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01849-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821785.018480,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01850-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821785.065711,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01851-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821785.225690,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01852-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821785.323944,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01853-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821785.412937,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01854-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821785.496325,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01855-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821785.618028,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01856-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821785.704638,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01857-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821785.825538,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01858-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821785.871716,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01859-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821786.016699,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01860-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821786.097260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01861-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821786.219681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01862-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821786.298737,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01863-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821786.410182,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01864-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821786.497903,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01865-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821786.609717,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01866-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821786.691955,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01867-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821786.807404,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01868-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821786.889736,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01869-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821787.047975,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01870-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821787.096749,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01871-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821787.215869,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01872-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821787.307370,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01873-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821787.423907,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01874-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821787.503329,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01875-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821787.615273,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01876-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821787.695442,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01877-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821787.844084,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01878-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821787.889942,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01879-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821788.036169,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01880-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821788.081654,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01881-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821788.227491,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01882-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821788.275294,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01883-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821788.457551,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01884-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821788.606441,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01885-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821788.620248,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01886-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821788.703135,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01887-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821788.824198,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01888-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821788.909453,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01889-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821789.023882,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01890-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821789.119565,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01891-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821789.216024,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01892-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821789.319845,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01893-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821789.432942,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01894-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821789.479765,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01895-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821789.627887,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01896-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821789.676583,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01897-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821789.827969,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01898-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821789.887827,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01899-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821790.043083,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01900-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821790.099572,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01901-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821790.211648,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01902-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821790.290652,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01903-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821790.404772,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01904-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821790.518653,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01905-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821790.635086,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01906-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821790.681224,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01907-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821790.842798,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01908-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821790.896377,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01909-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821791.009519,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01910-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821791.091700,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01911-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821791.206353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01912-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821791.287347,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01913-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821791.447750,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01914-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821791.508459,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01915-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821791.627536,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01916-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821791.678831,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01917-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821791.841947,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01918-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821791.898881,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01919-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821792.019227,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01920-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821792.064728,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01921-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821792.215286,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01922-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821792.294127,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01923-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821792.442958,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01924-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821792.491649,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01925-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821792.639572,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01926-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821792.703422,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01927-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821792.834637,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01928-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821792.882374,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01929-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821793.008066,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01930-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821793.098957,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01931-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821793.212174,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01932-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821793.290816,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01933-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821793.402929,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01934-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821793.614567,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01935-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821793.633713,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01936-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821793.680207,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01937-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821793.811821,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01938-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821793.895320,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01939-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821794.011374,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01940-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821794.093442,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01941-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821794.210447,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01942-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821794.304354,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01943-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821794.419627,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01944-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821794.474026,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01945-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821794.620329,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01946-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821794.699425,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01947-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821794.813755,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01948-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821794.895129,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01949-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821795.007292,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01950-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821795.086754,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01951-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821795.232968,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01952-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821795.278683,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01953-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821795.395363,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01954-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821795.484260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01955-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821795.632916,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01956-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821795.697873,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01957-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821795.824281,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01958-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821795.909074,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01959-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.024724,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01960-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.072460,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01961-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.218580,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01962-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.264653,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01963-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.411989,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01964-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.491149,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01965-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.637535,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01966-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.683591,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01967-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.829151,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01968-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.875739,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01969-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821796.992430,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01970-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821797.107987,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01971-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821797.223483,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01972-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821797.307216,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01973-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821797.422556,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01974-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821797.486011,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01975-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821797.635944,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01976-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821797.683981,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01977-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821797.831019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01978-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821797.879518,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01979-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821798.026054,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01980-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821798.107834,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01981-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821798.230889,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01982-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821798.277217,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01983-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821798.423119,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01984-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821798.601558,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01985-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821798.649311,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01986-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821798.663086,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01987-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821798.844981,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01988-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821798.894540,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01989-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821799.009182,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01990-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821799.091462,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01991-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821799.206484,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01992-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821799.285824,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01993-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821799.434248,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01994-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821799.479840,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01995-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821799.626457,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01996-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821799.671976,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01997-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821799.818354,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01998-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821799.902249,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/01999-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821800.016729,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02000-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821800.069053,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02001-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821800.217017,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02002-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821800.265489,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02003-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821800.413301,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02004-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821800.502273,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02005-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821800.616873,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02006-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821800.696567,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02007-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821800.842942,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02008-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821800.888547,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02009-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821801.034794,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02010-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821801.080551,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02011-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821801.227423,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02012-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821801.274828,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02013-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821801.425878,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02014-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821801.474865,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02015-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821801.623618,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02016-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821801.707016,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02017-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821801.828421,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02018-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821801.876540,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02019-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821802.025169,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02020-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821802.072947,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02021-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821802.219076,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02022-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821802.264302,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02023-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821802.443662,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02024-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821802.489093,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02025-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821802.635687,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02026-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821802.680899,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02027-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821802.829086,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02028-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821802.885371,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02029-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821803.034939,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02030-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821803.084024,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02031-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821803.192610,'zma_m1',0,16593,0,'INF','Monitor-1: 5000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510821803.206664,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02032-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821803.290447,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02033-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821803.410499,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02034-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821803.625346,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02035-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821803.637163,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02036-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821803.682618,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02037-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821803.828752,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02038-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821803.875554,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02039-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821804.021383,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02040-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821804.070283,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02041-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821804.219044,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02042-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821804.301971,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02043-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821804.417445,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02044-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821804.465966,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02045-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821804.616063,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02046-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821804.698645,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02047-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821804.815999,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02048-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821804.860753,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02049-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821805.041466,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02050-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821805.087535,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02051-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821805.234318,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02052-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821805.280065,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02053-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821805.425454,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02054-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821805.471139,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02055-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821805.619567,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02056-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821805.688282,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02057-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821805.838151,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02058-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821805.886825,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02059-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821806.036008,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02060-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821806.084441,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02061-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821806.240303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02062-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821806.293360,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02063-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821806.440238,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02064-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821806.487085,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02065-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821806.633396,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02066-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821806.679098,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02067-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821806.825431,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02068-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821806.871491,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02069-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821807.018091,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02070-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821807.100012,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02071-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821807.215267,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02072-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821807.297255,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02073-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821807.412074,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02074-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821807.494353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02075-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821807.643745,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02076-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821807.693589,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02077-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821807.842436,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02078-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821807.892298,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02079-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821808.038988,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02080-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821808.085223,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02081-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821808.231342,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02082-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821808.277700,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02083-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821808.423736,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02084-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821808.602167,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02085-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821808.614594,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02086-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821808.695464,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02087-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821808.813292,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02088-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821808.896245,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02089-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821809.011049,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02090-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821809.092403,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02091-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821809.241999,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02092-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821809.290074,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02093-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821809.404911,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02094-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821809.486978,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02095-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821809.600273,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02096-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821809.679105,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02097-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821809.825510,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02098-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821809.872272,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02099-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821810.017592,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02100-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821810.066159,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02101-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821810.213394,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02102-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821810.296035,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02103-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821810.412078,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02104-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821810.496931,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02105-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821810.612280,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02106-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821810.694536,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02107-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821810.810665,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02108-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821810.899671,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02109-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821811.014229,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02110-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821811.095102,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02111-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821811.207678,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02112-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821811.286983,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02113-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821811.433268,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02114-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821811.479092,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02115-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821811.625310,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02116-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821811.670794,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02117-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821811.818342,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02118-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821811.866829,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02119-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821812.015055,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02120-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821812.065760,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02121-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821812.214785,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02122-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821812.262888,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02123-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821812.411042,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02124-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821812.459051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02125-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821812.608301,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02126-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821812.691928,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02127-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821812.804177,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02128-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821812.884581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02129-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821813.031252,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02130-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821813.076238,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02131-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821813.223797,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02132-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821813.270103,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02133-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821813.417602,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02134-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821813.598837,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02135-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821813.612638,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02136-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821813.696554,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02137-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821813.811523,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02138-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821813.895393,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02139-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821814.017727,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02140-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821814.100600,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02141-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821814.216296,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02142-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821814.296279,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02143-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821814.408002,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02144-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821814.488634,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02145-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821814.603193,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02146-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821814.684380,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02147-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821814.833155,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02148-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821814.881258,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02149-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821815.029032,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02150-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821815.076964,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02151-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821815.225096,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02152-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821815.270746,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02153-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821815.417716,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02154-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821815.497578,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02155-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821815.611198,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02156-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821815.691379,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02157-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821815.804401,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02158-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821815.884199,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02159-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821816.029827,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02160-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821816.077906,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02161-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821816.227102,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02162-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821816.275383,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02163-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821816.424475,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02164-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821816.472822,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02165-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821816.590003,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02166-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821816.703947,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02167-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821816.819682,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02168-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821816.899765,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02169-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821817.013316,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02170-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821817.093086,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02171-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821817.205756,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02172-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821817.285864,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02173-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821817.399624,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02174-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821817.516119,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02175-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821817.628716,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02176-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821817.681136,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02177-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821817.832490,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02178-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821817.880222,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02179-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821818.032013,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02180-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821818.079911,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02181-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821818.228347,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02182-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821818.279384,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02183-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821818.433555,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02184-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821818.578158,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02185-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821818.624681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02186-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821818.670756,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02187-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821818.821418,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02188-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821818.866346,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02189-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821819.012466,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02190-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821819.098278,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02191-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821819.216018,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02192-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821819.263881,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02193-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821819.411811,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02194-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821819.514946,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02195-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821819.630702,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02196-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821819.698056,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02197-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821819.811072,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02198-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821819.890622,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02199-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821820.037099,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02200-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821820.054643,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02201-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821820.235771,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02202-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821820.281664,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02203-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821820.427428,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02204-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821820.474349,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02205-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821820.623061,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02206-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821820.671655,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02207-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821820.820904,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02208-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821820.904114,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02209-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821821.024383,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02210-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821821.107114,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02211-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821821.222744,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02212-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821821.269986,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02213-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821821.416587,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02214-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821821.495848,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02215-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821821.646297,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02216-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821821.701568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02217-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821821.813820,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02218-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821821.896343,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02219-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821822.042702,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02220-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821822.091153,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02221-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821822.247827,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02222-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821822.297765,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02223-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821822.412314,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02224-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821822.494016,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02225-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821822.644197,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02226-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821822.692191,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02227-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821822.840818,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02228-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821822.888730,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02229-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821823.034761,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02230-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821823.080568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02231-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821823.226774,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02232-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821823.272676,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02233-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821823.418776,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02234-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821823.597173,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02235-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821823.608187,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02236-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821823.653242,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02237-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821823.835376,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02238-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821823.883064,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02239-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821824.041218,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02240-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821824.090663,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02241-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821824.207378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02242-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821824.289036,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02243-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821824.437656,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02244-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821824.485177,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02245-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821824.597450,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02246-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821824.709944,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02247-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821824.823238,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02248-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821824.867842,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02249-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821825.014182,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02250-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821825.094032,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02251-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821825.206997,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02252-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821825.291146,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02253-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821825.407118,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02254-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821825.454739,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02255-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821825.639126,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02256-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821825.688532,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02257-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821825.837069,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02258-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821825.885602,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02259-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821826.034725,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02260-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821826.094912,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02261-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821826.242441,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02262-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821826.288105,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02263-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821826.434556,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02264-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821826.480889,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02265-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821826.626749,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02266-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821826.672203,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02267-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821826.821792,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02268-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821826.870951,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02269-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821827.025126,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02270-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821827.073869,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02271-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821827.222814,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02272-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821827.270856,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02273-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821827.422569,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02274-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821827.505921,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02275-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821827.620526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02276-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821827.666793,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02277-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821827.812450,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02278-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821827.893293,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02279-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.046307,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02280-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.092759,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02281-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.203732,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02282-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.283265,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02283-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.432495,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02284-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.588260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02285-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.602012,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02286-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.682977,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02287-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.831794,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02288-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.880528,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02289-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821828.996869,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02290-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821829.112206,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02291-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821829.226436,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02292-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821829.272213,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02293-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821829.417761,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02294-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821829.462543,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02295-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821829.645824,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02296-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821829.695209,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02297-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821829.809452,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02298-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821829.894193,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02299-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821830.010673,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02300-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821830.098457,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02301-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821830.210663,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02302-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821830.296979,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02303-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821830.410529,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02304-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821830.491121,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02305-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821830.637652,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02306-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821830.683610,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02307-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821830.829923,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02308-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821830.881689,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02309-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821831.029737,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02310-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821831.078052,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02311-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821831.228201,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02312-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821831.277261,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02313-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821831.426935,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02314-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821831.472414,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02315-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821831.618293,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02316-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821831.663774,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02317-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821831.810268,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02318-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821831.889635,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02319-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821832.040264,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02320-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821832.086368,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02321-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821832.200459,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02322-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821832.282689,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02323-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821832.431768,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02324-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821832.517861,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02325-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821832.632697,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02326-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821832.680433,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02327-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821832.844837,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02328-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821832.894497,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02329-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821833.008734,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02330-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821833.087950,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02331-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821833.234374,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02332-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821833.281062,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02333-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821833.439830,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02334-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821833.586318,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02335-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821833.632322,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02336-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821833.679537,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02337-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821833.825476,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02338-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821833.873356,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02339-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821834.021700,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02340-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821834.069585,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02341-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821834.217313,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02342-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821834.266311,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02343-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821834.414940,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02344-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821834.498112,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02345-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821834.612678,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02346-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821834.692063,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02347-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821834.838553,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02348-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821834.883996,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02349-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821835.030310,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02350-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821835.076375,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02351-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821835.222880,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02352-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821835.268016,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02353-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821835.414266,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02354-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821835.495632,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02355-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821835.609638,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02356-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821835.692795,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02357-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821835.841589,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02358-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821835.890892,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02359-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821836.006474,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02360-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821836.088563,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02361-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821836.237500,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02362-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821836.282920,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02363-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821836.428599,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02364-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821836.474034,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02365-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821836.620141,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02366-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821836.665371,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02367-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821836.810937,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02368-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821836.890872,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02369-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821837.007268,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02370-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821837.090919,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02371-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821837.205947,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02372-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821837.289446,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02373-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821837.438179,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02374-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821837.486326,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02375-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821837.618667,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02376-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821837.704284,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02377-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821837.850375,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02378-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821837.864712,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02379-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821838.010690,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02380-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821838.090316,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02381-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821838.202847,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02382-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821838.282091,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02383-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821838.430272,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02384-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821838.609809,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02385-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821838.623807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02386-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821838.684466,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02387-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821838.834222,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02388-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821838.882179,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02389-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821839.030352,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02390-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821839.082828,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02391-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821839.234923,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02392-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821839.282035,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02393-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821839.428919,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02394-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821839.473949,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02395-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821839.622531,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02396-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821839.668684,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02397-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821839.781516,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02398-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821839.894131,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02399-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821840.007444,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02400-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821840.093247,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02401-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821840.242604,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02402-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821840.291527,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02403-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821840.406491,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02404-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821840.489047,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02405-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821840.638238,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02406-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821840.686793,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02407-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821840.832684,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02408-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821840.896483,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02409-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821841.008488,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02410-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821841.088569,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02411-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821841.202134,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02412-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821841.281043,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02413-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821841.428876,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02414-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821841.474822,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02415-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821841.623822,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02416-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821841.672110,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02417-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821841.836755,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02418-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821841.885359,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02419-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821842.036260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02420-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821842.084861,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02421-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821842.199378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02422-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821842.281135,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02423-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821842.429357,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02424-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821842.474680,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02425-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821842.621055,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02426-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821842.666365,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02427-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821842.812422,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02428-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821842.893259,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02429-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821843.046621,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02430-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821843.092696,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02431-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821843.213716,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02432-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821843.296171,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02433-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821843.410782,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02434-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821843.597367,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02435-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821843.612055,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02436-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821843.693977,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02437-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821843.815708,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02438-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821843.898408,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02439-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821844.012827,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02440-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821844.092125,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02441-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821844.241403,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02442-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821844.287109,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02443-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821844.434133,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02444-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821844.480251,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02445-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821844.593876,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02446-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821844.709566,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02447-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821844.822901,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02448-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821844.870865,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02449-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821845.019354,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02450-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821845.101356,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02451-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821845.216873,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02452-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821845.300669,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02453-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821845.415878,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02454-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821845.501781,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02455-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821845.615271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02456-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821845.697366,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02457-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821845.809835,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02458-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821845.891737,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02459-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821846.038584,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02460-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821846.084588,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02461-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821846.197109,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02462-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821846.276621,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02463-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821846.424664,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02464-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821846.473051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02465-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821846.626089,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02466-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821846.709444,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02467-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821846.828626,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02468-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821846.877853,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02469-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821847.026959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02470-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821847.075216,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02471-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821847.255078,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02472-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821847.266176,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02473-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821847.411445,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02474-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821847.491285,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02475-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821847.645518,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02476-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821847.691283,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02477-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821847.839268,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02478-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821847.885433,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02479-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821848.000531,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02480-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821848.083029,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02481-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821848.198976,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02482-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821848.280638,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02483-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821848.429401,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02484-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821848.577099,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02485-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821848.624663,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02486-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821848.672822,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02487-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821848.820941,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02488-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821848.866225,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02489-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821849.011903,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02490-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821849.090944,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02491-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821849.237595,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02492-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821849.285769,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02493-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821849.432812,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02494-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821849.479754,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02495-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821849.627997,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02496-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821849.675984,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02497-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821849.827811,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02498-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821849.909964,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02499-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821850.025979,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02500-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821850.079891,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02501-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821850.233011,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02502-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821850.280550,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02503-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821850.426727,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02504-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821850.473425,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02505-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821850.619340,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02506-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821850.664905,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02507-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821850.809912,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02508-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821850.893220,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02509-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821851.037999,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02510-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821851.075084,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02511-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821851.225715,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02512-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821851.273531,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02513-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821851.422458,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02514-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821851.470330,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02515-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821851.634534,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02516-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821851.683372,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02517-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821851.833379,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02518-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821851.880357,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02519-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821852.028270,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02520-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821852.075821,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02521-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821852.222236,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02522-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821852.268476,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02523-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821852.415378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02524-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821852.499732,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02525-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821852.615946,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02526-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821852.699533,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02527-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821852.814142,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02528-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821852.861124,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02529-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821853.010543,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02530-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821853.093113,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02531-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821853.208421,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02532-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821853.306212,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02533-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821853.421112,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02534-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821853.633683,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02535-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821853.679168,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02536-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821853.691187,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02537-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821853.837112,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02538-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821853.898359,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02539-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821854.014488,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02540-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821854.093504,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02541-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821854.242479,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02542-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821854.292025,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02543-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821854.441266,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02544-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821854.490393,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02545-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821854.640285,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02546-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821854.692454,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02547-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821854.841478,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02548-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821854.905264,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02549-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821855.019790,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02550-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821855.065272,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02551-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821855.211249,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02552-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821855.294108,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02553-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821855.441273,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02554-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821855.487375,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02555-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821855.633170,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02556-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821855.681170,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02557-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821855.830011,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02558-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821855.878111,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02559-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821856.026615,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02560-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821856.075283,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02561-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821856.227839,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02562-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821856.276106,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02563-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821856.440149,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02564-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821856.489508,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02565-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821856.635814,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02566-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821856.681380,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02567-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821856.827422,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02568-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821856.873647,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02569-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821857.020352,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02570-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821857.065607,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02571-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821857.212051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02572-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821857.257725,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02573-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821857.439669,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02574-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821857.487783,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02575-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821857.636104,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02576-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821857.684944,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02577-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821857.834668,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02578-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821857.883439,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02579-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821858.032943,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02580-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821858.082019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02581-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821858.228621,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02582-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821858.274393,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02583-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821858.421278,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02584-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821858.599630,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02585-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821858.644630,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02586-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821858.690300,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02587-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821858.836495,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02588-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821858.883051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02589-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821859.031620,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02590-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821859.080095,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02591-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821859.244149,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02592-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821859.309213,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02593-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821859.426157,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02594-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821859.474128,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02595-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821859.623486,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02596-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821859.671688,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02597-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821859.817595,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02598-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821859.862615,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02599-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821860.042175,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02600-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821860.090982,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02601-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821860.237077,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02602-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821860.281984,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02603-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821860.427822,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02604-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821860.473657,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02605-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821860.620254,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02606-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821860.666684,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02607-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821860.813385,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02608-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821860.892178,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02609-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821861.041566,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02610-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821861.091683,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02611-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821861.239968,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02612-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821861.303803,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02613-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821861.424573,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02614-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821861.473652,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02615-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821861.623286,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02616-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821861.671503,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02617-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821861.821172,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02618-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821861.865951,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02619-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821862.012697,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02620-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821862.058276,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02621-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821862.204747,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02622-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821862.284319,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02623-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821862.430967,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02624-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821862.476371,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02625-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821862.625347,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02626-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821862.674252,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02627-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821862.822324,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02628-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821862.874448,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02629-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821863.023456,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02630-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821863.071446,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02631-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821863.225260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02632-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821863.273390,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02633-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821863.419463,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02634-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821863.597959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02635-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821863.608915,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02636-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821863.697237,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02637-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821863.809407,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02638-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821863.904471,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02639-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821864.032788,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02640-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821864.079039,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02641-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821864.227220,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02642-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821864.275505,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02643-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821864.426869,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02644-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821864.474976,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02645-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821864.623270,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02646-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821864.654630,'zmc_m1',0,14528,0,'INF','Monitor-1: 88000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510821864.672253,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02647-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821864.821861,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02648-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821864.868335,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02649-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821865.013776,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02650-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821865.105676,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02651-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821865.223869,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02652-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821865.275238,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02653-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821865.419746,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02654-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821865.499876,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02655-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821865.612681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02656-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821865.692591,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02657-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821865.841094,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02658-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821865.904597,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02659-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821866.036550,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02660-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821866.085590,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02661-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821866.199946,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02662-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821866.281007,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02663-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821866.430336,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02664-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821866.478707,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02665-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821866.625119,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02666-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821866.671065,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02667-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821866.819107,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02668-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821866.863498,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02669-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.009365,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02670-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.089007,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02671-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.218043,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02672-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.265584,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02673-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.415498,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02674-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.498446,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02675-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.613346,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02676-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.661023,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02677-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.851283,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02678-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.915072,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02679-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821867.998965,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02680-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821868.111357,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02681-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821868.225066,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02682-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821868.271913,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02683-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821868.384545,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02684-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821868.630923,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02685-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821868.642740,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02686-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821868.688811,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02687-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821868.835118,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02688-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821868.883237,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02689-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821869.031481,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02690-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821869.079436,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02691-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821869.228144,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02692-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821869.275937,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02693-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821869.427251,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02694-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821869.477250,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02695-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821869.639526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02696-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821869.685593,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02697-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821869.801285,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02698-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821869.880886,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02699-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821870.027184,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02700-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821870.073983,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02701-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821870.221147,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02702-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821870.266076,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02703-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821870.415345,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02704-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821870.498613,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02705-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821870.614159,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02706-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821870.698024,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02707-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821870.812239,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02708-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821870.919848,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02709-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821871.037603,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02710-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821871.086189,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02711-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821871.199741,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02712-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821871.279935,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02713-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821871.428885,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02714-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821871.474237,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02715-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821871.620504,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02716-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821871.666952,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02717-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821871.812897,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02718-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821871.894418,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02719-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821872.008376,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02720-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821872.058080,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02721-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821872.239429,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02722-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821872.287744,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02723-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821872.437784,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02724-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821872.485701,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02725-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821872.634315,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02726-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821872.682679,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02727-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821872.830258,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02728-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821872.875830,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02729-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821873.020875,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02730-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821873.066047,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02731-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821873.211232,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02732-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821873.268039,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02733-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821873.414609,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02734-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821873.628924,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02735-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821873.642018,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02736-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821873.689813,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02737-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821873.838128,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02738-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821873.886273,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02739-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821874.038613,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02740-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821874.087271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02741-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821874.236064,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02742-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821874.283993,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02743-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821874.431006,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02744-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821874.476536,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02745-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821874.622544,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02746-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821874.674092,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02747-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821874.785398,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02748-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821874.863658,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02749-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821875.009051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02750-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821875.090719,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02751-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821875.247690,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02752-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821875.296114,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02753-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821875.412768,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02754-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821875.495045,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02755-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821875.609172,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02756-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821875.691773,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02757-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821875.847036,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02758-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821875.892684,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02759-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821876.039204,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02760-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821876.085306,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02761-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821876.232269,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02762-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821876.278434,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02763-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821876.423422,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02764-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821876.470636,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02765-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821876.616812,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02766-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821876.665042,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02767-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821876.813344,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02768-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821876.896634,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02769-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821877.011118,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02770-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821877.093822,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02771-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821877.209174,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02772-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821877.258568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02773-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821877.407359,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02774-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821877.486273,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02775-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821877.635461,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02776-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821877.696172,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02777-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821877.842534,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02778-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821877.889043,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02779-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821878.035436,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02780-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821878.084568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02781-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821878.230958,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02782-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821878.279097,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02783-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821878.427807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02784-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821878.610428,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02785-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821878.623978,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02786-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821878.672744,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02787-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821878.821359,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02788-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821878.869370,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02789-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821879.021547,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02790-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821879.066783,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02791-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821879.212930,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02792-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821879.258302,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02793-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821879.403987,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02794-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821879.484081,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02795-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821879.597686,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02796-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821879.676958,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02797-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821879.823574,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02798-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821879.872010,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02799-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821880.020661,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02800-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821880.073980,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02801-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821880.222737,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02802-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821880.268989,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02803-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821880.414402,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02804-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821880.458381,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02805-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821880.638356,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02806-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821880.684101,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02807-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821880.829976,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02808-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821880.875850,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02809-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821881.023800,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02810-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821881.071252,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02811-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821881.219346,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02812-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821881.267412,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02813-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821881.418498,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02814-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821881.467658,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02815-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821881.617363,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02816-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821881.666415,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02817-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821881.817000,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02818-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821881.864674,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02819-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821882.044331,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02820-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821882.090170,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02821-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821882.235832,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02822-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821882.282024,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02823-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821882.448297,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02824-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821882.494670,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02825-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821882.648146,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02826-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821882.694852,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02827-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821882.809145,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02828-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821882.891948,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02829-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821883.007681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02830-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821883.090971,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02831-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821883.206927,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02832-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821883.288449,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02833-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821883.405399,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02834-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821883.618508,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02835-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821883.630117,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02836-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821883.675461,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02837-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821883.822868,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02838-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821883.869104,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02839-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821884.015381,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02840-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821884.062561,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02841-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821884.208428,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02842-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821884.291141,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02843-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821884.407340,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02844-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821884.489661,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02845-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821884.639129,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02846-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821884.687382,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02847-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821884.835378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02848-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821884.886789,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02849-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821885.035180,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02850-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821885.115918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02851-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821885.230564,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02852-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821885.275320,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02853-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821885.420819,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02854-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821885.465972,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02855-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821885.611908,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02856-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821885.692234,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02857-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821885.838624,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02858-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821885.901103,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02859-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821886.018015,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02860-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821886.066860,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02861-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821886.215784,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02862-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821886.264524,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02863-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821886.413033,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02864-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821886.459743,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02865-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821886.641448,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02866-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821886.688291,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02867-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821886.834545,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02868-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821886.880337,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02869-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821887.027803,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02870-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821887.073983,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02871-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821887.220323,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02872-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821887.301198,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02873-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821887.413905,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02874-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821887.494146,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02875-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821887.650019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02876-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821887.697964,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02877-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821887.812441,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02878-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821887.893892,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02879-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.042195,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02880-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.089867,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02881-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.238415,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02882-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.285028,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02883-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.433431,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02884-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.614891,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02885-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.633773,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02886-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.679298,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02887-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.825381,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02888-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.870186,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02889-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821888.983916,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02890-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821889.097685,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02891-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821889.212556,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02892-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821889.294095,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02893-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821889.410981,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02894-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821889.493445,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02895-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821889.609038,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02896-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821889.691067,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02897-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821889.839530,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02898-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821889.886901,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02899-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821890.033466,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02900-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821890.082726,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02901-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821890.228715,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02902-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821890.274681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02903-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821890.420784,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02904-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821890.466498,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02905-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821890.617046,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02906-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821890.665257,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02907-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821890.813822,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02908-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821890.903875,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02909-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821891.022364,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02910-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821891.072014,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02911-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821891.218218,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02912-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821891.264159,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02913-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821891.445572,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02914-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821891.457244,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02915-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821891.603490,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02916-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821891.685618,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02917-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821891.833721,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02918-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821891.882809,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02919-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821892.031453,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02920-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821892.083380,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02921-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821892.239217,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02922-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821892.288115,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02923-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821892.404642,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02924-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821892.536688,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02925-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821892.618513,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02926-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821892.664733,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02927-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821892.844626,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02928-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821892.890101,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02929-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.038891,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02930-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.084592,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02931-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.245149,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02932-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.291586,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02933-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.405510,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02934-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.686954,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02935-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.702320,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02936-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.715854,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02937-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.799414,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02938-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.881503,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02939-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821893.997546,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02940-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821894.113047,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02941-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821894.229078,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02942-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821894.275003,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02943-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821894.421181,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02944-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821894.465978,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02945-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821894.611992,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02946-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821894.694035,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02947-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821894.841282,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02948-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821894.887851,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02949-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821895.034314,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02950-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821895.082557,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02951-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821895.231231,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02952-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821895.279486,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02953-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821895.428090,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02954-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821895.476338,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02955-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821895.624528,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02956-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821895.672877,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02957-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821895.819187,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02958-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821895.864753,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02959-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821896.010458,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02960-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821896.056589,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02961-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821896.206091,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02962-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821896.288353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02963-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821896.437271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02964-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821896.489583,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02965-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821896.640783,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02966-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821896.689709,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02967-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821896.839650,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02968-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821896.886428,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02969-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821897.032493,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02970-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821897.078015,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02971-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821897.223643,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02972-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821897.269498,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02973-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821897.416157,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02974-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821897.498424,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02975-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821897.612278,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02976-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821897.659739,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02977-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821897.808751,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02978-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821897.856020,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02979-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821898.005663,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02980-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821898.053629,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02981-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821898.236986,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02982-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821898.285948,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02983-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821898.434159,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02984-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821898.579430,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02985-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821898.625686,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02986-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821898.671561,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02987-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821898.817499,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02988-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821898.897281,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02989-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821899.043432,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02990-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821899.090547,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02991-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821899.237213,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02992-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821899.285260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02993-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821899.435021,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02994-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821899.483216,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02995-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821899.632777,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02996-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821899.681167,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02997-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821899.829097,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02998-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821899.876910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/02999-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821900.027634,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03000-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821900.076611,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03001-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821900.222346,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03002-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821900.268687,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03003-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821900.414378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03004-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821900.511557,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03005-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821900.627918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03006-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821900.709914,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03007-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821900.825080,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03008-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821900.872883,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03009-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821901.021789,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03010-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821901.070256,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03011-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821901.219190,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03012-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821901.266021,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03013-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821901.410933,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03014-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821901.490260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03015-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821901.637616,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03016-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821901.683193,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03017-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821901.829178,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03018-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821901.875125,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03019-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821902.020934,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03020-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821902.067737,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03021-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821902.215718,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03022-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821902.262479,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03023-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821902.410813,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03024-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821902.495774,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03025-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821902.610820,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03026-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821902.696453,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03027-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821902.812332,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03028-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821902.893889,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03029-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821903.042658,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03030-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821903.089398,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03031-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821903.227317,'zma_m1',0,16593,0,'INF','Monitor-1: 6000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510821903.238089,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03032-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821903.283528,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03033-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821903.429484,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03034-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821903.607581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03035-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821903.620383,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03036-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821903.667941,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03037-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821903.816604,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03038-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821903.898971,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03039-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821904.014047,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03040-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821904.097327,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03041-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821904.178900,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03042-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821904.260334,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03043-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821904.407228,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03044-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821904.486833,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03045-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821904.632964,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03046-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821904.678507,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03047-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821904.824151,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03048-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821904.869386,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03049-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821905.017754,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03050-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821905.062836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03051-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821905.209612,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03052-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821905.308704,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03053-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821905.428971,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03054-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821905.478140,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03055-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821905.627872,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03056-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821905.677570,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03057-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821905.827773,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03058-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821905.877212,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03059-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821906.025384,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03060-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821906.071179,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03061-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821906.216860,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03062-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821906.261351,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03063-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821906.408518,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03064-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821906.490969,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03065-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821906.639090,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03066-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821906.688492,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03067-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821906.836918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03068-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821906.887513,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03069-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821907.002156,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03070-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821907.083876,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03071-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821907.232008,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03072-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821907.283800,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03073-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821907.434775,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03074-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821907.480291,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03075-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821907.596170,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03076-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821907.710597,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03077-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821907.833861,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03078-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821907.879148,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03079-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821908.025499,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03080-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821908.071379,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03081-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821908.218773,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03082-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821908.267174,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03083-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821908.415305,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03084-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821908.597045,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03085-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821908.610620,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03086-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821908.694313,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03087-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821908.811813,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03088-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821908.894550,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03089-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821909.008493,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03090-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821909.088169,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03091-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821909.238678,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03092-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821909.284363,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03093-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821909.431507,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03094-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821909.477580,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03095-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821909.624163,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03096-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821909.670574,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03097-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821909.817966,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03098-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821909.866022,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03099-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821910.015353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03100-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821910.068285,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03101-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821910.217297,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03102-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821910.265699,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03103-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821910.414442,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03104-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821910.460490,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03105-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821910.608746,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03106-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821910.690770,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03107-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821910.843025,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03108-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821910.888823,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03109-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821911.059789,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03110-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821911.105936,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03111-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821911.185621,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03112-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821911.266614,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03113-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821911.419284,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03114-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821911.467190,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03115-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821911.615529,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03116-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821911.663287,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03117-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821911.811683,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03118-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821911.896071,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03119-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821912.009930,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03120-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821912.089491,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03121-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821912.202325,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03122-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821912.281949,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03123-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821912.428571,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03124-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821912.474799,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03125-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821912.630084,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03126-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821912.678700,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03127-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821912.826765,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03128-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821912.875419,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03129-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821913.024353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03130-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821913.072858,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03131-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821913.224432,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03132-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821913.272315,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03133-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821913.420190,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03134-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821913.600015,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03135-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821913.612222,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03136-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821913.694928,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03137-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821913.808049,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03138-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821913.887622,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03139-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821914.033797,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03140-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821914.083370,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03141-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821914.229186,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03142-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821914.276127,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03143-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821914.394535,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03144-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821914.512650,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03145-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821914.598078,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03146-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821914.680106,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03147-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821914.828842,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03148-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821914.876906,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03149-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821915.025368,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03150-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821915.073277,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03151-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821915.219370,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03152-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821915.299709,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03153-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821915.412360,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03154-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821915.491580,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03155-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821915.639362,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03156-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821915.685220,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03157-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821915.831452,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03158-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821915.878259,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03159-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821916.028290,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03160-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821916.076521,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03161-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821916.225336,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03162-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821916.273628,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03163-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821916.421639,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03164-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821916.469559,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03165-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821916.617778,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03166-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821916.664937,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03167-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821916.811783,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03168-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821916.906303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03169-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821917.020564,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03170-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821917.066165,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03171-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821917.212891,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03172-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821917.258129,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03173-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821917.436843,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03174-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821917.486347,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03175-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821917.634297,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03176-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821917.683081,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03177-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821917.836258,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03178-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821917.884184,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03179-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821918.000598,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03180-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821918.082165,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03181-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821918.231529,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03182-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821918.278243,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03183-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821918.424606,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03184-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821918.603055,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03185-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821918.613832,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03186-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821918.693923,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03187-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821918.840878,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03188-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821918.886279,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03189-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821919.032291,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03190-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821919.080011,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03191-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821919.228244,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03192-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821919.293006,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03193-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821919.408568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03194-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821919.489624,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03195-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821919.621109,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03196-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821919.705064,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03197-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821919.819658,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03198-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821919.865852,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03199-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821920.011146,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03200-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821920.059428,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03201-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821920.238720,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03202-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821920.284599,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03203-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821920.430416,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03204-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821920.477670,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03205-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821920.626049,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03206-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821920.674078,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03207-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821920.822459,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03208-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821920.870798,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03209-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821921.019677,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03210-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821921.110521,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03211-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821921.225683,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03212-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821921.278783,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03213-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821921.425389,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03214-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821921.471660,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03215-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821921.617924,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03216-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821921.705420,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03217-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821921.821539,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03218-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821921.869375,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03219-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821922.017277,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03220-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821922.065303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03221-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821922.214002,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03222-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821922.262130,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03223-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821922.413653,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03224-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821922.461579,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03225-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821922.609417,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03226-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821922.673046,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03227-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821922.824391,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03228-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821922.870855,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03229-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821923.016224,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03230-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821923.096981,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03231-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821923.210595,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03232-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821923.256046,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03233-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821923.435618,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03234-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821923.614857,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03235-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821923.639823,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03236-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821923.687561,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03237-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821923.802970,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03238-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821923.886494,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03239-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821924.036575,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03240-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821924.084408,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03241-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821924.236048,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03242-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821924.286934,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03243-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821924.433523,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03244-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821924.479718,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03245-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821924.626040,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03246-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821924.671798,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03247-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821924.817306,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03248-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821924.861729,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03249-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821925.041526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03250-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821925.090298,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03251-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821925.238176,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03252-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821925.285807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03253-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821925.433992,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03254-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821925.481713,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03255-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821925.631567,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03256-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821925.679429,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03257-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821925.827353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03258-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821925.873850,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03259-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821926.019294,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03260-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821926.064352,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03261-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821926.209681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03262-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821926.288775,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03263-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821926.435868,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03264-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821926.481415,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03265-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821926.629889,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03266-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821926.677115,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03267-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821926.825799,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03268-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821926.874249,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03269-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821927.032375,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03270-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821927.080496,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03271-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821927.242442,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03272-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821927.323149,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03273-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821927.402641,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03274-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821927.515715,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03275-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821927.628269,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03276-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821927.673902,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03277-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821927.819841,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03278-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821927.864742,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03279-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821928.013469,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03280-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821928.061014,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03281-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821928.241645,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03282-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821928.255120,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03283-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821928.436934,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03284-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821928.618013,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03285-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821928.632783,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03286-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821928.679626,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03287-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821928.828243,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03288-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821928.874328,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03289-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821929.020611,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03290-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821929.066332,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03291-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821929.212666,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03292-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821929.257836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03293-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821929.403377,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03294-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821929.485108,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03295-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821929.634705,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03296-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821929.683177,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03297-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821929.831271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03298-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821929.879132,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03299-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821930.032671,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03300-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821930.086579,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03301-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821930.236050,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03302-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821930.282586,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03303-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821930.428436,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03304-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821930.473686,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03305-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821930.620720,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03306-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821930.700105,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03307-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821930.814313,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03308-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821930.896271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03309-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821931.042765,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03310-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821931.090526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03311-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821931.205135,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03312-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821931.287021,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03313-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821931.435478,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03314-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821931.499272,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03315-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821931.616659,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03316-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821931.664363,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03317-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821931.818256,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03318-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821931.902533,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03319-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821932.014999,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03320-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821932.060087,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03321-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821932.240136,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03322-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821932.287220,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03323-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821932.433226,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03324-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821932.478534,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03325-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821932.626021,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03326-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821932.674262,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03327-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821932.822524,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03328-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821932.870850,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03329-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821933.019378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03330-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821933.102876,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03331-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821933.217239,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03332-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821933.266664,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03333-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821933.415562,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03334-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821933.663242,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03335-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821933.708170,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03336-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821933.718947,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03337-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821933.798245,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03338-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821933.877457,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03339-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821934.023935,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03340-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821934.068821,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03341-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821934.214625,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03342-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821934.261581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03343-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821934.410045,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03344-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821934.457475,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03345-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821934.606541,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03346-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821934.654341,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03347-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821934.802381,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03348-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821934.883657,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03349-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821935.032306,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03350-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821935.082406,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03351-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821935.193546,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03352-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821935.271928,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03353-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821935.383980,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03354-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821935.463077,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03355-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821935.608871,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03356-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821935.690859,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03357-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821935.807037,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03358-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821935.888800,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03359-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821936.038190,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03360-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821936.086522,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03361-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821936.201056,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03362-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821936.283255,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03363-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821936.431581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03364-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821936.479439,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03365-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821936.625005,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03366-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821936.670010,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03367-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821936.816018,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03368-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821936.896961,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03369-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821937.009540,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03370-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821937.091739,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03371-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821937.204003,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03372-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821937.283178,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03373-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821937.399675,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03374-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821937.481022,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03375-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821937.633204,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03376-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821937.681854,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03377-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821937.829811,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03378-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821937.878079,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03379-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821938.026206,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03380-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821938.073281,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03381-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821938.220157,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03382-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821938.266133,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03383-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821938.411729,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03384-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821938.625639,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03385-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821938.638570,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03386-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821938.685169,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03387-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821938.831154,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03388-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821938.876564,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03389-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821939.025856,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03390-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821939.079807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03391-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821939.230091,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03392-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821939.278479,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03393-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821939.427909,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03394-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821939.476110,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03395-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821939.592825,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03396-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821939.675417,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03397-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821939.826603,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03398-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821939.872216,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03399-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821940.018437,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03400-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821940.064752,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03401-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821940.210073,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03402-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821940.291875,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03403-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821940.406303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03404-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821940.488338,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03405-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821940.638721,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03406-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821940.688681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03407-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821940.843092,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03408-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821940.891327,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03409-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821941.040061,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03410-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821941.087978,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03411-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821941.202348,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03412-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821941.292294,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03413-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821941.442291,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03414-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821941.493529,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03415-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821941.609692,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03416-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821941.695680,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03417-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821941.812837,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03418-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821941.861700,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03419-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821942.011220,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03420-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821942.095708,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03421-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821942.210362,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03422-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821942.292665,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03423-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821942.407495,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03424-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821942.489122,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03425-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821942.605927,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03426-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821942.689567,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03427-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821942.846262,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03428-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821942.895052,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03429-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821943.009433,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03430-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821943.089365,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03431-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821943.201440,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03432-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821943.316420,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03433-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821943.395551,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03434-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821943.607727,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03435-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821943.619342,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03436-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821943.665322,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03437-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821943.814192,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03438-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821943.902625,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03439-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821944.016467,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03440-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821944.062572,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03441-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821944.207601,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03442-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821944.253045,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03443-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821944.433337,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03444-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821944.479456,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03445-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821944.592318,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03446-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821944.707197,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03447-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821944.823149,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03448-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821944.871433,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03449-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821945.020082,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03450-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821945.121597,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03451-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821945.204134,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03452-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821945.286967,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03453-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821945.442196,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03454-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821945.491189,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03455-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821945.644887,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03456-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821945.690618,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03457-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821945.844535,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03458-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821945.890444,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03459-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821946.036461,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03460-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821946.082436,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03461-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821946.228599,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03462-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821946.275824,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03463-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821946.426559,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03464-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821946.474427,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03465-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821946.628696,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03466-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821946.679209,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03467-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821946.827787,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03468-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821946.877959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03469-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821947.026189,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03470-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821947.072618,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03471-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821947.251003,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03472-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821947.263157,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03473-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821947.408790,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03474-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821947.488189,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03475-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821947.635380,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03476-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821947.682737,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03477-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821947.830946,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03478-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821947.889433,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03479-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821948.039013,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03480-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821948.087594,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03481-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821948.203317,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03482-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821948.319491,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03483-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821948.401229,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03484-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821948.614907,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03485-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821948.626053,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03486-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821948.671681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03487-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821948.820286,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03488-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821948.865826,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03489-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821949.011294,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03490-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821949.093085,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03491-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821949.205711,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03492-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821949.286420,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03493-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821949.400889,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03494-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821949.482055,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03495-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821949.630483,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03496-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821949.678632,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03497-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821949.826520,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03498-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821949.874315,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03499-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.022317,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03500-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.071303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03501-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.217285,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03502-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.263912,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03503-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.410499,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03504-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.455592,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03505-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.602943,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03506-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.682339,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03507-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.830396,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03508-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.878485,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03509-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821950.994371,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03510-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821951.109431,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03511-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821951.226363,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03512-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821951.274567,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03513-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821951.427228,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03514-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821951.475426,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03515-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821951.622711,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03516-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821951.667345,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03517-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821951.812555,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03518-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821951.892619,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03519-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821952.046351,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03520-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821952.092389,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03521-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821952.245937,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03522-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821952.292204,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03523-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821952.421871,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03524-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821952.516798,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03525-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821952.631323,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03526-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821952.680019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03527-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821952.826186,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03528-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821952.872226,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03529-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821953.018802,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03530-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821953.101409,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03531-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821953.182819,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03532-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821953.302955,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03533-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821953.418027,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03534-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821953.599344,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03535-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821953.646807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03536-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821953.660798,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03537-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821953.809089,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03538-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821953.894215,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03539-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821954.044520,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03540-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821954.091998,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03541-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821954.207319,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03542-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821954.287710,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03543-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821954.434777,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03544-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821954.480697,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03545-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821954.626048,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03546-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821954.675300,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03547-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821954.823465,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03548-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821954.871802,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03549-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821955.020250,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03550-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821955.068376,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03551-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821955.217284,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03552-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821955.264781,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03553-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821955.412344,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03554-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821955.493459,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03555-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821955.648578,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03556-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821955.694787,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03557-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821955.807600,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03558-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821955.887079,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03559-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821956.035895,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03560-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821956.082286,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03561-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821956.228629,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03562-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821956.275581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03563-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821956.425647,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03564-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821956.474460,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03565-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821956.624879,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03566-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821956.673651,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03567-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821956.821737,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03568-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821956.872659,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03569-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821957.021127,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03570-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821957.067876,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03571-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821957.214695,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03572-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821957.295598,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03573-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821957.408286,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03574-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821957.487882,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03575-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821957.634699,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03576-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821957.680733,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03577-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821957.829396,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03578-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821957.878616,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03579-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821958.027258,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03580-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821958.075531,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03581-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821958.225571,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03582-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821958.273633,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03583-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821958.424246,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03584-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821958.636127,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03585-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821958.647136,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03586-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821958.658044,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03587-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821958.804416,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03588-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821958.884600,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03589-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821959.032143,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03590-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821959.077277,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03591-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821959.223269,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03592-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821959.271522,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03593-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821959.419930,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03594-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821959.467810,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03595-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821959.616706,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03596-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821959.665351,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03597-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821959.815023,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03598-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821959.898566,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03599-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821960.016755,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03600-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821960.102446,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03601-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821960.215195,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03602-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821960.259879,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03603-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821960.442475,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03604-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821960.488693,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03605-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821960.635364,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03606-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821960.680447,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03607-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821960.829413,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03608-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821960.878363,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03609-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821961.031321,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03610-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821961.079366,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03611-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821961.233166,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03612-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821961.282325,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03613-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821961.397881,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03614-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821961.479296,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03615-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821961.630718,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03616-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821961.676749,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03617-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821961.822759,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03618-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821961.869127,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03619-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821962.013717,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03620-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821962.059708,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03621-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821962.205555,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03622-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821962.284992,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03623-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821962.400350,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03624-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821962.483791,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03625-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821962.632877,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03626-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821962.681504,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03627-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821962.829602,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03628-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821962.877899,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03629-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821963.025883,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03630-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821963.074045,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03631-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821963.220074,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03632-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821963.265612,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03633-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821963.418461,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03634-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821963.597649,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03635-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821963.643757,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03636-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821963.690018,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03637-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821963.802966,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03638-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821963.882387,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03639-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821964.030538,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03640-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821964.082076,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03641-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821964.233009,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03642-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821964.281331,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03643-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821964.430734,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03644-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821964.479589,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03645-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821964.629593,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03646-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821964.673811,'zmc_m1',0,14528,0,'INF','Monitor-1: 89000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510821964.710333,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03647-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821964.788881,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03648-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821964.867648,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03649-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821965.013202,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03650-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821965.060960,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03651-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821965.207402,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03652-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821965.262929,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03653-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821965.411588,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03654-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821965.494354,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03655-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821965.609100,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03656-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821965.657629,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03657-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821965.806019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03658-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821965.887875,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03659-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821966.038644,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03660-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821966.088042,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03661-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821966.200699,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03662-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821966.318127,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03663-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821966.397892,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03664-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821966.482259,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03665-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821966.628805,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03666-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821966.674700,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03667-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821966.820884,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03668-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821966.869009,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03669-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821967.017600,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03670-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821967.064966,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03671-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821967.213934,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03672-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821967.296953,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03673-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821967.413797,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03674-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821967.498297,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03675-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821967.614895,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03676-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821967.696795,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03677-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821967.809793,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03678-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821967.891139,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03679-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821968.040516,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03680-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821968.086545,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03681-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821968.234723,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03682-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821968.281080,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03683-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821968.394764,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03684-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821968.575873,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03685-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821968.600680,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03686-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821968.681829,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03687-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821968.835133,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03688-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821968.895624,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03689-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821969.010419,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03690-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821969.058605,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03691-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821969.240136,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03692-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821969.285921,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03693-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821969.432024,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03694-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821969.477680,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03695-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821969.624232,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03696-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821969.669802,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03697-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821969.816246,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03698-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821969.861131,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03699-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821970.007348,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03700-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821970.096017,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03701-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821970.212291,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03702-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821970.310121,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03703-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821970.426913,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03704-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821970.474781,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03705-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821970.623043,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03706-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821970.672512,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03707-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821970.819152,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03708-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821970.864036,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03709-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821971.025903,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03710-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821971.106596,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03711-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821971.185605,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03712-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821971.264606,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03713-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821971.411240,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03714-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821971.457540,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03715-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821971.606036,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03716-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821971.653694,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03717-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821971.802121,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03718-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821971.885492,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03719-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821972.000490,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03720-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821972.093727,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03721-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821972.209145,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03722-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821972.289462,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03723-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821972.437639,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03724-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821972.483419,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03725-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821972.630156,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03726-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821972.676238,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03727-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821972.822095,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03728-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821972.902528,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03729-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821973.018851,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03730-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821973.088383,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03731-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821973.211263,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03732-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821973.293519,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03733-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821973.409009,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03734-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821973.657559,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03735-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821973.671337,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03736-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821973.719236,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03737-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821973.803504,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03738-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821973.885618,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03739-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821974.033232,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03740-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821974.079015,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03741-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821974.224933,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03742-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821974.270930,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03743-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821974.416973,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03744-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821974.498082,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03745-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821974.612187,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03746-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821974.659217,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03747-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821974.807139,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03748-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821974.894539,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03749-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821975.010210,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03750-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821975.093672,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03751-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821975.210375,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03752-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821975.258762,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03753-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821975.408625,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03754-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821975.455835,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03755-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821975.601396,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03756-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821975.680901,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03757-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821975.827789,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03758-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821975.873050,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03759-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821976.019547,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03760-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821976.065252,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03761-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821976.212882,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03762-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821976.296210,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03763-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821976.412001,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03764-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821976.495801,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03765-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821976.610727,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03766-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821976.694836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03767-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821976.811476,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03768-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821976.896192,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03769-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821977.011785,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03770-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821977.094116,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03771-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821977.206288,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03772-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821977.289467,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03773-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821977.436980,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03774-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821977.485893,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03775-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821977.635180,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03776-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821977.681116,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03777-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821977.828054,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03778-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821977.876049,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03779-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821978.026161,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03780-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821978.074253,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03781-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821978.224048,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03782-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821978.288140,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03783-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821978.404427,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03784-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821978.617542,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03785-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821978.629564,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03786-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821978.674189,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03787-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821978.820579,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03788-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821978.865885,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03789-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821979.013628,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03790-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821979.095283,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03791-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821979.207724,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03792-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821979.288052,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03793-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821979.402801,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03794-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821979.484841,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03795-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821979.634321,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03796-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821979.682683,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03797-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821979.833578,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03798-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821979.882780,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03799-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821980.031188,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03800-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821980.078384,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03801-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821980.224411,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03802-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821980.269821,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03803-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821980.416675,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03804-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821980.497845,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03805-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821980.613277,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03806-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821980.695153,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03807-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821980.810127,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03808-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821980.894144,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03809-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821981.008734,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03810-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821981.056537,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03811-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821981.204946,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03812-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821981.288158,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03813-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821981.402050,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03814-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821981.482077,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03815-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821981.629289,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03816-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821981.675011,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03817-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821981.820793,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03818-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821981.866170,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03819-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821982.012188,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03820-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821982.057706,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03821-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821982.205371,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03822-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821982.287972,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03823-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821982.437325,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03824-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821982.485674,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03825-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821982.636594,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03826-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821982.686868,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03827-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821982.834920,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03828-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821982.882075,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03829-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.027676,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03830-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.073163,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03831-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.218642,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03832-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.279688,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03833-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.432695,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03834-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.578066,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03835-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.625067,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03836-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.673387,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03837-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.831836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03838-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.879468,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03839-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821983.995800,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03840-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821984.077517,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03841-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821984.224667,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03842-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821984.272770,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03843-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821984.419724,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03844-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821984.466954,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03845-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821984.612939,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03846-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821984.692691,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03847-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821984.805236,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03848-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821984.884418,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03849-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821985.034350,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03850-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821985.082415,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03851-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821985.231723,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03852-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821985.280040,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03853-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821985.397557,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03854-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821985.479756,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03855-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821985.628293,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03856-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821985.676719,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03857-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821985.824893,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03858-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821985.871036,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03859-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821986.017356,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03860-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821986.061912,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03861-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821986.246551,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03862-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821986.258115,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03863-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821986.403836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03864-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821986.483587,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03865-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821986.597071,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03866-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821986.677449,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03867-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821986.828627,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03868-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821986.877415,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03869-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821987.025451,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03870-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821987.073777,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03871-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821987.221188,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03872-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821987.268838,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03873-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821987.416137,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03874-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821987.460869,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03875-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821987.640169,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03876-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821987.690655,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03877-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821987.837891,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03878-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821987.884372,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03879-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821988.030740,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03880-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821988.079825,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03881-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821988.228859,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03882-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821988.275469,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03883-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821988.421413,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03884-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821988.601481,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03885-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821988.645807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03886-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821988.694583,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03887-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821988.806970,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03888-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821988.888647,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03889-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821989.037955,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03890-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821989.086463,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03891-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821989.201837,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03892-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821989.319263,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03893-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821989.402087,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03894-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821989.484417,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03895-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821989.635513,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03896-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821989.700878,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03897-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821989.815087,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03898-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821989.910073,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03899-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821990.024552,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03900-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821990.072696,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03901-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821990.218816,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03902-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821990.265400,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03903-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821990.411873,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03904-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821990.495583,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03905-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821990.610239,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03906-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821990.657760,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03907-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821990.843359,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03908-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821990.906842,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03909-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821991.022836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03910-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821991.071177,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03911-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821991.218683,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03912-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821991.263586,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03913-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821991.408773,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03914-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821991.488573,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03915-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821991.635774,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03916-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821991.682080,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03917-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821991.844063,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03918-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821991.890672,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03919-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821992.003837,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03920-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821992.086070,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03921-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821992.239569,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03922-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821992.288092,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03923-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821992.436792,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03924-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821992.484610,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03925-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821992.633526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03926-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821992.683078,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03927-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821992.830232,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03928-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821992.875886,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03929-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821993.022244,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03930-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821993.068353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03931-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821993.214658,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03932-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821993.260558,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03933-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821993.406881,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03934-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821993.618857,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03935-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821993.634353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03936-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821993.682548,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03937-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821993.848663,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03938-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821993.898648,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03939-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.014779,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03940-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.115675,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03941-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.233506,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03942-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.280324,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03943-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.427077,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03944-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.472501,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03945-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.621420,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03946-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.668027,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03947-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.814431,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03948-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.915808,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03949-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821994.995435,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03950-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821995.111996,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03951-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821995.228853,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03952-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821995.277292,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03953-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821995.426900,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03954-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821995.479198,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03955-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821995.592843,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03956-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821995.675992,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03957-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821995.794322,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03958-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821995.909968,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03959-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821996.045688,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03960-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821996.090619,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03961-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821996.205117,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03962-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821996.285427,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03963-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821996.434838,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03964-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821996.481221,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03965-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821996.629223,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03966-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821996.681681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03967-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821996.832953,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03968-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821996.881670,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03969-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821997.031940,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03970-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821997.080821,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03971-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821997.230678,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03972-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821997.278980,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03973-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821997.427350,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03974-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821997.473328,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03975-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821997.619412,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03976-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821997.666366,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03977-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821997.812476,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03978-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821997.894352,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03979-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821998.040596,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03980-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821998.085374,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03981-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821998.199656,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03982-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821998.316408,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03983-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821998.432669,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03984-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821998.613315,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03985-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821998.631283,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03986-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821998.677643,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03987-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821998.824491,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03988-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821998.870065,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03989-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821999.022500,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03990-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821999.067182,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03991-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821999.215875,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03992-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821999.261659,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03993-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821999.408166,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03994-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821999.491294,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03995-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821999.605681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03996-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821999.690319,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03997-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821999.808196,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03998-capture.jpg: No such file or directory','zm_image.cpp',869),(1510821999.891248,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/03999-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822000.040316,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04000-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822000.089980,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04001-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822000.202553,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04002-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822000.282491,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04003-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822000.428894,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04004-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822000.474655,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04005-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822000.620965,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04006-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822000.701866,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04007-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822000.816176,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04008-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822000.897228,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04009-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822001.012705,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04010-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822001.096719,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04011-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822001.213023,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04012-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822001.295904,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04013-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822001.413449,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04014-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822001.461665,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04015-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822001.608106,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04016-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822001.690590,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04017-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822001.803990,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04018-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822001.883008,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04019-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822002.029418,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04020-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822002.075351,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04021-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822002.189838,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04022-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822002.302154,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04023-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822002.416942,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04024-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822002.502559,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04025-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822002.617649,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04026-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822002.700366,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04027-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822002.815883,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04028-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822002.863492,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04029-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822003.012600,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04030-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822003.094010,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04031-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822003.200084,'zma_m1',0,16593,0,'INF','Monitor-1: 7000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510822003.211222,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04032-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822003.292010,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04033-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822003.420454,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04034-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822003.600721,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04035-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822003.645828,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04036-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822003.691657,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04037-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822003.807336,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04038-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822003.894990,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04039-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822004.044117,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04040-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822004.095349,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04041-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822004.210574,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04042-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822004.291950,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04043-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822004.408511,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04044-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822004.491900,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04045-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822004.638171,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04046-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822004.684867,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04047-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822004.833676,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04048-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822004.879457,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04049-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822005.025286,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04050-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822005.070581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04051-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822005.249554,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04052-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822005.261440,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04053-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822005.409927,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04054-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822005.492330,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04055-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822005.607384,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04056-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822005.693731,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04057-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822005.810707,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04058-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822005.894337,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04059-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822006.012152,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04060-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822006.094205,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04061-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822006.206760,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04062-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822006.290260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04063-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822006.437696,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04064-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822006.487274,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04065-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822006.657086,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04066-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822006.703839,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04067-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822006.818324,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04068-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822006.901910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04069-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822007.017513,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04070-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822007.065752,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04071-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822007.213773,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04072-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822007.297588,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04073-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822007.417057,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04074-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822007.465476,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04075-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822007.613430,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04076-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822007.659278,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04077-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822007.840891,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04078-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822007.888183,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04079-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822008.001018,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04080-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822008.119594,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04081-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822008.198884,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04082-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822008.278604,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04083-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822008.425629,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04084-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822008.608234,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04085-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822008.622182,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04086-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822008.670329,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04087-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822008.818593,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04088-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822008.866575,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04089-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.015840,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04090-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.064775,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04091-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.212135,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04092-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.293491,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04093-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.439526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04094-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.451084,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04095-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.597443,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04096-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.676789,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04097-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.844661,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04098-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.902401,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04099-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822009.982958,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04100-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822010.071281,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04101-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822010.219595,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04102-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822010.268179,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04103-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822010.417288,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04104-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822010.466255,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04105-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822010.614760,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04106-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822010.661903,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04107-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822010.808286,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04108-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822010.888970,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04109-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822011.041808,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04110-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822011.087425,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04111-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822011.201679,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04112-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822011.281638,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04113-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822011.394556,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04114-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822011.507606,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04115-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822011.589500,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04116-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822011.704661,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04117-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822011.820414,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04118-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822011.868522,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04119-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822012.021270,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04120-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822012.069595,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04121-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822012.218468,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04122-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822012.267527,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04123-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822012.378816,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04124-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822012.457882,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04125-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822012.606212,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04126-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822012.688123,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04127-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822012.844321,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04128-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822012.893806,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04129-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822013.007317,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04130-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822013.088841,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04131-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822013.203499,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04132-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822013.251524,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04133-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822013.431273,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04134-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822013.643223,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04135-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822013.654324,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04136-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822013.699448,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04137-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822013.812125,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04138-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822013.859687,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04139-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822014.007857,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04140-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822014.086928,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04141-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822014.233865,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04142-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822014.279952,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04143-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822014.426019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04144-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822014.472080,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04145-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822014.617474,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04146-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822014.698479,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04147-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822014.814595,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04148-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822014.861735,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04149-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822015.013672,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04150-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822015.099638,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04151-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822015.216348,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04152-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822015.301143,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04153-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822015.417668,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04154-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822015.465226,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04155-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822015.611817,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04156-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822015.657758,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04157-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822015.837739,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04158-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822015.883920,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04159-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822016.030183,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04160-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822016.075330,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04161-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822016.222110,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04162-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822016.267675,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04163-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822016.416362,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04164-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822016.464690,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04165-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822016.613355,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04166-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822016.661995,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04167-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822016.810476,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04168-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822016.857382,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04169-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822017.005839,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04170-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822017.054119,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04171-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822017.256125,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04172-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822017.302239,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04173-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822017.414066,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04174-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822017.458337,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04175-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822017.643959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04176-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822017.691597,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04177-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822017.840486,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04178-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822017.886281,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04179-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822018.001615,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04180-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822018.084965,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04181-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822018.233503,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04182-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822018.281764,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04183-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822018.430331,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04184-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822018.611391,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04185-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822018.624591,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04186-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822018.672722,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04187-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822018.818474,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04188-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822018.863168,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04189-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822019.008156,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04190-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822019.088010,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04191-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822019.234400,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04192-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822019.280436,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04193-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822019.430202,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04194-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822019.476025,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04195-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822019.624710,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04196-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822019.673140,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04197-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822019.821368,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04198-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822019.920845,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04199-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822020.003750,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04200-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822020.093115,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04201-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822020.209984,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04202-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822020.293318,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04203-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822020.439422,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04204-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822020.484869,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04205-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822020.630978,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04206-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822020.677587,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04207-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822020.823634,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04208-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822020.869215,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04209-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822021.014315,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04210-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822021.061569,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04211-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822021.209858,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04212-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822021.291629,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04213-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822021.406901,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04214-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822021.489422,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04215-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822021.638131,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04216-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822021.686567,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04217-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822021.801357,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04218-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822021.881731,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04219-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822022.028294,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04220-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822022.073401,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04221-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822022.219246,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04222-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822022.264758,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04223-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822022.410624,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04224-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822022.491977,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04225-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822022.637950,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04226-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822022.686141,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04227-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822022.837382,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04228-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822022.885590,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04229-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822023.039541,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04230-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822023.088323,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04231-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822023.204200,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04232-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822023.300622,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04233-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822023.415991,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04234-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822023.631341,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04235-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822023.648855,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04236-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822023.694935,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04237-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822023.807147,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04238-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822023.886600,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04239-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822024.051508,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04240-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822024.098101,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04241-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822024.213408,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04242-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822024.261662,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04243-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822024.409721,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04244-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822024.492527,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04245-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822024.607628,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04246-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822024.690421,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04247-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822024.847538,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04248-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822024.896844,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04249-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822025.008668,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04250-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822025.088262,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04251-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822025.199875,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04252-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822025.280414,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04253-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822025.426768,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04254-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822025.472565,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04255-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822025.618584,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04256-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822025.663581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04257-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822025.811281,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04258-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822025.875496,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04259-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822026.025918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04260-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822026.080123,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04261-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822026.238565,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04262-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822026.289568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04263-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822026.404076,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04264-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822026.486126,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04265-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822026.633134,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04266-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822026.678562,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04267-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822026.824772,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04268-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822026.870527,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04269-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822027.016084,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04270-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822027.097692,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04271-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822027.212688,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04272-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822027.292553,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04273-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822027.407171,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04274-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822027.491959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04275-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822027.609592,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04276-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822027.691907,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04277-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822027.813817,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04278-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822027.896670,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04279-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822028.011327,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04280-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822028.058043,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04281-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822028.205192,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04282-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822028.284796,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04283-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822028.446331,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04284-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822028.592494,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04285-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822028.637419,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04286-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822028.682689,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04287-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822028.829433,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04288-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822028.875792,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04289-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822029.026058,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04290-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822029.074933,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04291-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822029.223633,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04292-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822029.271951,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04293-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822029.423320,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04294-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822029.471588,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04295-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822029.619973,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04296-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822029.667646,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04297-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822029.813854,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04298-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822029.859502,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04299-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822030.039074,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04300-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822030.085997,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04301-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822030.236798,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04302-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822030.282823,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04303-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822030.434816,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04304-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822030.483603,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04305-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822030.641207,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04306-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822030.689356,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04307-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822030.838551,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04308-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822030.886821,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04309-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822031.035169,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04310-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822031.083249,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04311-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822031.230127,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04312-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822031.276435,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04313-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822031.426457,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04314-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822031.506598,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04315-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822031.620671,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04316-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822031.702478,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04317-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822031.815548,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04318-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822031.860969,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04319-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.010515,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04320-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.094460,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04321-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.209586,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04322-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.290954,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04323-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.406352,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04324-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.521854,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04325-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.607407,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04326-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.687134,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04327-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.802108,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04328-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.881363,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04329-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822032.995565,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04330-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822033.108192,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04331-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822033.219943,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04332-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822033.266090,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04333-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822033.413687,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04334-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822033.594591,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04335-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822033.609324,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04336-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822033.656965,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04337-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822033.805625,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04338-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822033.889019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04339-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822034.037621,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04340-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822034.090271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04341-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822034.238347,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04342-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822034.284393,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04343-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822034.431633,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04344-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822034.477031,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04345-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822034.625001,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04346-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822034.670807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04347-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822034.816889,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04348-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822034.864993,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04349-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822035.016979,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04350-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822035.066077,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04351-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822035.214637,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04352-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822035.298441,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04353-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822035.414089,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04354-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822035.461748,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04355-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822035.609696,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04356-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822035.689746,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04357-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822035.835990,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04358-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822035.882741,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04359-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822036.029164,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04360-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822036.075076,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04361-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822036.221353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04362-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822036.269037,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04363-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822036.415686,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04364-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822036.499183,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04365-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822036.615153,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04366-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822036.697145,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04367-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822036.811749,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04368-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822036.860211,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04369-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822037.014016,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04370-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822037.061384,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04371-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822037.210946,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04372-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822037.290330,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04373-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822037.436605,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04374-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822037.482955,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04375-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822037.628919,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04376-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822037.674696,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04377-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822037.820155,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04378-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822037.865795,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04379-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822038.011880,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04380-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822038.099667,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04381-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822038.182678,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04382-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822038.297436,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04383-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822038.412893,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04384-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822038.596712,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04385-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822038.611744,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04386-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822038.695130,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04387-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822038.810088,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04388-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822038.924771,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04389-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822039.003979,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04390-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822039.083136,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04391-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822039.231043,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04392-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822039.277023,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04393-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822039.425346,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04394-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822039.473391,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04395-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822039.621670,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04396-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822039.670607,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04397-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822039.823236,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04398-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822039.871371,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04399-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822040.019954,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04400-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822040.069381,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04401-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822040.215711,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04402-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822040.297302,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04403-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822040.409355,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04404-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822040.488198,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04405-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822040.655357,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04406-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822040.701439,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04407-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822040.814325,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04408-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822040.908218,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04409-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.024870,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04410-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.072892,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04411-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.219137,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04412-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.265421,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04413-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.410927,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04414-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.490664,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04415-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.636768,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04416-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.683831,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04417-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.829519,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04418-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.874098,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04419-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822041.987963,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04420-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822042.069160,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04421-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822042.218231,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04422-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822042.266377,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04423-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822042.416765,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04424-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822042.465800,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04425-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822042.614515,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04426-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822042.662945,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04427-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822042.812926,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04428-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822042.893020,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04429-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822043.008915,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04430-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822043.088152,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04431-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822043.210074,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04432-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822043.290480,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04433-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822043.402770,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04434-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822043.617249,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04435-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822043.630323,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04436-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822043.679439,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04437-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822043.828515,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04438-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822043.876785,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04439-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.025508,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04440-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.073160,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04441-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.220869,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04442-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.269091,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04443-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.415497,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04444-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.460386,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04445-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.644325,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04446-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.693441,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04447-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.839303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04448-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.885349,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04449-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822044.997966,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04450-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822045.079281,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04451-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822045.194213,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04452-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822045.276851,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04453-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822045.425166,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04454-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822045.473468,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04455-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822045.624054,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04456-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822045.673741,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04457-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822045.821958,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04458-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822045.870279,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04459-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822046.015526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04460-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822046.097231,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04461-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822046.176713,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04462-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822046.291635,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04463-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822046.438311,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04464-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822046.484706,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04465-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822046.632591,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04466-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822046.679547,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04467-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822046.828526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04468-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822046.876913,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04469-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822047.030471,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04470-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822047.078853,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04471-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822047.231102,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04472-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822047.279447,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04473-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822047.427749,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04474-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822047.472756,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04475-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822047.620062,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04476-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822047.666456,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04477-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822047.811896,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04478-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822047.857146,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04479-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822048.036694,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04480-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822048.082601,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04481-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822048.230060,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04482-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822048.279935,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04483-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822048.428618,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04484-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822048.609144,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04485-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822048.641510,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04486-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822048.690821,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04487-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822048.839430,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04488-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822048.887258,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04489-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822049.042629,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04490-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822049.089067,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04491-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822049.200844,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04492-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822049.280824,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04493-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822049.430716,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04494-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822049.478960,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04495-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822049.625326,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04496-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822049.671378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04497-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822049.820872,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04498-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822049.869106,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04499-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822050.017678,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04500-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822050.071808,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04501-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822050.217959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04502-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822050.264109,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04503-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822050.409705,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04504-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822050.455441,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04505-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822050.633872,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04506-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822050.679574,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04507-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822050.826051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04508-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822050.871782,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04509-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822051.021207,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04510-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822051.069562,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04511-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822051.218239,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04512-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822051.302005,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04513-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822051.417801,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04514-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822051.466668,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04515-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822051.615099,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04516-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822051.664491,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04517-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822051.809879,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04518-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822051.889125,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04519-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822052.001478,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04520-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822052.081168,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04521-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822052.228205,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04522-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822052.274535,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04523-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822052.420281,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04524-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822052.466129,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04525-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822052.598924,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04526-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822052.715627,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04527-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822052.796905,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04528-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822052.879227,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04529-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822053.027910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04530-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822053.076114,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04531-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822053.224295,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04532-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822053.271983,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04533-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822053.433677,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04534-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822053.647684,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04535-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822053.661435,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04536-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822053.708120,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04537-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822053.822975,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04538-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822053.868566,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04539-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822054.013866,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04540-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822054.058861,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04541-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822054.207179,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04542-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822054.290864,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04543-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822054.406517,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04544-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822054.490723,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04545-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822054.606608,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04546-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822054.690298,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04547-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822054.846382,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04548-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822054.906750,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04549-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.019958,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04550-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.099115,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04551-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.212149,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04552-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.258223,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04553-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.438303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04554-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.484950,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04555-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.599898,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04556-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.683092,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04557-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.797410,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04558-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.883354,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04559-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822055.997116,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04560-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822056.081047,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04561-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822056.195495,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04562-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822056.277471,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04563-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822056.423957,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04564-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822056.470045,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04565-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822056.616226,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04566-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822056.661181,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04567-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822056.807131,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04568-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822056.887667,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04569-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822057.034479,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04570-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822057.079588,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04571-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822057.245457,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04572-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822057.294091,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04573-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822057.413240,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04574-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822057.494812,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04575-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822057.610871,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04576-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822057.659357,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04577-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822057.840564,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04578-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822057.854187,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04579-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822058.000440,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04580-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822058.079965,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04581-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822058.226293,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04582-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822058.272077,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04583-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822058.419121,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04584-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822058.597232,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04585-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822058.626049,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04586-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822058.672274,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04587-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822058.824782,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04588-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822058.874693,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04589-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822059.023561,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04590-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822059.074253,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04591-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822059.224089,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04592-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822059.272410,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04593-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822059.421920,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04594-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822059.470444,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04595-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822059.617063,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04596-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822059.662594,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04597-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822059.811118,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04598-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822059.892174,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04599-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822060.011260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04600-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822060.057552,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04601-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822060.213660,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04602-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822060.261338,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04603-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822060.410749,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04604-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822060.459390,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04605-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822060.607212,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04606-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822060.689512,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04607-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822060.804137,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04608-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822060.885717,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04609-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.032288,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04610-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.077955,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04611-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.222690,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04612-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.268258,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04613-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.413510,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04614-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.457726,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04615-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.604364,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04616-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.687303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04617-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.835606,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04618-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.883500,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04619-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822061.998492,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04620-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822062.080383,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04621-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822062.231402,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04622-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822062.279842,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04623-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822062.428298,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04624-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822062.489951,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04625-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822062.605252,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04626-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822062.684651,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04627-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822062.831297,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04628-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822062.877134,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04629-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.022928,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04630-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.068934,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04631-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.214541,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04632-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.262910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04633-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.411275,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04634-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.593671,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04635-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.606464,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04636-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.653912,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04637-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.835288,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04638-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.885181,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04639-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822063.999780,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04640-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822064.080038,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04641-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822064.226602,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04642-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822064.306091,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04643-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822064.419047,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04644-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822064.464724,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04645-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822064.621107,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04646-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822064.670002,'zmc_m1',0,14528,0,'INF','Monitor-1: 90000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510822064.701148,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04647-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822064.815878,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04648-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822064.863161,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04649-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822065.011473,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04650-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822065.095233,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04651-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822065.210885,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04652-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822065.258947,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04653-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822065.407166,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04654-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822065.490590,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04655-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822065.612707,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04656-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822065.657787,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04657-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822065.803051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04658-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822065.883348,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04659-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822066.029914,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04660-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822066.075058,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04661-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822066.186519,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04662-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822066.268387,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04663-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822066.417377,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04664-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822066.499469,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04665-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822066.616166,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04666-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822066.663108,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04667-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822066.811269,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04668-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822066.895155,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04669-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822067.010304,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04670-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822067.092201,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04671-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822067.206089,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04672-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822067.296368,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04673-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822067.410668,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04674-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822067.491541,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04675-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822067.603920,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04676-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822067.683743,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04677-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822067.830579,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04678-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822067.878692,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04679-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822068.028884,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04680-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822068.082952,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04681-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822068.236628,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04682-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822068.285404,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04683-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822068.434110,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04684-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822068.615963,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04685-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822068.629680,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04686-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822068.677201,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04687-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822068.825781,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04688-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822068.871681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04689-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822069.018033,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04690-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822069.071497,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04691-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822069.217748,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04692-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822069.263523,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04693-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822069.409060,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04694-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822069.455791,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04695-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822069.637789,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04696-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822069.685886,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04697-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822069.834269,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04698-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822069.883479,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04699-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.032181,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04700-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.085246,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04701-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.197881,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04702-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.277373,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04703-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.423837,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04704-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.472422,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04705-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.624233,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04706-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.671871,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04707-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.820358,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04708-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.869135,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04709-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822070.985760,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04710-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822071.100129,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04711-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822071.214549,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04712-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822071.262699,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04713-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822071.409110,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04714-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822071.488046,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04715-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822071.640147,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04716-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822071.686178,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04717-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822071.837123,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04718-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822071.883416,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04719-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822071.996128,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04720-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822072.078264,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04721-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822072.193129,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04722-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822072.275843,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04723-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822072.425815,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04724-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822072.474416,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04725-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822072.623423,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04726-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822072.670878,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04727-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822072.819544,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04728-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822072.865560,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04729-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822073.012433,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04730-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822073.058221,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04731-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822073.205400,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04732-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822073.252171,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04733-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822073.431104,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04734-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822073.643878,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04735-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822073.656300,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04736-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822073.669901,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04737-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822073.818346,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04738-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822073.867008,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04739-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822074.015991,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04740-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822074.064149,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04741-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822074.212575,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04742-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822074.295842,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04743-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822074.412100,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04744-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822074.457055,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04745-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822074.637843,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04746-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822074.649551,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04747-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822074.795250,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04748-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822074.875544,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04749-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822075.021497,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04750-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822075.066906,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04751-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822075.216843,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04752-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822075.265291,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04753-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822075.414642,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04754-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822075.462280,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04755-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822075.616887,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04756-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822075.697292,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04757-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822075.810504,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04758-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822075.890274,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04759-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822076.002101,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04760-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822076.081291,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04761-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822076.228526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04762-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822076.274264,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04763-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822076.420096,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04764-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822076.466936,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04765-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822076.614044,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04766-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822076.662725,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04767-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822076.810895,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04768-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822076.858132,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04769-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822077.006109,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04770-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822077.088437,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04771-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822077.203214,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04772-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822077.283715,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04773-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822077.429784,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04774-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822077.475485,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04775-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822077.621107,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04776-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822077.667006,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04777-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822077.813104,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04778-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822077.893314,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04779-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822078.005382,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04780-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822078.085569,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04781-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822078.200848,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04782-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822078.283624,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04783-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822078.397858,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04784-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822078.611632,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04785-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822078.626254,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04786-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822078.673763,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04787-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822078.826178,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04788-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822078.875910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04789-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822079.025294,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04790-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822079.071750,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04791-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822079.218135,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04792-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822079.264446,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04793-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822079.410038,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04794-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822079.489213,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04795-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822079.640150,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04796-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822079.686938,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04797-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822079.802055,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04798-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822079.884550,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04799-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822080.033197,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04800-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822080.086741,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04801-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822080.202859,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04802-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822080.288625,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04803-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822080.435586,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04804-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822080.482079,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04805-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822080.628083,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04806-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822080.674255,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04807-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822080.824662,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04808-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822080.872694,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04809-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822081.021382,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04810-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822081.069443,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04811-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822081.218186,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04812-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822081.266826,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04813-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822081.415769,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04814-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822081.464711,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04815-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822081.613694,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04816-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822081.660714,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04817-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822081.806268,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04818-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822081.886619,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04819-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822082.040576,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04820-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822082.088070,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04821-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822082.240542,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04822-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822082.286364,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04823-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822082.432631,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04824-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822082.478221,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04825-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822082.626688,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04826-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822082.709212,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04827-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822082.824447,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04828-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822082.873101,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04829-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822083.021448,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04830-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822083.069881,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04831-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822083.218415,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04832-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822083.266683,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04833-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822083.413820,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04834-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822083.592103,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04835-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822083.602418,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04836-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822083.682775,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04837-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822083.830071,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04838-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822083.875662,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04839-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822084.021873,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04840-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822084.068132,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04841-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822084.216656,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04842-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822084.281480,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04843-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822084.398139,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04844-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822084.480106,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04845-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822084.629156,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04846-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822084.677832,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04847-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822084.825959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04848-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822084.874229,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04849-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822085.020634,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04850-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822085.066034,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04851-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822085.214147,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04852-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822085.259983,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04853-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822085.406614,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04854-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822085.491372,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04855-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822085.638183,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04856-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822085.684151,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04857-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822085.832873,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04858-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822085.881071,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04859-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822086.030983,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04860-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822086.078926,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04861-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822086.227298,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04862-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822086.275918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04863-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822086.390079,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04864-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822086.507041,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04865-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822086.619803,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04866-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822086.665867,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04867-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822086.816139,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04868-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822086.861187,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04869-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822087.006588,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04870-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822087.086185,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04871-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822087.198257,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04872-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822087.282210,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04873-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822087.398055,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04874-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822087.479984,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04875-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822087.628666,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04876-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822087.675108,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04877-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822087.821289,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04878-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822087.866760,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04879-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822088.013220,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04880-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822088.058273,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04881-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822088.204772,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04882-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822088.284752,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04883-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822088.430923,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04884-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822088.547057,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04885-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822088.595445,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04886-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822088.710218,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04887-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822088.825935,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04888-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822088.873512,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04889-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822089.022363,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04890-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822089.070200,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04891-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822089.218608,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04892-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822089.264426,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04893-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822089.410459,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04894-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822089.455795,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04895-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822089.602213,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04896-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822089.685118,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04897-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822089.832497,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04898-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822089.880857,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04899-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822090.027365,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04900-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822090.096933,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04901-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822090.214604,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04902-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822090.297724,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04903-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822090.413152,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04904-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822090.460242,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04905-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822090.608915,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04906-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822090.687848,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04907-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822090.834563,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04908-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822090.880633,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04909-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822091.026849,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04910-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822091.072372,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04911-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822091.218665,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04912-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822091.266149,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04913-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822091.414979,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04914-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822091.496848,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04915-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822091.611990,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04916-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822091.659614,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04917-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822091.808929,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04918-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822091.890956,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04919-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822092.039043,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04920-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822092.086503,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04921-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822092.234101,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04922-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822092.280351,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04923-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822092.426028,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04924-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822092.471735,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04925-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822092.623201,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04926-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822092.668848,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04927-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822092.815121,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04928-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822092.862044,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04929-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822093.011063,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04930-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822093.093738,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04931-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822093.210734,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04932-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822093.292918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04933-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822093.408777,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04934-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822093.558411,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04935-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822093.606487,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04936-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822093.686851,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04937-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822093.811327,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04938-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822093.890427,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04939-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822094.036436,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04940-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822094.082530,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04941-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822094.228998,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04942-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822094.274606,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04943-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822094.421409,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04944-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822094.469239,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04945-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822094.587866,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04946-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822094.703507,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04947-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822094.819145,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04948-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822094.901562,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04949-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822095.016628,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04950-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822095.065718,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04951-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822095.215288,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04952-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822095.263931,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04953-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822095.409687,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04954-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822095.491717,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04955-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822095.638577,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04956-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822095.684381,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04957-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822095.831082,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04958-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822095.879607,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04959-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822096.028486,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04960-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822096.076191,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04961-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822096.223895,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04962-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822096.273326,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04963-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822096.427755,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04964-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822096.477000,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04965-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822096.626254,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04966-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822096.672148,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04967-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822096.821102,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04968-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822096.866806,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04969-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822097.012643,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04970-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822097.093311,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04971-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822097.172646,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04972-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822097.296575,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04973-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822097.377085,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04974-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822097.492748,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04975-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822097.608012,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04976-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822097.692660,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04977-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822097.807919,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04978-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822097.855780,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04979-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822098.005540,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04980-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822098.089540,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04981-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822098.243477,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04982-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822098.291156,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04983-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822098.439381,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04984-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822098.585525,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04985-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822098.597804,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04986-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822098.678972,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04987-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822098.825547,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04988-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822098.871070,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04989-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822099.017106,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04990-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822099.065335,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04991-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822099.213795,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04992-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822099.261542,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04993-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822099.409799,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04994-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822099.491619,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04995-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822099.606264,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04996-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822099.689168,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04997-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822099.805003,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04998-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822099.850704,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/04999-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822100.030250,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05000-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822100.078534,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05001-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822100.225467,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05002-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822100.270780,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05003-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822100.417714,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05004-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822100.463171,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05005-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822100.611034,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05006-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822100.658962,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05007-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822100.806825,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05008-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822100.889127,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05009-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822101.002831,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05010-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822101.082895,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05011-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822101.233528,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05012-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822101.282714,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05013-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822101.395740,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05014-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822101.475666,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05015-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822101.621321,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05016-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822101.668061,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05017-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822101.816681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05018-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822101.864423,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05019-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822102.019098,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05020-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822102.067666,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05021-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822102.216687,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05022-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822102.265325,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05023-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822102.413847,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05024-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822102.460888,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05025-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822102.608005,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05026-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822102.690028,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05027-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822102.803264,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05028-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822102.882204,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05029-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822103.030015,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05030-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822103.092382,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05031-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822103.198662,'zma_m1',0,16593,0,'INF','Monitor-1: 8000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510822103.211032,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05032-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822103.258650,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05033-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822103.407582,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05034-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822103.589351,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05035-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822103.643751,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05036-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822103.692450,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05037-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822103.823174,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05038-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822103.908862,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05039-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822104.026677,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05040-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822104.072708,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05041-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822104.219228,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05042-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822104.265914,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05043-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822104.411559,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05044-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822104.492099,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05045-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822104.604862,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05046-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822104.684154,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05047-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822104.832355,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05048-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822104.880457,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05049-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822105.029059,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05050-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822105.077549,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05051-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822105.194323,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05052-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822105.275505,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05053-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822105.424145,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05054-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822105.471375,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05055-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822105.619718,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05056-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822105.665447,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05057-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822105.812569,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05058-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822105.895732,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05059-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822106.009603,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05060-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822106.090916,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05061-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822106.205897,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05062-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822106.287908,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05063-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822106.403965,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05064-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822106.486327,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05065-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822106.601985,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05066-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822106.683707,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05067-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822106.832244,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05068-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822106.879095,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05069-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822107.024742,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05070-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822107.070361,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05071-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822107.217854,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05072-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822107.263028,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05073-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822107.408841,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05074-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822107.488699,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05075-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822107.635905,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05076-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822107.682953,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05077-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822107.831359,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05078-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822107.879278,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05079-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.029883,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05080-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.077604,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05081-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.227997,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05082-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.277113,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05083-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.391202,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05084-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.605206,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05085-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.617260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05086-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.660986,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05087-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.806424,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05088-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.887380,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05089-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822108.999625,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05090-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822109.078266,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05091-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822109.224728,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05092-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822109.271810,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05093-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822109.420399,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05094-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822109.468760,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05095-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822109.617806,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05096-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822109.689371,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05097-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822109.840959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05098-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822109.892776,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05099-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822110.007932,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05100-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822110.060528,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05101-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822110.206574,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05102-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822110.285862,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05103-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822110.399785,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05104-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822110.515093,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05105-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822110.644834,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05106-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822110.691984,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05107-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822110.806323,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05108-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822110.888786,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05109-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822111.037239,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05110-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822111.087936,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05111-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822111.202400,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05112-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822111.252355,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05113-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822111.397856,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05114-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822111.511716,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05115-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822111.624695,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05116-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822111.669590,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05117-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822111.816589,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05118-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822111.862187,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05119-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822112.008118,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05120-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822112.087547,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05121-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822112.205442,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05122-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822112.288671,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05123-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822112.402735,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05124-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822112.484529,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05125-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822112.632895,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05126-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822112.681109,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05127-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822112.833353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05128-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822112.881369,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05129-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822113.027568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05130-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822113.072820,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05131-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822113.219323,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05132-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822113.265279,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05133-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822113.411867,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05134-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822113.590394,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05135-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822113.603598,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05136-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822113.683318,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05137-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822113.797280,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05138-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822113.878625,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05139-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822114.028357,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05140-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822114.076911,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05141-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822114.226050,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05142-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822114.277385,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05143-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822114.426585,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05144-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822114.474186,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05145-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822114.620313,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05146-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822114.667508,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05147-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822114.813256,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05148-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822114.894193,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05149-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822115.006926,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05150-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822115.086700,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05151-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822115.235557,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05152-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822115.281561,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05153-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822115.432811,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05154-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822115.481225,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05155-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822115.632859,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05156-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822115.681170,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05157-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822115.832663,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05158-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822115.881271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05159-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822116.033339,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05160-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822116.082037,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05161-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822116.194248,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05162-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822116.273461,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05163-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822116.385145,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05164-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822116.465918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05165-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822116.579021,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05166-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822116.694379,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05167-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822116.808479,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05168-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822116.891654,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05169-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822117.006746,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05170-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822117.087773,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05171-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822117.235182,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05172-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822117.281379,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05173-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822117.428359,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05174-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822117.474156,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05175-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822117.620365,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05176-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822117.666134,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05177-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822117.812301,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05178-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822117.857470,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05179-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822118.005145,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05180-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822118.052633,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05181-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822118.236044,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05182-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822118.287661,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05183-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822118.445699,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05184-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822118.594236,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05185-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822118.608384,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05186-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822118.657633,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05187-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822118.806525,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05188-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822118.919926,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05189-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822119.033678,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05190-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822119.079400,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05191-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822119.225214,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05192-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822119.271233,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05193-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822119.417195,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05194-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822119.461645,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05195-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822119.608640,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05196-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822119.692619,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05197-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822119.808952,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05198-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822119.891781,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05199-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822120.008232,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05200-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822120.060989,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05201-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822120.209494,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05202-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822120.256383,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05203-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822120.405870,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05204-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822120.489492,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05205-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822120.602795,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05206-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822120.684603,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05207-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822120.797209,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05208-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822120.877352,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05209-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822121.023357,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05210-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822121.070238,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05211-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822121.218245,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05212-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822121.266469,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05213-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822121.419135,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05214-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822121.465019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05215-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822121.609910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05216-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822121.690189,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05217-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822121.861061,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05218-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822121.922550,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05219-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822122.003421,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05220-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822122.082751,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05221-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822122.228760,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05222-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822122.278458,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05223-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822122.427116,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05224-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822122.476238,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05225-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822122.625193,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05226-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822122.673822,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05227-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822122.824711,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05228-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822122.892390,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05229-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822123.007981,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05230-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822123.056892,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05231-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822123.238047,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05232-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822123.285787,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05233-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822123.434091,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05234-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822123.587101,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05235-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822123.603058,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05236-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822123.666659,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05237-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822123.814070,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05238-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822123.866976,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05239-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822124.047124,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05240-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822124.184807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05241-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822124.296459,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05242-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822124.393930,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05243-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822124.481504,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05244-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822124.599902,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05245-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822124.665468,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05246-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822124.705578,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05247-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822124.827436,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05248-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822124.873724,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05249-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822125.033824,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05250-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822125.080134,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05251-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822125.226830,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05252-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822125.272606,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05253-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822125.422623,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05254-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822125.467910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05255-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822125.615456,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05256-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822125.661076,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05257-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822125.806662,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05258-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822125.889614,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05259-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822126.001906,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05260-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822126.080544,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05261-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822126.227303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05262-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822126.275858,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05263-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822126.424836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05264-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822126.472844,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05265-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822126.645138,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05266-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822126.694138,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05267-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822126.808232,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05268-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822126.890682,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05269-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822127.006525,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05270-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822127.093262,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05271-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822127.206792,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05272-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822127.285949,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05273-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822127.433260,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05274-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822127.478946,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05275-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822127.625196,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05276-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822127.670967,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05277-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822127.819214,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05278-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822127.868047,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05279-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822128.017921,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05280-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822128.081688,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05281-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822128.197928,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05282-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822128.279170,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05283-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822128.428090,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05284-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822128.608621,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05285-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822128.653604,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05286-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822128.666584,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05287-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822128.812335,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05288-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822128.893264,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05289-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822129.006931,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05290-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822129.086747,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05291-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822129.201593,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05292-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822129.281230,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05293-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822129.396102,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05294-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822129.480019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05295-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822129.629076,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05296-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822129.677059,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05297-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822129.825787,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05298-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822129.878349,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05299-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822130.026910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05300-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822130.077777,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05301-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822130.225852,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05302-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822130.271518,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05303-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822130.417565,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05304-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822130.463035,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05305-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822130.607944,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05306-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822130.688389,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05307-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822130.834632,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05308-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822130.898014,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05309-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822131.014454,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05310-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822131.061906,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05311-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822131.210783,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05312-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822131.259246,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05313-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822131.406916,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05314-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822131.488559,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05315-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822131.604034,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05316-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822131.684096,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05317-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822131.830780,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05318-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822131.879904,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05319-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822132.028660,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05320-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822132.076812,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05321-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822132.227396,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05322-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822132.277349,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05323-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822132.426007,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05324-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822132.474514,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05325-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822132.622134,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05326-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822132.667196,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05327-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822132.813118,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05328-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822132.858200,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05329-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822133.040656,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05330-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822133.086645,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05331-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822133.199296,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05332-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822133.313128,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05333-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822133.392637,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05334-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822133.607938,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05335-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822133.622973,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05336-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822133.686140,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05337-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822133.804036,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05338-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822133.889240,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05339-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822134.004394,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05340-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822134.088492,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05341-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822134.204711,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05342-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822134.250137,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05343-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822134.429189,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05344-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822134.475272,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05345-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822134.621685,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05346-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822134.667404,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05347-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822134.813482,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05348-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822134.858137,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05349-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822135.037578,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05350-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822135.084846,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05351-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822135.200113,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05352-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822135.282623,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05353-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822135.399183,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05354-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822135.481925,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05355-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822135.631420,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05356-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822135.682015,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05357-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822135.828570,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05358-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822135.874470,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05359-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822136.020845,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05360-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822136.067795,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05361-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822136.213520,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05362-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822136.259438,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05363-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822136.405383,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05364-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822136.487163,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05365-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822136.635973,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05366-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822136.684126,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05367-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822136.832366,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05368-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822136.881160,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05369-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822137.029791,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05370-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822137.077709,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05371-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822137.227241,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05372-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822137.276777,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05373-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822137.423174,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05374-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822137.469019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05375-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822137.614513,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05376-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822137.660545,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05377-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822137.805450,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05378-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822137.885834,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05379-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822138.038242,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05380-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822138.084319,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05381-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822138.239151,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05382-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822138.287697,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05383-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822138.436320,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05384-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822138.619054,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05385-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822138.633722,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05386-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822138.683359,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05387-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822138.832140,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05388-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822138.879965,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05389-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822139.025990,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05390-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822139.070982,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05391-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822139.217180,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05392-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822139.262946,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05393-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822139.410369,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05394-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822139.491476,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05395-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822139.606099,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05396-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822139.722714,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05397-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822139.805494,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05398-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822139.888009,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05399-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822140.043808,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05400-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822140.063315,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05401-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822140.212283,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05402-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822140.294002,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05403-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822140.406701,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05404-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822140.485695,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05405-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822140.634092,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05406-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822140.680209,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05407-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822140.826662,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05408-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822140.907811,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05409-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822141.021284,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05410-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822141.069070,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05411-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822141.217600,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05412-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822141.265615,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05413-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822141.414591,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05414-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822141.463059,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05415-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822141.613140,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05416-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822141.661329,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05417-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822141.809418,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05418-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822141.891108,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05419-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822142.003566,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05420-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822142.082139,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05421-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822142.233462,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05422-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822142.279607,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05423-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822142.425895,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05424-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822142.472594,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05425-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822142.561320,'zmaudit',NULL,14536,0,'INF','Filesystem monitor link \'Monitor-1\' does not point to valid monitor directory','zmaudit.pl',NULL),(1510822142.567750,'zmaudit',NULL,14536,0,'INF','deleting','zmaudit.pl',NULL),(1510822142.621411,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05426-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822142.669414,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05427-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822142.820490,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05428-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822142.868581,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05429-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822143.017138,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05430-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822143.065414,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05431-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822143.210020,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05432-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822143.256340,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05433-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822143.401819,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05434-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822143.615471,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05435-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822143.627850,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05436-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822143.674379,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05437-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822143.820394,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05438-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822143.868510,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05439-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822144.016808,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05440-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822144.099670,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05441-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822144.215546,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05442-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822144.263126,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05443-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822144.412312,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05444-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822144.497242,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05445-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822144.613668,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05446-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822144.659320,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05447-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822144.804943,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05448-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822144.885068,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05449-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822145.032016,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05450-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822145.078369,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05451-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822145.190023,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05452-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822145.269386,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05453-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822145.415869,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05454-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822145.462557,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05455-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822145.610411,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05456-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822145.657676,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05457-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822145.807269,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05458-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822145.891058,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05459-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822146.007222,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05460-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822146.089271,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05461-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822146.204775,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05462-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822146.286117,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05463-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822146.399293,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05464-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822146.478472,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05465-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822146.625042,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05466-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822146.672626,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05467-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822146.818632,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05468-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822146.865550,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05469-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822147.010255,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05470-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822147.060088,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05471-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822147.208243,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05472-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822147.289219,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05473-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822147.405816,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05474-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822147.488836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05475-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822147.603729,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05476-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822147.650863,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05477-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822147.832242,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05478-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822147.881985,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05479-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822148.030339,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05480-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822148.076403,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05481-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822148.222521,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05482-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822148.268136,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05483-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822148.414063,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05484-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822148.626184,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05485-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822148.637418,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05486-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822148.649643,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05487-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822148.797347,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05488-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822148.879942,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05489-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822149.028633,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05490-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822149.076526,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05491-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822149.224642,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05492-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822149.275478,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05493-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822149.423828,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05494-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822149.470160,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05495-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822149.616190,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05496-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822149.662011,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05497-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822149.808157,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05498-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822149.903509,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05499-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822150.020606,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05500-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822150.069571,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05501-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822150.217224,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05502-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822150.266086,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05503-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822150.381963,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05504-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822150.498297,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05505-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822150.613892,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05506-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822150.662065,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05507-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822150.810430,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05508-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822150.858129,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05509-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822151.005849,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05510-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822151.085643,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05511-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822151.231633,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05512-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822151.276550,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05513-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822151.422814,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05514-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822151.469423,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05515-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822151.615928,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05516-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822151.696328,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05517-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822151.814703,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05518-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822151.862159,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05519-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.020534,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05520-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.104667,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05521-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.222096,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05522-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.269642,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05523-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.415667,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05524-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.497110,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05525-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.609080,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05526-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.688504,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05527-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.835380,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05528-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.883854,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05529-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822152.996002,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05530-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822153.077892,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05531-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822153.226338,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05532-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822153.273988,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05533-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822153.424089,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05534-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822153.604943,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05535-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822153.619334,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05536-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822153.666556,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05537-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822153.815037,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05538-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822153.898639,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05539-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822154.011317,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05540-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822154.055933,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05541-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822154.202551,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05542-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822154.282248,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05543-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822154.428512,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05544-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822154.474012,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05545-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822154.620359,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05546-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822154.669131,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05547-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822154.818957,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05548-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822154.869624,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05549-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822155.022485,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05550-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822155.070783,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05551-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822155.220513,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05552-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822155.303549,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05553-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822155.385914,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05554-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822155.504015,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05555-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822155.617296,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05556-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822155.662569,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05557-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822155.807996,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05558-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822155.891242,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05559-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822156.003714,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05560-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822156.082264,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05561-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822156.198542,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05562-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822156.278658,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05563-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822156.427767,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05564-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822156.475224,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05565-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822156.626630,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05566-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822156.675773,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05567-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822156.828216,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05568-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822156.876359,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05569-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822157.025142,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05570-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822157.071831,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05571-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822157.219667,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05572-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822157.265386,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05573-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822157.411954,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05574-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822157.492831,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05575-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822157.605214,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05576-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822157.684262,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05577-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822157.796182,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05578-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822157.878873,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05579-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822158.027473,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05580-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822158.076350,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05581-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822158.225534,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05582-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822158.272893,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05583-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822158.389428,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05584-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822158.603707,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05585-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822158.618277,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05586-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822158.664707,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05587-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822158.826091,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05588-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822158.872061,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05589-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822159.018009,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05590-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822159.063367,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05591-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822159.193167,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05592-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822159.274218,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05593-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822159.420385,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05594-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822159.467812,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05595-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822159.620138,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05596-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822159.701919,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05597-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822159.818046,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05598-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822159.865622,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05599-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822160.014701,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05600-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822160.068707,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05601-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822160.216811,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05602-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822160.262595,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05603-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822160.408830,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05604-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822160.488373,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05605-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822160.601610,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05606-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822160.681298,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05607-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822160.828417,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05608-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822160.876859,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05609-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822161.024674,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05610-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822161.073460,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05611-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822161.222751,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05612-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822161.270970,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05613-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822161.423860,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05614-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822161.471926,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05615-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822161.586806,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05616-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822161.680202,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05617-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822161.828572,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05618-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822161.874684,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05619-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822162.024708,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05620-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822162.070430,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05621-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822162.216679,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05622-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822162.275670,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05623-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822162.390044,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05624-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822162.504757,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05625-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822162.586659,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05626-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822162.668504,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05627-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822162.817859,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05628-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822162.898984,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05629-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822163.014487,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05630-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822163.062387,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05631-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822163.211068,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05632-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822163.257552,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05633-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822163.403375,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05634-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822163.586062,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05635-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822163.597407,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05636-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822163.678331,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05637-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822163.791148,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05638-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822163.905515,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05639-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822164.018803,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05640-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822164.065809,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05641-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822164.214285,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05642-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822164.262314,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05643-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822164.411986,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05644-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822164.495618,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05645-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822164.611624,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05646-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822164.647061,'zmc_m1',0,14528,0,'INF','Monitor-1: 91000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510822164.664328,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05647-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822164.811490,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05648-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822164.891840,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05649-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822165.004506,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05650-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822165.084000,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05651-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822165.230459,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05652-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822165.276088,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05653-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822165.422044,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05654-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822165.467700,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05655-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822165.615400,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05656-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822165.698696,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05657-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822165.818223,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05658-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822165.900378,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05659-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.017647,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05660-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.101179,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05661-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.182487,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05662-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.297767,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05663-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.412006,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05664-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.457086,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05665-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.605746,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05666-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.686045,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05667-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.832566,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05668-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.878745,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05669-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822166.993496,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05670-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822167.106733,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05671-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822167.187287,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05672-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822167.269397,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05673-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822167.417640,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05674-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822167.465494,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05675-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822167.614181,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05676-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822167.661123,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05677-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822167.808797,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05678-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822167.892280,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05679-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822168.004457,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05680-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822168.085943,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05681-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822168.202603,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05682-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822168.284645,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05683-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822168.396866,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05684-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822168.609113,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05685-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822168.620572,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05686-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822168.667693,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05687-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822168.819288,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05688-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822168.867540,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05689-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822169.016639,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05690-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822169.065113,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05691-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822169.212850,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05692-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822169.296120,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05693-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822169.411137,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05694-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822169.458033,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05695-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822169.603983,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05696-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822169.683228,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05697-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822169.829438,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05698-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822169.875394,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05699-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822170.021377,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05700-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822170.070771,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05701-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822170.218341,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05702-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822170.266833,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05703-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822170.415351,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05704-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822170.463932,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05705-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822170.612890,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05706-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822170.696098,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05707-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822170.812273,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05708-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822170.860129,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05709-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822171.007740,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05710-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822171.087866,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05711-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822171.201169,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05712-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822171.280235,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05713-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822171.426717,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05714-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822171.472425,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05715-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822171.627766,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05716-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822171.708333,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05717-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822171.830808,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05718-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822171.879407,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05719-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822172.028545,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05720-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822172.076850,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05721-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822172.192572,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05722-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822172.274212,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05723-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822172.423544,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05724-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822172.472162,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05725-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822172.620233,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05726-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822172.666627,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05727-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822172.813470,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05728-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822172.859018,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05729-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822173.004211,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05730-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822173.049907,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05731-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822173.236658,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05732-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822173.283722,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05733-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822173.398351,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05734-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822173.580333,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05735-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822173.641116,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05736-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822173.689799,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05737-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822173.807182,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05738-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822173.889137,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05739-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822174.003114,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05740-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822174.085203,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05741-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822174.198423,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05742-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822174.278770,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05743-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822174.391942,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05744-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822174.470244,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05745-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822174.619618,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05746-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822174.699681,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05747-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822174.812910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05748-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822174.894726,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05749-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822175.009117,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05750-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822175.057256,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05751-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822175.205994,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05752-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822175.255169,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05753-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822175.403894,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05754-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822175.489365,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05755-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822175.609001,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05756-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822175.696693,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05757-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822175.810715,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05758-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822175.890665,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05759-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.004265,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05760-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.083617,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05761-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.196303,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05762-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.274976,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05763-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.422684,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05764-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.469687,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05765-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.585118,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05766-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.666148,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05767-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.785765,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05768-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.866629,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05769-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822176.981079,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05770-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822177.063909,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05771-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822177.212897,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05772-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822177.259455,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05773-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822177.405824,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05774-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822177.485287,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05775-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822177.631720,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05776-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822177.678021,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05777-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822177.823924,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05778-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822177.869488,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05779-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822178.015485,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05780-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822178.062523,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05781-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822178.210914,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05782-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822178.257686,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05783-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822178.406206,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05784-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822178.593448,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05785-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822178.607329,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05786-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822178.690191,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05787-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822178.805867,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05788-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822178.886484,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05789-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822179.034846,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05790-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822179.080417,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05791-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822179.226386,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05792-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822179.272404,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05793-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822179.417586,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05794-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822179.463786,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05795-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822179.609282,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05796-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822179.655404,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05797-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822179.803498,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05798-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822179.885636,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05799-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.000218,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05800-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.087487,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05801-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.237015,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05802-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.254032,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05803-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.400798,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05804-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.486628,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05805-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.598968,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05806-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.690673,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05807-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.806522,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05808-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.853035,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05809-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822180.998463,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05810-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822181.082402,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05811-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822181.231518,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05812-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822181.279807,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05813-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822181.429035,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05814-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822181.477966,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05815-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822181.626391,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05816-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822181.679750,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05817-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822181.825973,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05818-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822181.872100,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05819-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822182.027109,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05820-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822182.072459,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05821-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822182.189885,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05822-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822182.304940,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05823-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822182.417568,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05824-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822182.498438,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05825-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822182.613985,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05826-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822182.696240,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05827-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822182.810095,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05828-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822182.858798,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05829-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822183.007063,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05830-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822183.097422,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05831-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822183.213519,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05832-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822183.296275,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05833-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822183.409116,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05834-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822183.621920,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05835-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822183.636688,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05836-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822183.684349,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05837-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822183.846516,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05838-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822183.895785,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05839-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822184.012616,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05840-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822184.060992,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05841-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822184.209996,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05842-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822184.292961,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05843-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822184.409342,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05844-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822184.458313,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05845-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822184.607314,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05846-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822184.686240,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05847-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822184.835493,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05848-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822184.881268,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05849-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822185.028016,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05850-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822185.074328,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05851-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822185.188393,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05852-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822185.268302,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05853-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822185.414786,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05854-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822185.462981,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05855-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822185.611793,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05856-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822185.660539,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05857-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822185.808374,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05858-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822185.856673,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05859-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822186.004524,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05860-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822186.092119,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05861-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822186.207384,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05862-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822186.252495,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05863-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822186.400086,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05864-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822186.480250,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05865-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822186.628254,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05866-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822186.674662,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05867-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822186.821072,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05868-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822186.865931,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05869-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822187.012672,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05870-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822187.096025,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05871-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822187.219688,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05872-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822187.267918,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05873-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822187.416445,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05874-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822187.464525,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05875-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822187.612337,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05876-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822187.664102,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05877-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822187.809910,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05878-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822187.855252,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05879-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822188.036429,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05880-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822188.083848,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05881-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822188.229986,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05882-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822188.313227,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05883-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822188.395534,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05884-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822188.610386,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05885-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822188.624714,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05886-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822188.672647,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05887-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822188.825603,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05888-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822188.873824,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05889-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822189.022610,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05890-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822189.070797,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05891-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822189.217467,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05892-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822189.263808,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05893-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822189.409924,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05894-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822189.491782,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05895-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822189.603891,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05896-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822189.648932,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05897-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822189.794797,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05898-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822189.907637,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05899-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822190.023274,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05900-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822190.076187,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05901-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822190.224997,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05902-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822190.273546,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05903-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822190.388921,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05904-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822190.506019,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05905-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822190.625670,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05906-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822190.671997,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05907-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822190.785637,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05908-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822190.899341,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05909-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822191.012385,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05910-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822191.059072,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05911-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822191.207191,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05912-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822191.286817,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05913-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822191.400527,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05914-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822191.485669,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05915-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822191.635559,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05916-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822191.683925,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05917-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822191.832633,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05918-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822191.883085,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05919-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822192.039435,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05920-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822192.112232,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05921-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822192.194715,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05922-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822192.274961,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05923-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822192.421295,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05924-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822192.466908,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05925-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822192.616939,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05926-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822192.697029,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05927-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822192.811580,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05928-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822192.893959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05929-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822193.006782,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05930-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822193.087943,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05931-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822193.203159,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05932-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822193.286742,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05933-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822193.400994,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05934-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822193.612931,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05935-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822193.629194,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05936-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822193.678423,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05937-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822193.825242,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05938-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822193.875062,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05939-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822194.021450,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05940-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822194.067239,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05941-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822194.216201,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05942-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822194.317111,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05943-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822194.400346,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05944-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822194.483008,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05945-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822194.602339,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05946-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822194.685819,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05947-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822194.801555,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05948-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822194.849529,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05949-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822195.029159,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05950-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822195.075051,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05951-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822195.222432,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05952-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822195.283728,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05953-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822195.398068,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05954-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822195.477566,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05955-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822195.624108,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05956-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822195.670422,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05957-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822195.820426,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05958-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822195.868675,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05959-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822196.016936,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05960-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822196.101113,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05961-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822196.183000,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05962-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822196.302959,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05963-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822196.419586,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05964-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822196.468567,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05965-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822196.615250,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05966-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822196.694758,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05967-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822196.808804,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05968-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822196.854953,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05969-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822197.001848,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05970-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822197.080577,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05971-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822197.228437,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05972-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822197.274728,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05973-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822197.423451,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05974-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822197.471493,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05975-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822197.619952,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05976-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822197.667746,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05977-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822197.816683,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05978-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822197.864353,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05979-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822198.012583,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05980-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822198.094225,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05981-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822198.208093,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05982-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822198.288518,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05983-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822198.435635,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05984-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822198.613392,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05985-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822198.625048,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05986-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822198.671055,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05987-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822198.817027,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05988-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822198.862399,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05989-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822199.011503,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05990-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822199.060136,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05991-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822199.209008,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05992-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822199.294152,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05993-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822199.411746,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05994-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822199.501836,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05995-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822199.584845,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05996-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822199.699336,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05997-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822199.811972,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05998-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822199.892490,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/05999-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822200.004785,'zma_m1',0,16593,-2,'ERR','Can\'t open events/1/17/11/16/10/40/00/06000-capture.jpg: No such file or directory','zm_image.cpp',869),(1510822200.086389,'zma_m1',0,16593,0,'INF','Monitor-1: 8969 - Closing event 2, section end','zm_monitor.cpp',1521),(1510822200.091347,'zma_m1',0,16593,-3,'FAT','Can\'t mkdir events/1/17: No such file or directory','zm_event.cpp',127),(1510822200.122800,'zmdc',NULL,14498,-2,'ERR','\'zma -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510822200.128360,'zmdc',NULL,14498,0,'INF','Starting pending process, zma -m 1','zmdc.pl',NULL),(1510822200.137080,'zmdc',NULL,14498,0,'INF','\'zma -m 1\' starting at 17/11/16 10:50:00, pid = 16975','zmdc.pl',NULL),(1510822200.137100,'zmdc',NULL,16975,0,'INF','\'zma -m 1\' started at 17/11/16 10:50:00','zmdc.pl',NULL),(1510822200.205344,'zma_m1',0,16975,0,'INF','In mode 5/1, warming up','zma.cpp',142),(1510822202.684852,'zma_m1',0,16975,0,'INF','Monitor-1: 026 - Opening new event 4, section start','zm_monitor.cpp',1541),(1510822264.651437,'zmc_m1',0,14528,0,'INF','Monitor-1: 92000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510822300.069113,'zma_m1',0,16975,0,'INF','Monitor-1: 1000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510822364.644999,'zmc_m1',0,14528,0,'INF','Monitor-1: 93000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510822400.060112,'zma_m1',0,16975,0,'INF','Monitor-1: 2000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510822464.639209,'zmc_m1',0,14528,0,'INF','Monitor-1: 94000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510822500.035399,'zma_m1',0,16975,0,'INF','Monitor-1: 3000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510822564.639984,'zmc_m1',0,14528,0,'INF','Monitor-1: 95000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510822600.044148,'zma_m1',0,16975,0,'INF','Monitor-1: 4000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510822664.649341,'zmc_m1',0,14528,0,'INF','Monitor-1: 96000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510822700.044304,'zma_m1',0,16975,0,'INF','Monitor-1: 5000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510822764.638784,'zmc_m1',0,14528,0,'INF','Monitor-1: 97000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510822800.044471,'zma_m1',0,16975,0,'INF','Monitor-1: 6000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510822800.058041,'zma_m1',0,16975,0,'INF','Monitor-1: 6000 - Closing event 4, section end','zm_monitor.cpp',1521),(1510822800.077937,'zma_m1',0,16975,0,'INF','Monitor-1: 6000 - Opening new event 5, section start','zm_monitor.cpp',1541),(1510822864.615153,'zmc_m1',0,14528,0,'INF','Monitor-1: 98000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510822900.051630,'zma_m1',0,16975,0,'INF','Monitor-1: 7000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510822935.899420,'zms',0,17102,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510822964.615773,'zmc_m1',0,14528,0,'INF','Monitor-1: 99000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510823000.031649,'zma_m1',0,16975,0,'INF','Monitor-1: 8000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510823042.577840,'zmaudit',NULL,14536,0,'INF','Database event \'1/3\' does not exist in filesystem but too young to delete.','zmaudit.pl',NULL),(1510823042.583970,'zmaudit',NULL,14536,0,'INF','Found orphaned frame records for event \'2\'','zmaudit.pl',NULL),(1510823042.588940,'zmaudit',NULL,14536,0,'INF','deleting','zmaudit.pl',NULL),(1510823064.615701,'zmc_m1',0,14528,0,'INF','Monitor-1: 100000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510823100.049047,'zma_m1',0,16975,0,'INF','Monitor-1: 9000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510823164.611570,'zmc_m1',0,14528,0,'INF','Monitor-1: 101000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510823200.028783,'zma_m1',0,16975,0,'INF','Monitor-1: 10000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510823232.208157,'zms',0,16858,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510823233.891999,'zms',0,17311,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510823233.895079,'zms',0,17311,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510823245.102099,'zms',0,17314,-3,'FAT','Unable to load event 3, not found in DB','zm_event.cpp',756),(1510823247.401731,'web_php',NULL,14416,-2,'ERR','Socket /var/run/zm/zms-869921s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510823247.413165,'web_js',NULL,14416,-2,'ERR','getCmdResponse stream error: Socket /var/run/zm/zms-869921s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=event',NULL),(1510823264.608697,'zmc_m1',0,14528,0,'INF','Monitor-1: 102000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510823292.860243,'zms',0,17316,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510823300.022673,'zma_m1',0,16975,0,'INF','Monitor-1: 11000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510823318.661519,'zms',0,17333,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510823364.640028,'zmc_m1',0,14528,0,'INF','Monitor-1: 103000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510823372.471713,'web_php',NULL,10575,-2,'ERR','Command \'cat \'temp/zmFileList.txt\' | zip -q \'temp/zmExport.zip\' -@\' returned with status 12','/usr/share/zoneminder/www/skins/classic/includes/export_functions.php',938),(1510823372.474966,'web_php',NULL,10575,-2,'ERR','Export Failed','/usr/share/zoneminder/www/includes/functions.php',2033),(1510823379.830857,'zms',0,17348,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510823400.038293,'zma_m1',0,16975,0,'INF','Monitor-1: 12000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510823400.049089,'zma_m1',0,16975,0,'INF','Monitor-1: 12000 - Closing event 5, section end','zm_monitor.cpp',1521),(1510823400.055444,'zma_m1',0,16975,0,'INF','Monitor-1: 12000 - Opening new event 6, section start','zm_monitor.cpp',1541),(1510823464.609937,'zmc_m1',0,14528,0,'INF','Monitor-1: 104000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510823500.037420,'zma_m1',0,16975,0,'INF','Monitor-1: 13000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510823564.617395,'zmc_m1',0,14528,0,'INF','Monitor-1: 105000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510823600.022747,'zma_m1',0,16975,0,'INF','Monitor-1: 14000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510823664.605142,'zmc_m1',0,14528,0,'INF','Monitor-1: 106000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510823700.029931,'zma_m1',0,16975,0,'INF','Monitor-1: 15000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510823764.598656,'zmc_m1',0,14528,0,'INF','Monitor-1: 107000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510823800.015113,'zma_m1',0,16975,0,'INF','Monitor-1: 16000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510823864.606524,'zmc_m1',0,14528,0,'INF','Monitor-1: 108000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510823900.020097,'zma_m1',0,16975,0,'INF','Monitor-1: 17000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510823942.598840,'zmaudit',NULL,14536,0,'INF','Database event \'1/3\' does not exist in filesystem but too young to delete.','zmaudit.pl',NULL),(1510823964.601246,'zmc_m1',0,14528,0,'INF','Monitor-1: 109000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510824000.001488,'zma_m1',0,16975,0,'INF','Monitor-1: 18000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510824000.170330,'zma_m1',0,16975,0,'INF','Monitor-1: 18001 - Closing event 6, section end','zm_monitor.cpp',1521),(1510824000.184587,'zma_m1',0,16975,0,'INF','Monitor-1: 18001 - Opening new event 7, section start','zm_monitor.cpp',1541),(1510824064.593656,'zmc_m1',0,14528,0,'INF','Monitor-1: 110000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510824100.013326,'zma_m1',0,16975,0,'INF','Monitor-1: 19000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510824164.593666,'zmc_m1',0,14528,0,'INF','Monitor-1: 111000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510824200.032369,'zma_m1',0,16975,0,'INF','Monitor-1: 20000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510824264.610879,'zmc_m1',0,14528,0,'INF','Monitor-1: 112000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510824300.038281,'zma_m1',0,16975,0,'INF','Monitor-1: 21000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510824364.589480,'zmc_m1',0,14528,0,'INF','Monitor-1: 113000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510824400.015851,'zma_m1',0,16975,0,'INF','Monitor-1: 22000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510824464.590821,'zmc_m1',0,14528,0,'INF','Monitor-1: 114000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510824500.024731,'zma_m1',0,16975,0,'INF','Monitor-1: 23000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510824564.600221,'zmc_m1',0,14528,0,'INF','Monitor-1: 115000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510824600.022144,'zma_m1',0,16975,0,'INF','Monitor-1: 24000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510824600.051476,'zma_m1',0,16975,0,'INF','Monitor-1: 24000 - Closing event 7, section end','zm_monitor.cpp',1521),(1510824600.075929,'zma_m1',0,16975,0,'INF','Monitor-1: 24000 - Opening new event 8, section start','zm_monitor.cpp',1541),(1510824664.582166,'zmc_m1',0,14528,0,'INF','Monitor-1: 116000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510824700.017171,'zma_m1',0,16975,0,'INF','Monitor-1: 25000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510824764.599407,'zmc_m1',0,14528,0,'INF','Monitor-1: 117000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510824799.989111,'zma_m1',0,16975,0,'INF','Monitor-1: 26000 - Analysing at 10.10 fps','zm_monitor.cpp',1296),(1510824826.180850,'zmdc',NULL,14498,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510824826.263530,'zmdc',NULL,14498,0,'INF','\'zma -m 1\' sending stop to pid 16975 at 17/11/16 11:33:46','zmdc.pl',NULL),(1510824826.269223,'zma_m1',0,16975,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510824826.272757,'zma_m1',0,16975,0,'INF','Monitor-1: 26263 - Closing event 8, shutting down','zm_monitor.cpp',625),(1510824826.306980,'zmdc',NULL,14498,0,'INF','\'zma -m 1\' exited normally','zmdc.pl',NULL),(1510824826.405040,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' already running at 17/11/16 09:34:02, pid = 14528','zmdc.pl',NULL),(1510824826.486890,'zmdc',NULL,14498,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510824826.564880,'zmdc',NULL,14498,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510824836.521642,'web_php',NULL,14416,-1,'WAR','Found no event files under events/0/00/00/00/.0','/usr/share/zoneminder/www/includes/functions.php',502),(1510824837.345157,'web_php',NULL,14416,-1,'WAR','Found no event files under events/0/00/00/00/.0','/usr/share/zoneminder/www/includes/functions.php',502),(1510824838.252285,'web_php',NULL,9994,-1,'WAR','Found no event files under events/0/00/00/00/.0','/usr/share/zoneminder/www/includes/functions.php',502),(1510824838.781000,'web_php',NULL,10566,-1,'WAR','Found no event files under events/0/00/00/00/.0','/usr/share/zoneminder/www/includes/functions.php',502),(1510824862.611338,'zms',0,17311,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510824864.608365,'zmc_m1',0,14528,0,'INF','Monitor-1: 118000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510824865.240941,'zms',0,18248,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510824865.246053,'zms',0,18248,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510824868.671913,'web_php',NULL,9990,-1,'WAR','Found no event files under events/0/00/00/00/.0','/usr/share/zoneminder/www/includes/functions.php',502),(1510824887.360592,'web_php',NULL,9994,-1,'WAR','Found no event files under events/0/00/00/00/.0','/usr/share/zoneminder/www/includes/functions.php',502),(1510824888.847402,'zms',0,18248,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510824891.663689,'zms',0,18297,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510824891.666603,'zms',0,18297,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510824894.071277,'web_php',NULL,9994,-1,'WAR','Found no event files under events/1/17/11/16/.3','/usr/share/zoneminder/www/includes/functions.php',502),(1510824896.223885,'zms',0,18297,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510824964.584516,'zmc_m1',0,14528,0,'INF','Monitor-1: 119000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510825064.590828,'zmc_m1',0,14528,0,'INF','Monitor-1: 120000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510825164.416755,'zmc_m1',0,14528,0,'INF','Monitor-1: 121000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510825264.321254,'zmc_m1',0,14528,0,'INF','Monitor-1: 122000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510825364.333275,'zmc_m1',0,14528,0,'INF','Monitor-1: 123000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510825464.323079,'zmc_m1',0,14528,0,'INF','Monitor-1: 124000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510825564.330475,'zmc_m1',0,14528,0,'INF','Monitor-1: 125000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510825664.329785,'zmc_m1',0,14528,0,'INF','Monitor-1: 126000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510825742.605410,'zmaudit',NULL,14536,0,'INF','Filesystem monitor link \'Monitor-1\' does not point to valid monitor directory','zmaudit.pl',NULL),(1510825742.609100,'zmaudit',NULL,14536,0,'INF','deleting','zmaudit.pl',NULL),(1510825764.325287,'zmc_m1',0,14528,0,'INF','Monitor-1: 127000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510825864.320129,'zmc_m1',0,14528,0,'INF','Monitor-1: 128000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510825964.322644,'zmc_m1',0,14528,0,'INF','Monitor-1: 129000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510826064.316044,'zmc_m1',0,14528,0,'INF','Monitor-1: 130000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510826164.320895,'zmc_m1',0,14528,0,'INF','Monitor-1: 131000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510826264.316823,'zmc_m1',0,14528,0,'INF','Monitor-1: 132000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510826364.317990,'zmc_m1',0,14528,0,'INF','Monitor-1: 133000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510826464.312338,'zmc_m1',0,14528,0,'INF','Monitor-1: 134000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510826542.455860,'zmdc',NULL,14498,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510826542.536230,'zmdc',NULL,14498,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510826542.617380,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' already running at 17/11/16 09:34:02, pid = 14528','zmdc.pl',NULL),(1510826542.701790,'zmdc',NULL,19015,0,'INF','\'zma -m 1\' started at 17/11/16 12:02:22','zmdc.pl',NULL),(1510826542.701790,'zmdc',NULL,14498,0,'INF','\'zma -m 1\' starting at 17/11/16 12:02:22, pid = 19015','zmdc.pl',NULL),(1510826542.767636,'zma_m1',0,19015,0,'INF','In mode 5/1, warming up','zma.cpp',142),(1510826543.968011,'zma_m1',0,19015,0,'INF','Monitor-1: 026 - Opening new event 9, section start','zm_monitor.cpp',1541),(1510826544.431075,'zms',0,19026,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510826544.437356,'zms',0,19026,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510826551.121264,'zms',0,19026,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510826551.233693,'zms',0,19027,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510826551.236476,'zms',0,19027,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510826564.309060,'zmc_m1',0,14528,0,'INF','Monitor-1: 135000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510826641.392189,'zma_m1',0,19015,0,'INF','Monitor-1: 1000 - Analysing at 10.10 fps','zm_monitor.cpp',1296),(1510826646.149141,'zma_m1',0,19015,0,'INF','Monitor-1: 1047 - Gone into alarm state','zm_monitor.cpp',1614),(1510826647.931208,'zma_m1',0,19015,0,'INF','Monitor-1: 1064 - Gone into alert state','zm_monitor.cpp',1704),(1510826650.329201,'zma_m1',0,19015,0,'INF','Monitor-1: 1089 - Left alarm state (9) - 1063(17) images','zm_monitor.cpp',1711),(1510826651.884087,'zma_m1',0,19015,0,'INF','Monitor-1: 1104 - Gone into alarm state','zm_monitor.cpp',1614),(1510826653.615875,'zma_m1',0,19015,0,'INF','Monitor-1: 1121 - Gone into alert state','zm_monitor.cpp',1704),(1510826655.995404,'zma_m1',0,19015,0,'INF','Monitor-1: 1146 - Left alarm state (9) - 1120(34) images','zm_monitor.cpp',1711),(1510826664.282676,'zmc_m1',0,14528,0,'INF','Monitor-1: 136000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510826724.324600,'zma_m1',0,19015,0,'INF','Monitor-1: 1829 - Gone into alarm state','zm_monitor.cpp',1614),(1510826728.611080,'zma_m1',0,19015,0,'INF','Monitor-1: 1872 - Gone into alert state','zm_monitor.cpp',1704),(1510826731.089102,'zma_m1',0,19015,0,'INF','Monitor-1: 1897 - Left alarm state (9) - 1871(77) images','zm_monitor.cpp',1711),(1510826741.365708,'zma_m1',0,19015,0,'INF','Monitor-1: 2000 - Analysing at 10.00 fps','zm_monitor.cpp',1296),(1510826749.272460,'zmdc',NULL,14498,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510826749.368210,'zmdc',NULL,14498,0,'INF','\'zma -m 1\' sending stop to pid 19015 at 17/11/16 12:05:49','zmdc.pl',NULL),(1510826749.373924,'zma_m1',0,19015,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510826749.394398,'zma_m1',0,19015,0,'INF','Monitor-1: 2081 - Closing event 9, shutting down','zm_monitor.cpp',625),(1510826749.435820,'zmdc',NULL,14498,0,'INF','\'zma -m 1\' exited normally','zmdc.pl',NULL),(1510826749.533120,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' already running at 17/11/16 09:34:02, pid = 14528','zmdc.pl',NULL),(1510826749.616240,'zmdc',NULL,14498,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510826749.698630,'zmdc',NULL,14498,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510826764.283037,'zmc_m1',0,14528,0,'INF','Monitor-1: 137000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510826864.307651,'zmc_m1',0,14528,0,'INF','Monitor-1: 138000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510826964.370290,'zmc_m1',0,14528,0,'INF','Monitor-1: 139000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510827033.980574,'zms',0,19027,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510827033.983291,'zms',0,19027,-2,'ERR','Unable to send stream frame: Broken pipe','zm_monitor.cpp',3936),(1510827034.034806,'zms',0,23608,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510827034.039293,'zms',0,23608,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510827034.045028,'zms',0,23608,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510827034.123944,'zms',0,23608,-2,'ERR','Terminating, last frame sent time 1510827034.044835 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510827064.270394,'zmc_m1',0,14528,0,'INF','Monitor-1: 140000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510827164.304803,'zmc_m1',0,14528,0,'INF','Monitor-1: 141000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510827264.304746,'zmc_m1',0,14528,0,'INF','Monitor-1: 142000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510827364.303575,'zmc_m1',0,14528,0,'INF','Monitor-1: 143000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510827464.302381,'zmc_m1',0,14528,0,'INF','Monitor-1: 144000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510827564.299134,'zmc_m1',0,14528,0,'INF','Monitor-1: 145000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510827664.296102,'zmc_m1',0,14528,0,'INF','Monitor-1: 146000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510827764.296280,'zmc_m1',0,14528,0,'INF','Monitor-1: 147000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510827864.275863,'zmc_m1',0,14528,0,'INF','Monitor-1: 148000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510827964.273127,'zmc_m1',0,14528,0,'INF','Monitor-1: 149000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510828064.273282,'zmc_m1',0,14528,0,'INF','Monitor-1: 150000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510828164.268542,'zmc_m1',0,14528,0,'INF','Monitor-1: 151000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510828264.269589,'zmc_m1',0,14528,0,'INF','Monitor-1: 152000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510828364.281056,'zmc_m1',0,14528,0,'INF','Monitor-1: 153000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510828464.276072,'zmc_m1',0,14528,0,'INF','Monitor-1: 154000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510828564.276014,'zmc_m1',0,14528,0,'INF','Monitor-1: 155000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510828664.262209,'zmc_m1',0,14528,0,'INF','Monitor-1: 156000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510828764.260692,'zmc_m1',0,14528,0,'INF','Monitor-1: 157000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510828864.273043,'zmc_m1',0,14528,0,'INF','Monitor-1: 158000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510828964.248370,'zmc_m1',0,14528,0,'INF','Monitor-1: 159000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510829064.267902,'zmc_m1',0,14528,0,'INF','Monitor-1: 160000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510829164.253991,'zmc_m1',0,14528,0,'INF','Monitor-1: 161000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510829264.263139,'zmc_m1',0,14528,0,'INF','Monitor-1: 162000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510829364.247648,'zmc_m1',0,14528,0,'INF','Monitor-1: 163000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510829464.248016,'zmc_m1',0,14528,0,'INF','Monitor-1: 164000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510829564.228424,'zmc_m1',0,14528,0,'INF','Monitor-1: 165000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510829664.254427,'zmc_m1',0,14528,0,'INF','Monitor-1: 166000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510829764.239420,'zmc_m1',0,14528,0,'INF','Monitor-1: 167000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510829864.240748,'zmc_m1',0,14528,0,'INF','Monitor-1: 168000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510829964.234576,'zmc_m1',0,14528,0,'INF','Monitor-1: 169000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510830064.236117,'zmc_m1',0,14528,0,'INF','Monitor-1: 170000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510830164.241411,'zmc_m1',0,14528,0,'INF','Monitor-1: 171000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510830264.231939,'zmc_m1',0,14528,0,'INF','Monitor-1: 172000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510830364.232854,'zmc_m1',0,14528,0,'INF','Monitor-1: 173000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510830464.238538,'zmc_m1',0,14528,0,'INF','Monitor-1: 174000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510830564.227312,'zmc_m1',0,14528,0,'INF','Monitor-1: 175000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510830664.232706,'zmc_m1',0,14528,0,'INF','Monitor-1: 176000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510830764.210500,'zmc_m1',0,14528,0,'INF','Monitor-1: 177000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510830864.235606,'zmc_m1',0,14528,0,'INF','Monitor-1: 178000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510830964.231999,'zmc_m1',0,14528,0,'INF','Monitor-1: 179000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510831064.231467,'zmc_m1',0,14528,0,'INF','Monitor-1: 180000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510831164.198513,'zmc_m1',0,14528,0,'INF','Monitor-1: 181000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510831264.227553,'zmc_m1',0,14528,0,'INF','Monitor-1: 182000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510831364.204338,'zmc_m1',0,14528,0,'INF','Monitor-1: 183000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510831464.222377,'zmc_m1',0,14528,0,'INF','Monitor-1: 184000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510831564.221407,'zmc_m1',0,14528,0,'INF','Monitor-1: 185000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510831664.218192,'zmc_m1',0,14528,0,'INF','Monitor-1: 186000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510831764.213563,'zmc_m1',0,14528,0,'INF','Monitor-1: 187000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510831864.209910,'zmc_m1',0,14528,0,'INF','Monitor-1: 188000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510831964.199047,'zmc_m1',0,14528,0,'INF','Monitor-1: 189000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510832064.181229,'zmc_m1',0,14528,0,'INF','Monitor-1: 190000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510832164.198714,'zmc_m1',0,14528,0,'INF','Monitor-1: 191000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510832264.206673,'zmc_m1',0,14528,0,'INF','Monitor-1: 192000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510832293.049854,'zms',0,25005,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832293.056029,'zms',0,25005,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832364.176081,'zmc_m1',0,14528,0,'INF','Monitor-1: 193000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510832464.202663,'zmc_m1',0,14528,0,'INF','Monitor-1: 194000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510832564.173613,'zmc_m1',0,14528,0,'INF','Monitor-1: 195000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510832664.199315,'zmc_m1',0,14528,0,'INF','Monitor-1: 196000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510832764.147250,'zmc_m1',0,14528,0,'INF','Monitor-1: 197000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510832792.127480,'zmc_m1',0,14560,-2,'ERR','RTP timed out','zm_rtp_data.cpp',93),(1510832799.243410,'zms',0,25005,-2,'ERR','Terminating, last frame sent time 10.003028 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832801.376029,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832801.396122,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832801.437006,'zms',0,25185,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832801.442938,'zms',0,25185,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832801.572060,'zms',0,25185,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510832804.055290,'zmwatch',NULL,14542,0,'INF','Restarting capture daemon for Monitor-1, time since last capture 15 seconds (1510832804-1510832789)','zmwatch.pl',NULL),(1510832804.139780,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' sending stop to pid 14528 at 17/11/16 13:46:44','zmdc.pl',NULL),(1510832804.144511,'zmc_m1',0,14528,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510832804.532066,'web_php',NULL,9994,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-756750s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832810.145530,'zmdc',NULL,14498,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/16 13:46:50. Sending KILL to pid 14528','zmdc.pl',NULL),(1510832810.163150,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510832810.267910,'zmdc',NULL,14498,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510832810.277430,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' starting at 17/11/16 13:46:50, pid = 25189','zmdc.pl',NULL),(1510832810.277490,'zmdc',NULL,25189,0,'INF','\'zmc -m 1\' started at 17/11/16 13:46:50','zmdc.pl',NULL),(1510832810.455317,'zmc_m1',0,25189,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510832812.690520,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832812.724890,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832812.764650,'zms',0,25194,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832812.770317,'zms',0,25194,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832813.276099,'zms',0,25194,-2,'ERR','Terminating, last frame sent time 1510832812.775946 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832815.375958,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832815.391191,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832815.430475,'zms',0,25195,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832815.435476,'zms',0,25195,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832815.940992,'zms',0,25195,-2,'ERR','Terminating, last frame sent time 1510832815.440839 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832818.404291,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832818.426368,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832818.467484,'zms',0,25196,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832818.472681,'zms',0,25196,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832818.519940,'web_php',NULL,9990,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-756750s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832818.978650,'zms',0,25196,-2,'ERR','Terminating, last frame sent time 1510832818.478508 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832820.475528,'zmc_m1',0,25189,-3,'FAT','No RTSP sources','zm_remote_camera_rtsp.cpp',162),(1510832820.494890,'zmdc',NULL,14498,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510832821.375127,'web_php',NULL,18148,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832821.402003,'web_js',NULL,18148,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832821.431579,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832821.441800,'zms',0,25199,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832821.447091,'zms',0,25199,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832821.952459,'zms',0,25199,-2,'ERR','Terminating, last frame sent time 1510832821.452288 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832824.403891,'web_php',NULL,18148,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832824.426630,'web_js',NULL,18148,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832824.467204,'zms',0,25200,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832824.470061,'zms',0,25200,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832824.971539,'zms',0,25200,-2,'ERR','Terminating, last frame sent time 1510832824.471364 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832825.008530,'zmdc',NULL,14498,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510832825.015840,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' starting at 17/11/16 13:47:05, pid = 25201','zmdc.pl',NULL),(1510832825.015870,'zmdc',NULL,25201,0,'INF','\'zmc -m 1\' started at 17/11/16 13:47:05','zmdc.pl',NULL),(1510832825.157473,'zmc_m1',0,25201,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510832827.379528,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832827.397056,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832827.435946,'web_php',NULL,18148,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832827.437175,'zms',0,25203,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832827.446317,'zms',0,25203,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832827.746802,'zmc_m1',0,25202,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510832827.752697,'zmc_m1',0,25202,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510832827.780650,'zmdc',NULL,14498,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510832827.952299,'zms',0,25203,-2,'ERR','Terminating, last frame sent time 1510832827.452194 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832830.407631,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832830.429699,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832830.469290,'zms',0,25205,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832830.474328,'zms',0,25205,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832830.978371,'zms',0,25205,-2,'ERR','Terminating, last frame sent time 1510832830.478177 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832833.381380,'web_php',NULL,10569,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832833.399850,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832833.438722,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832833.440096,'zms',0,25206,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832833.442683,'zms',0,25206,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832833.945607,'zms',0,25206,-2,'ERR','Terminating, last frame sent time 1510832833.445443 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832836.407716,'web_php',NULL,10569,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832836.430888,'web_js',NULL,10569,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832836.470863,'zms',0,25207,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832836.473562,'zms',0,25207,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832836.975250,'zms',0,25207,-2,'ERR','Terminating, last frame sent time 1510832836.475092 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832837.005380,'zmdc',NULL,14498,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510832837.012000,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' starting at 17/11/16 13:47:17, pid = 25208','zmdc.pl',NULL),(1510832837.012100,'zmdc',NULL,25208,0,'INF','\'zmc -m 1\' started at 17/11/16 13:47:17','zmdc.pl',NULL),(1510832837.151760,'zmc_m1',0,25208,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510832839.380383,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832839.392394,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832839.433135,'zms',0,25210,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832839.437278,'zms',0,25210,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832839.442898,'zms',0,25210,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510832839.948487,'zms',0,25210,-2,'ERR','Terminating, last frame sent time 1510832839.442869 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832840.130754,'zmc_m1',0,25209,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510832840.136670,'zmc_m1',0,25209,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510832840.155870,'zmdc',NULL,14498,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510832842.402085,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832842.420724,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832842.434546,'web_php',NULL,10569,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-756750s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832842.460737,'zms',0,25213,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832842.463902,'zms',0,25213,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832842.966907,'zms',0,25213,-2,'ERR','Terminating, last frame sent time 1510832842.466776 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832845.381033,'web_php',NULL,18148,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832845.391461,'web_js',NULL,18148,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832845.423712,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832845.431804,'zms',0,25214,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832845.434797,'zms',0,25214,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832845.937462,'zms',0,25214,-2,'ERR','Terminating, last frame sent time 1510832845.437307 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832848.402582,'web_php',NULL,18148,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832848.423058,'web_js',NULL,14417,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832848.462740,'zms',0,25224,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832848.465621,'zms',0,25224,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832848.967152,'zms',0,25224,-2,'ERR','Terminating, last frame sent time 1510832848.467036 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832851.384214,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832851.411777,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832851.430334,'web_php',NULL,14417,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832851.471208,'zms',0,25225,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832851.474359,'zms',0,25225,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832851.977392,'zms',0,25225,-2,'ERR','Terminating, last frame sent time 1510832851.477237 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832854.408411,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832854.427896,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832854.467678,'zms',0,25226,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832854.472896,'zms',0,25226,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832854.978041,'zms',0,25226,-2,'ERR','Terminating, last frame sent time 1510832854.477884 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832857.387958,'web_php',NULL,15989,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832857.404495,'web_js',NULL,15989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832857.431123,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832857.445356,'zms',0,25227,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832857.450709,'zms',0,25227,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832857.956243,'zms',0,25227,-2,'ERR','Terminating, last frame sent time 1510832857.456084 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832860.043960,'zmdc',NULL,14498,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510832860.051310,'zmdc',NULL,25228,0,'INF','\'zmc -m 1\' started at 17/11/16 13:47:40','zmdc.pl',NULL),(1510832860.051290,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' starting at 17/11/16 13:47:40, pid = 25228','zmdc.pl',NULL),(1510832860.188247,'zmc_m1',0,25228,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510832860.416337,'web_php',NULL,15989,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832860.436717,'web_js',NULL,15989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832860.484782,'zms',0,25230,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832860.489593,'zms',0,25230,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832860.995319,'zms',0,25230,-2,'ERR','Terminating, last frame sent time 1510832860.495162 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832863.170764,'zmc_m1',0,25229,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510832863.174340,'zmc_m1',0,25229,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510832863.193320,'zmdc',NULL,14498,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510832863.388249,'web_php',NULL,9991,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832863.409066,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832863.447619,'web_php',NULL,15989,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832863.448949,'zms',0,25231,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832863.458493,'zms',0,25231,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832863.964348,'zms',0,25231,-2,'ERR','Terminating, last frame sent time 1510832863.464194 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832866.418135,'web_php',NULL,9991,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832866.445124,'web_js',NULL,9991,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832866.484358,'zms',0,25232,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832866.489462,'zms',0,25232,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832866.994558,'zms',0,25232,-2,'ERR','Terminating, last frame sent time 1510832866.494400 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832869.384307,'web_php',NULL,14417,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832869.402218,'web_js',NULL,14417,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832869.442473,'zms',0,25233,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832869.448184,'zms',0,25233,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832869.453904,'zms',0,25233,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510832869.960343,'zms',0,25233,-2,'ERR','Terminating, last frame sent time 1510832869.453867 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832872.408810,'web_php',NULL,14417,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832872.437001,'web_js',NULL,14417,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832872.450586,'web_php',NULL,9991,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-756750s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832872.496155,'zms',0,25234,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832872.501785,'zms',0,25234,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832873.007008,'zms',0,25234,-2,'ERR','Terminating, last frame sent time 1510832872.506934 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832875.394931,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832875.424847,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832875.440405,'web_php',NULL,14417,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832875.477631,'zms',0,25236,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832875.482894,'zms',0,25236,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832875.988444,'zms',0,25236,-2,'ERR','Terminating, last frame sent time 1510832875.488291 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832878.424569,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832878.443691,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832878.484018,'zms',0,25238,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832878.488740,'zms',0,25238,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832878.993195,'zms',0,25238,-2,'ERR','Terminating, last frame sent time 1510832878.493063 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832881.392009,'web_php',NULL,15989,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832881.419561,'web_js',NULL,15989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832881.451753,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832881.459705,'zms',0,25241,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832881.462392,'zms',0,25241,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832881.965607,'zms',0,25241,-2,'ERR','Terminating, last frame sent time 1510832881.465443 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832884.420184,'web_php',NULL,15989,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832884.440510,'web_js',NULL,15989,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832884.480977,'zms',0,25242,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832884.483691,'zms',0,25242,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832884.986560,'zms',0,25242,-2,'ERR','Terminating, last frame sent time 1510832884.486392 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832887.391212,'web_php',NULL,9990,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832887.406647,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832887.446655,'web_php',NULL,15989,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832887.447452,'zms',0,25243,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832887.457043,'zms',0,25243,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832887.962487,'zms',0,25243,-2,'ERR','Terminating, last frame sent time 1510832887.462379 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832890.415881,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832890.437783,'web_js',NULL,9990,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832890.478242,'zms',0,25245,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832890.483276,'zms',0,25245,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832890.988847,'zms',0,25245,-2,'ERR','Terminating, last frame sent time 1510832890.488686 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832893.395294,'web_php',NULL,14417,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832893.417093,'web_js',NULL,14417,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832893.444851,'web_php',NULL,9990,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832893.457101,'zms',0,25246,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832893.462101,'zms',0,25246,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832893.967011,'zms',0,25246,-2,'ERR','Terminating, last frame sent time 1510832893.466876 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832896.425336,'web_php',NULL,14417,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832896.454417,'web_js',NULL,14417,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832896.493982,'zms',0,25247,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832896.499732,'zms',0,25247,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832897.004298,'zms',0,25247,-2,'ERR','Terminating, last frame sent time 1510832896.504136 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832899.396215,'web_php',NULL,9994,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832899.422138,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832899.454257,'web_php',NULL,14417,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832899.461378,'zms',0,25248,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832899.466334,'zms',0,25248,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832899.969442,'zms',0,25248,-2,'ERR','Terminating, last frame sent time 1510832899.469281 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832902.425134,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832902.443737,'web_js',NULL,9994,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510832902.484457,'zms',0,25249,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832902.489564,'zms',0,25249,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510832902.994526,'zms',0,25249,-2,'ERR','Terminating, last frame sent time 1510832902.494400 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510832903.085430,'zmdc',NULL,14498,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510832903.092390,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' starting at 17/11/16 13:48:23, pid = 25250','zmdc.pl',NULL),(1510832903.092520,'zmdc',NULL,25250,0,'INF','\'zmc -m 1\' started at 17/11/16 13:48:23','zmdc.pl',NULL),(1510832903.231676,'zmc_m1',0,25250,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510832905.397581,'web_php',NULL,15989,-2,'ERR','socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832905.424720,'web_js',NULL,15989,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-756750w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510832905.454276,'web_php',NULL,9994,-2,'ERR','Socket /var/run/zm/zms-756750s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510832905.463162,'zms',0,25254,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510832905.466024,'zms',0,25254,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510833004.223400,'zmc_m1',0,25250,0,'INF','Monitor-1: 1000 - Capturing at 9.90 fps','zm_monitor.cpp',3125),(1510833104.238124,'zmc_m1',0,25250,0,'INF','Monitor-1: 2000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510833204.262104,'zmc_m1',0,25250,0,'INF','Monitor-1: 3000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510833304.219356,'zmc_m1',0,25250,0,'INF','Monitor-1: 4000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510833404.229231,'zmc_m1',0,25250,0,'INF','Monitor-1: 5000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510833504.212050,'zmc_m1',0,25250,0,'INF','Monitor-1: 6000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510833604.210021,'zmc_m1',0,25250,0,'INF','Monitor-1: 7000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510833704.227508,'zmc_m1',0,25250,0,'INF','Monitor-1: 8000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510833804.235415,'zmc_m1',0,25250,0,'INF','Monitor-1: 9000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510833904.214660,'zmc_m1',0,25250,0,'INF','Monitor-1: 10000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510834004.205336,'zmc_m1',0,25250,0,'INF','Monitor-1: 11000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510834104.208305,'zmc_m1',0,25250,0,'INF','Monitor-1: 12000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510834204.210668,'zmc_m1',0,25250,0,'INF','Monitor-1: 13000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510834304.200167,'zmc_m1',0,25250,0,'INF','Monitor-1: 14000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510834404.210504,'zmc_m1',0,25250,0,'INF','Monitor-1: 15000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510834504.235029,'zmc_m1',0,25250,0,'INF','Monitor-1: 16000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510834604.204447,'zmc_m1',0,25250,0,'INF','Monitor-1: 17000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510834704.192374,'zmc_m1',0,25250,0,'INF','Monitor-1: 18000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510834804.189866,'zmc_m1',0,25250,0,'INF','Monitor-1: 19000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510834904.199592,'zmc_m1',0,25250,0,'INF','Monitor-1: 20000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510835004.217268,'zmc_m1',0,25250,0,'INF','Monitor-1: 21000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510835104.201856,'zmc_m1',0,25250,0,'INF','Monitor-1: 22000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510835204.184157,'zmc_m1',0,25250,0,'INF','Monitor-1: 23000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510835304.184986,'zmc_m1',0,25250,0,'INF','Monitor-1: 24000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510835404.191222,'zmc_m1',0,25250,0,'INF','Monitor-1: 25000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510835504.189425,'zmc_m1',0,25250,0,'INF','Monitor-1: 26000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510835604.191351,'zmc_m1',0,25250,0,'INF','Monitor-1: 27000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510835704.177714,'zmc_m1',0,25250,0,'INF','Monitor-1: 28000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510835804.184919,'zmc_m1',0,25250,0,'INF','Monitor-1: 29000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510835904.185831,'zmc_m1',0,25250,0,'INF','Monitor-1: 30000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510836004.178743,'zmc_m1',0,25250,0,'INF','Monitor-1: 31000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510836104.180542,'zmc_m1',0,25250,0,'INF','Monitor-1: 32000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510836204.179455,'zmc_m1',0,25250,0,'INF','Monitor-1: 33000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510836304.179642,'zmc_m1',0,25250,0,'INF','Monitor-1: 34000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510836404.174670,'zmc_m1',0,25250,0,'INF','Monitor-1: 35000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510836504.167711,'zmc_m1',0,25250,0,'INF','Monitor-1: 36000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510836604.199862,'zmc_m1',0,25250,0,'INF','Monitor-1: 37000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510836704.173662,'zmc_m1',0,25250,0,'INF','Monitor-1: 38000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510836804.168974,'zmc_m1',0,25250,0,'INF','Monitor-1: 39000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510836904.187139,'zmc_m1',0,25250,0,'INF','Monitor-1: 40000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510837004.166380,'zmc_m1',0,25250,0,'INF','Monitor-1: 41000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510837104.165829,'zmc_m1',0,25250,0,'INF','Monitor-1: 42000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510837204.161478,'zmc_m1',0,25250,0,'INF','Monitor-1: 43000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510837304.155203,'zmc_m1',0,25250,0,'INF','Monitor-1: 44000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510837404.193542,'zmc_m1',0,25250,0,'INF','Monitor-1: 45000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510837504.158540,'zmc_m1',0,25250,0,'INF','Monitor-1: 46000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510837604.145750,'zmc_m1',0,25250,0,'INF','Monitor-1: 47000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510837704.159657,'zmc_m1',0,25250,0,'INF','Monitor-1: 48000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510837804.145014,'zmc_m1',0,25250,0,'INF','Monitor-1: 49000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510837904.153157,'zmc_m1',0,25250,0,'INF','Monitor-1: 50000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510838004.127195,'zmc_m1',0,25250,0,'INF','Monitor-1: 51000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510838104.134967,'zmc_m1',0,25250,0,'INF','Monitor-1: 52000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510838204.122169,'zmc_m1',0,25250,0,'INF','Monitor-1: 53000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510838304.119969,'zmc_m1',0,25250,0,'INF','Monitor-1: 54000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510838404.124131,'zmc_m1',0,25250,0,'INF','Monitor-1: 55000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510838504.137954,'zmc_m1',0,25250,0,'INF','Monitor-1: 56000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510838604.115692,'zmc_m1',0,25250,0,'INF','Monitor-1: 57000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510838704.124255,'zmc_m1',0,25250,0,'INF','Monitor-1: 58000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510838804.114123,'zmc_m1',0,25250,0,'INF','Monitor-1: 59000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510838904.139219,'zmc_m1',0,25250,0,'INF','Monitor-1: 60000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510839004.106334,'zmc_m1',0,25250,0,'INF','Monitor-1: 61000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510839104.109314,'zmc_m1',0,25250,0,'INF','Monitor-1: 62000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510839204.106529,'zmc_m1',0,25250,0,'INF','Monitor-1: 63000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510839304.116864,'zmc_m1',0,25250,0,'INF','Monitor-1: 64000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510839404.137089,'zmc_m1',0,25250,0,'INF','Monitor-1: 65000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510839504.116802,'zmc_m1',0,25250,0,'INF','Monitor-1: 66000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510839604.143451,'zmc_m1',0,25250,0,'INF','Monitor-1: 67000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510839704.111830,'zmc_m1',0,25250,0,'INF','Monitor-1: 68000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510839804.101506,'zmc_m1',0,25250,0,'INF','Monitor-1: 69000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510839904.097492,'zmc_m1',0,25250,0,'INF','Monitor-1: 70000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510840004.094940,'zmc_m1',0,25250,0,'INF','Monitor-1: 71000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510840104.109038,'zmc_m1',0,25250,0,'INF','Monitor-1: 72000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510840204.115317,'zmc_m1',0,25250,0,'INF','Monitor-1: 73000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510840304.105843,'zmc_m1',0,25250,0,'INF','Monitor-1: 74000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510840404.089685,'zmc_m1',0,25250,0,'INF','Monitor-1: 75000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510840504.105425,'zmc_m1',0,25250,0,'INF','Monitor-1: 76000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510840604.107899,'zmc_m1',0,25250,0,'INF','Monitor-1: 77000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510840704.088211,'zmc_m1',0,25250,0,'INF','Monitor-1: 78000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510840804.098155,'zmc_m1',0,25250,0,'INF','Monitor-1: 79000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510840904.099123,'zmc_m1',0,25250,0,'INF','Monitor-1: 80000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510841004.116826,'zmc_m1',0,25250,0,'INF','Monitor-1: 81000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510841104.094962,'zmc_m1',0,25250,0,'INF','Monitor-1: 82000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510841204.091549,'zmc_m1',0,25250,0,'INF','Monitor-1: 83000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510841304.043350,'zmc_m1',0,25250,0,'INF','Monitor-1: 84000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510841404.046998,'zmc_m1',0,25250,0,'INF','Monitor-1: 85000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510841504.045928,'zmc_m1',0,25250,0,'INF','Monitor-1: 86000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510841604.047621,'zmc_m1',0,25250,0,'INF','Monitor-1: 87000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510841704.058420,'zmc_m1',0,25250,0,'INF','Monitor-1: 88000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510841804.046895,'zmc_m1',0,25250,0,'INF','Monitor-1: 89000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510841904.045204,'zmc_m1',0,25250,0,'INF','Monitor-1: 90000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510842004.039982,'zmc_m1',0,25250,0,'INF','Monitor-1: 91000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510842104.033984,'zmc_m1',0,25250,0,'INF','Monitor-1: 92000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510842204.036069,'zmc_m1',0,25250,0,'INF','Monitor-1: 93000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510842304.056964,'zmc_m1',0,25250,0,'INF','Monitor-1: 94000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510842404.037765,'zmc_m1',0,25250,0,'INF','Monitor-1: 95000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510842504.047273,'zmc_m1',0,25250,0,'INF','Monitor-1: 96000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510842604.030754,'zmc_m1',0,25250,0,'INF','Monitor-1: 97000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510842704.007813,'zmc_m1',0,25250,0,'INF','Monitor-1: 98000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510842804.008605,'zmc_m1',0,25250,0,'INF','Monitor-1: 99000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510842904.016939,'zmc_m1',0,25250,0,'INF','Monitor-1: 100000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510843004.001822,'zmc_m1',0,25250,0,'INF','Monitor-1: 101000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510843104.001450,'zmc_m1',0,25250,0,'INF','Monitor-1: 102000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510843203.996527,'zmc_m1',0,25250,0,'INF','Monitor-1: 103000 - Capturing at 10.10 fps','zm_monitor.cpp',3125),(1510843304.007971,'zmc_m1',0,25250,0,'INF','Monitor-1: 104000 - Capturing at 9.90 fps','zm_monitor.cpp',3125),(1510843403.995136,'zmc_m1',0,25250,0,'INF','Monitor-1: 105000 - Capturing at 10.10 fps','zm_monitor.cpp',3125),(1510843503.991369,'zmc_m1',0,25250,0,'INF','Monitor-1: 106000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510843604.019365,'zmc_m1',0,25250,0,'INF','Monitor-1: 107000 - Capturing at 9.90 fps','zm_monitor.cpp',3125),(1510843703.988720,'zmc_m1',0,25250,0,'INF','Monitor-1: 108000 - Capturing at 10.10 fps','zm_monitor.cpp',3125),(1510843803.988940,'zmc_m1',0,25250,0,'INF','Monitor-1: 109000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510843903.988423,'zmc_m1',0,25250,0,'INF','Monitor-1: 110000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510844003.986684,'zmc_m1',0,25250,0,'INF','Monitor-1: 111000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510844103.996336,'zmc_m1',0,25250,0,'INF','Monitor-1: 112000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510844203.995985,'zmc_m1',0,25250,0,'INF','Monitor-1: 113000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510844303.982440,'zmc_m1',0,25250,0,'INF','Monitor-1: 114000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510844404.016005,'zmc_m1',0,25250,0,'INF','Monitor-1: 115000 - Capturing at 9.90 fps','zm_monitor.cpp',3125),(1510844503.998024,'zmc_m1',0,25250,0,'INF','Monitor-1: 116000 - Capturing at 10.10 fps','zm_monitor.cpp',3125),(1510844603.989392,'zmc_m1',0,25250,0,'INF','Monitor-1: 117000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510844703.999944,'zmc_m1',0,25250,0,'INF','Monitor-1: 118000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510844803.995968,'zmc_m1',0,25250,0,'INF','Monitor-1: 119000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510844903.985696,'zmc_m1',0,25250,0,'INF','Monitor-1: 120000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510845003.992717,'zmc_m1',0,25250,0,'INF','Monitor-1: 121000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510845103.981646,'zmc_m1',0,25250,0,'INF','Monitor-1: 122000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510845203.978475,'zmc_m1',0,25250,0,'INF','Monitor-1: 123000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510845303.978255,'zmc_m1',0,25250,0,'INF','Monitor-1: 124000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510845404.003033,'zmc_m1',0,25250,0,'INF','Monitor-1: 125000 - Capturing at 9.90 fps','zm_monitor.cpp',3125),(1510845503.989423,'zmc_m1',0,25250,0,'INF','Monitor-1: 126000 - Capturing at 10.10 fps','zm_monitor.cpp',3125),(1510845603.974731,'zmc_m1',0,25250,0,'INF','Monitor-1: 127000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510845703.963090,'zmc_m1',0,25250,0,'INF','Monitor-1: 128000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510845803.970958,'zmc_m1',0,25250,0,'INF','Monitor-1: 129000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510845903.990911,'zmc_m1',0,25250,0,'INF','Monitor-1: 130000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510846003.986538,'zmc_m1',0,25250,0,'INF','Monitor-1: 131000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510846103.965675,'zmc_m1',0,25250,0,'INF','Monitor-1: 132000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510846203.967854,'zmc_m1',0,25250,0,'INF','Monitor-1: 133000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510846303.960419,'zmc_m1',0,25250,0,'INF','Monitor-1: 134000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510846403.961941,'zmc_m1',0,25250,0,'INF','Monitor-1: 135000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510846503.959011,'zmc_m1',0,25250,0,'INF','Monitor-1: 136000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510846603.957758,'zmc_m1',0,25250,0,'INF','Monitor-1: 137000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510846703.974638,'zmc_m1',0,25250,0,'INF','Monitor-1: 138000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510846803.952412,'zmc_m1',0,25250,0,'INF','Monitor-1: 139000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510846903.967491,'zmc_m1',0,25250,0,'INF','Monitor-1: 140000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510847003.952353,'zmc_m1',0,25250,0,'INF','Monitor-1: 141000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510847103.949749,'zmc_m1',0,25250,0,'INF','Monitor-1: 142000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510847203.958843,'zmc_m1',0,25250,0,'INF','Monitor-1: 143000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510847303.962843,'zmc_m1',0,25250,0,'INF','Monitor-1: 144000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510847403.961123,'zmc_m1',0,25250,0,'INF','Monitor-1: 145000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510847503.954410,'zmc_m1',0,25250,0,'INF','Monitor-1: 146000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510847603.925193,'zmc_m1',0,25250,0,'INF','Monitor-1: 147000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510847703.929930,'zmc_m1',0,25250,0,'INF','Monitor-1: 148000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510847803.930040,'zmc_m1',0,25250,0,'INF','Monitor-1: 149000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510847903.936908,'zmc_m1',0,25250,0,'INF','Monitor-1: 150000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510848003.933276,'zmc_m1',0,25250,0,'INF','Monitor-1: 151000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510848103.929569,'zmc_m1',0,25250,0,'INF','Monitor-1: 152000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510848203.914925,'zmc_m1',0,25250,0,'INF','Monitor-1: 153000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510848303.912171,'zmc_m1',0,25250,0,'INF','Monitor-1: 154000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510848403.910285,'zmc_m1',0,25250,0,'INF','Monitor-1: 155000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510848503.909114,'zmc_m1',0,25250,0,'INF','Monitor-1: 156000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510848562.493679,'zms',0,25254,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510848562.499064,'zms',0,25254,-2,'ERR','Unable to send stream frame: Broken pipe','zm_monitor.cpp',3936),(1510848603.931849,'zmc_m1',0,25250,0,'INF','Monitor-1: 157000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510848703.927933,'zmc_m1',0,25250,0,'INF','Monitor-1: 158000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510848803.924634,'zmc_m1',0,25250,0,'INF','Monitor-1: 159000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510848903.927907,'zmc_m1',0,25250,0,'INF','Monitor-1: 160000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510849003.904800,'zmc_m1',0,25250,0,'INF','Monitor-1: 161000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510849103.924934,'zmc_m1',0,25250,0,'INF','Monitor-1: 162000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510849121.421380,'zmpkg',NULL,30285,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510849121.428280,'zmpkg',NULL,30285,0,'INF','Command: stop','zmpkg.pl',NULL),(1510849121.618670,'zmdc',NULL,14498,0,'INF','\'zmfilter.pl\' sending stop to pid 14530 at 17/11/16 18:18:41','zmdc.pl',NULL),(1510849121.625350,'zmdc',NULL,14498,0,'INF','\'zmaudit.pl -c\' sending stop to pid 14536 at 17/11/16 18:18:41','zmdc.pl',NULL),(1510849121.631540,'zmdc',NULL,14498,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510849121.634670,'zmdc',NULL,14498,0,'INF','\'zmwatch.pl\' sending stop to pid 14542 at 17/11/16 18:18:41','zmdc.pl',NULL),(1510849121.637510,'zmdc',NULL,14498,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510849121.639030,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' sending stop to pid 25250 at 17/11/16 18:18:41','zmdc.pl',NULL),(1510849121.642400,'zmdc',NULL,14498,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510849121.645639,'zmc_m1',0,25250,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510849121.645680,'zmdc',NULL,14498,0,'INF','\'zmtelemetry.pl\' sending stop to pid 14548 at 17/11/16 18:18:41','zmdc.pl',NULL),(1510849121.652830,'zmdc',NULL,14498,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510849126.657340,'zmdc',NULL,14498,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/16 18:18:46. Sending KILL to pid 25250','zmdc.pl',NULL),(1510849126.676830,'zmdc',NULL,14498,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510849136.768550,'zmdc',NULL,14498,0,'INF','Server shutdown at 17/11/16 18:18:56','zmdc.pl',NULL),(1510897940.101640,'zmpkg',NULL,1363,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510897940.115570,'zmpkg',NULL,1363,0,'INF','Command: start','zmpkg.pl',NULL),(1510897940.296510,'zmdc',NULL,1473,0,'INF','Server starting at 17/11/17 07:52:20','zmdc.pl',NULL),(1510897943.299480,'zmpkg',NULL,1363,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510897943.389260,'zmdc',NULL,1854,0,'INF','\'zmc -m 1\' started at 17/11/17 07:52:23','zmdc.pl',NULL),(1510897943.389250,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 07:52:23, pid = 1854','zmdc.pl',NULL),(1510897943.443540,'zmdc',NULL,1473,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510897943.446360,'zmdc',NULL,1473,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510897943.449120,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 07:52:23, pid = 1894','zmdc.pl',NULL),(1510897943.449130,'zmdc',NULL,1894,0,'INF','\'zmc -m 1\' started at 17/11/17 07:52:23','zmdc.pl',NULL),(1510897943.497690,'zmdc',NULL,1473,0,'INF','\'zmfilter.pl\' starting at 17/11/17 07:52:23, pid = 1907','zmdc.pl',NULL),(1510897943.498300,'zmdc',NULL,1907,0,'INF','\'zmfilter.pl\' started at 17/11/17 07:52:23','zmdc.pl',NULL),(1510897943.601960,'zmdc',NULL,1473,0,'INF','\'zmaudit.pl -c\' starting at 17/11/17 07:52:23, pid = 1927','zmdc.pl',NULL),(1510897943.601960,'zmdc',NULL,1927,0,'INF','\'zmaudit.pl -c\' started at 17/11/17 07:52:23','zmdc.pl',NULL),(1510897943.625320,'zmc_m1',0,1894,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510897943.709510,'zmfilter',NULL,1907,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510897943.721230,'zmdc',NULL,2028,0,'INF','\'zmwatch.pl\' started at 17/11/17 07:52:23','zmdc.pl',NULL),(1510897943.721210,'zmdc',NULL,1473,0,'INF','\'zmwatch.pl\' starting at 17/11/17 07:52:23, pid = 2028','zmdc.pl',NULL),(1510897943.807930,'zmwatch',NULL,2028,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510897943.811410,'zmdc',NULL,2134,0,'INF','\'zmtelemetry.pl\' started at 17/11/17 07:52:23','zmdc.pl',NULL),(1510897943.811410,'zmdc',NULL,1473,0,'INF','\'zmtelemetry.pl\' starting at 17/11/17 07:52:23, pid = 2134','zmdc.pl',NULL),(1510897943.814040,'zmwatch',NULL,2028,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510898044.936074,'zmc_m1',0,1894,0,'INF','Monitor-1: 1000 - Capturing at 9.90 fps','zm_monitor.cpp',3125),(1510898144.934117,'zmc_m1',0,1894,0,'INF','Monitor-1: 2000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510898244.933324,'zmc_m1',0,1894,0,'INF','Monitor-1: 3000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510898344.910927,'zmc_m1',0,1894,0,'INF','Monitor-1: 4000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510898444.945999,'zmc_m1',0,1894,0,'INF','Monitor-1: 5000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510898544.930595,'zmc_m1',0,1894,0,'INF','Monitor-1: 6000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510898644.929436,'zmc_m1',0,1894,0,'INF','Monitor-1: 7000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510898744.904701,'zmc_m1',0,1894,0,'INF','Monitor-1: 8000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510898844.907628,'zmc_m1',0,1894,0,'INF','Monitor-1: 9000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510898944.928878,'zmc_m1',0,1894,0,'INF','Monitor-1: 10000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510899044.924452,'zmc_m1',0,1894,0,'INF','Monitor-1: 11000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510899144.898932,'zmc_m1',0,1894,0,'INF','Monitor-1: 12000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510899244.924046,'zmc_m1',0,1894,0,'INF','Monitor-1: 13000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510899344.920778,'zmc_m1',0,1894,0,'INF','Monitor-1: 14000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510899444.936784,'zmc_m1',0,1894,0,'INF','Monitor-1: 15000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510899544.923627,'zmc_m1',0,1894,0,'INF','Monitor-1: 16000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510899644.920831,'zmc_m1',0,1894,0,'INF','Monitor-1: 17000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510899744.933182,'zmc_m1',0,1894,0,'INF','Monitor-1: 18000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510899844.934508,'zmc_m1',0,1894,0,'INF','Monitor-1: 19000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510899944.932372,'zmc_m1',0,1894,0,'INF','Monitor-1: 20000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510900044.932262,'zmc_m1',0,1894,0,'INF','Monitor-1: 21000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510900144.925851,'zmc_m1',0,1894,0,'INF','Monitor-1: 22000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510900244.915312,'zmc_m1',0,1894,0,'INF','Monitor-1: 23000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510900344.924295,'zmc_m1',0,1894,0,'INF','Monitor-1: 24000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510900444.921520,'zmc_m1',0,1894,0,'INF','Monitor-1: 25000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510900541.370849,'zms',0,5449,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900541.375713,'zms',0,5449,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900544.890325,'zmc_m1',0,1894,0,'INF','Monitor-1: 26000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510900549.351290,'zms',0,5449,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510900551.478044,'web_php',NULL,4388,-2,'ERR','Socket /var/run/zm/zms-020773s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900602.566803,'zms',0,5472,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900602.571572,'zms',0,5472,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900607.449669,'zms',0,5474,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900607.455368,'zms',0,5474,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900609.386298,'zms',0,5474,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510900644.920348,'zmc_m1',0,1894,0,'INF','Monitor-1: 27000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510900710.685319,'zms',0,5559,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900710.687958,'zms',0,5559,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900715.614326,'zms',0,5561,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900715.619918,'zms',0,5561,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900744.909788,'zmc_m1',0,1894,0,'INF','Monitor-1: 28000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510900820.080585,'zms',0,5561,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510900826.177701,'zmc_m1',0,2522,-2,'ERR','RTP timed out','zm_rtp_data.cpp',93),(1510900833.317415,'zms',0,5559,-2,'ERR','Terminating, last frame sent time 10.029358 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900834.121140,'zmwatch',NULL,2028,0,'INF','Restarting capture daemon for Monitor-1, time since last capture 11 seconds (1510900834-1510900823)','zmwatch.pl',NULL),(1510900834.207140,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' sending stop to pid 1894 at 17/11/17 08:40:34','zmdc.pl',NULL),(1510900834.212880,'zmc_m1',0,1894,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510900840.213930,'zmdc',NULL,1473,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/17 08:40:40. Sending KILL to pid 1894','zmdc.pl',NULL),(1510900840.227880,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510900840.331100,'zmdc',NULL,1473,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510900840.339280,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 08:40:40, pid = 5648','zmdc.pl',NULL),(1510900840.339320,'zmdc',NULL,5648,0,'INF','\'zmc -m 1\' started at 17/11/17 08:40:40','zmdc.pl',NULL),(1510900840.472617,'zmc_m1',0,5648,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510900850.490566,'zmc_m1',0,5648,-3,'FAT','No RTSP sources','zm_remote_camera_rtsp.cpp',162),(1510900850.512530,'zmdc',NULL,1473,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510900855.039540,'zmdc',NULL,1473,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510900855.044770,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 08:40:55, pid = 5661','zmdc.pl',NULL),(1510900855.044810,'zmdc',NULL,5661,0,'INF','\'zmc -m 1\' started at 17/11/17 08:40:55','zmdc.pl',NULL),(1510900855.189027,'zmc_m1',0,5661,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510900855.287260,'zmc_m1',0,5662,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510900855.293017,'zmc_m1',0,5662,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510900855.314540,'zmdc',NULL,1473,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510900865.050550,'zmdc',NULL,1473,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510900865.054820,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 08:41:05, pid = 5686','zmdc.pl',NULL),(1510900865.054830,'zmdc',NULL,5686,0,'INF','\'zmc -m 1\' started at 17/11/17 08:41:05','zmdc.pl',NULL),(1510900865.182759,'zmc_m1',0,5686,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510900868.151323,'zmc_m1',0,5687,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510900868.154660,'zmc_m1',0,5687,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510900868.177290,'zmdc',NULL,1473,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510900869.499472,'zms',0,5700,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900869.504378,'zms',0,5700,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900870.009390,'zms',0,5700,-2,'ERR','Terminating, last frame sent time 1510900869.509239 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900872.333525,'web_php',NULL,5453,-2,'ERR','Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900872.368679,'web_js',NULL,5453,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900872.406790,'zms',0,5701,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900872.409608,'zms',0,5701,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900872.912324,'zms',0,5701,-2,'ERR','Terminating, last frame sent time 1510900872.412192 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900875.370222,'web_php',NULL,5453,-2,'ERR','Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900875.395939,'web_js',NULL,5453,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900875.435948,'zms',0,5702,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900875.440878,'zms',0,5702,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900875.946266,'zms',0,5702,-2,'ERR','Terminating, last frame sent time 1510900875.446156 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900877.544340,'web_php',NULL,5451,-2,'ERR','socket_bind( /var/run/zm/zms-591891w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900877.558870,'web_js',NULL,5451,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-591891w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510900877.598529,'zms',0,5703,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900877.601053,'zms',0,5703,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900878.103705,'zms',0,5703,-2,'ERR','Terminating, last frame sent time 1510900877.603537 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900880.571906,'web_php',NULL,5451,-2,'ERR','Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900880.604613,'web_js',NULL,5451,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900880.658822,'zms',0,5704,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900880.662202,'zms',0,5704,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900880.799346,'web_php',NULL,5453,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-591891s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900881.163496,'zms',0,5704,-2,'ERR','Terminating, last frame sent time 1510900880.663335 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900883.559830,'web_php',NULL,5476,-2,'ERR','socket_bind( /var/run/zm/zms-591891w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900883.600296,'web_php',NULL,5451,-2,'ERR','Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900883.609728,'web_js',NULL,5476,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-591891w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510900883.659600,'zms',0,5705,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900883.664493,'zms',0,5705,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900884.169468,'zms',0,5705,-2,'ERR','Terminating, last frame sent time 1510900883.669337 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900886.587806,'web_php',NULL,5476,-2,'ERR','Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900886.609585,'web_js',NULL,5476,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900886.649102,'zms',0,5706,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900886.653937,'zms',0,5706,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900887.159317,'zms',0,5706,-2,'ERR','Terminating, last frame sent time 1510900886.659197 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900888.021160,'zmdc',NULL,1473,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510900888.030340,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 08:41:28, pid = 5707','zmdc.pl',NULL),(1510900888.030410,'zmdc',NULL,5707,0,'INF','\'zmc -m 1\' started at 17/11/17 08:41:28','zmdc.pl',NULL),(1510900888.100248,'zmc_m1',0,5708,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510900888.103163,'zmc_m1',0,5708,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510900888.107560,'zmdc',NULL,1473,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510900889.563296,'web_php',NULL,5573,-2,'ERR','socket_bind( /var/run/zm/zms-591891w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900889.590651,'web_js',NULL,5573,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-591891w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510900889.620765,'web_php',NULL,5476,-2,'ERR','Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900889.649812,'zms',0,5710,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900889.652583,'zms',0,5710,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900890.239630,'zmwatch',NULL,2028,0,'INF','Restarting capture daemon for Monitor-1, shared data not valid','zmwatch.pl',NULL),(1510900890.326410,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 08:41:30, pid = 5713','zmdc.pl',NULL),(1510900890.326500,'zmdc',NULL,5713,0,'INF','\'zmc -m 1\' started at 17/11/17 08:41:30','zmdc.pl',NULL),(1510900890.452757,'zmc_m1',0,5713,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510900892.593604,'web_php',NULL,5573,-2,'ERR','Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900892.621862,'web_js',NULL,5573,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-591891s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900892.680908,'zms',0,5715,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900892.683961,'zms',0,5715,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900893.186665,'zms',0,5715,-2,'ERR','Terminating, last frame sent time 1510900892.686535 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900893.400141,'zmc_m1',0,5714,-2,'ERR','connect(), Could not connect','zm_comms.cpp',580),(1510900893.405868,'zmc_m1',0,5714,-3,'FAT','Unable to connect RTSP socket','zm_rtsp.cpp',238),(1510900893.429460,'zmdc',NULL,1473,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510900895.555755,'web_php',NULL,5676,-2,'ERR','socket_bind( /var/run/zm/zms-591891w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900895.578360,'web_js',NULL,5676,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-591891w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510900895.618002,'zms',0,5716,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900895.622860,'zms',0,5716,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900895.627560,'zms',0,5716,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510900896.132770,'zms',0,5716,-2,'ERR','Terminating, last frame sent time 1510900895.627539 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900898.197065,'zms',0,5719,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900898.202328,'zms',0,5719,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900898.623749,'web_php',NULL,5573,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-591891s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900898.707202,'zms',0,5719,-2,'ERR','Terminating, last frame sent time 1510900898.207074 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900900.932097,'web_php',NULL,5453,-2,'ERR','Socket /var/run/zm/zms-517793s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900900.948290,'web_js',NULL,5453,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-517793s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900900.987646,'zms',0,5721,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900900.992812,'zms',0,5721,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900901.498284,'zms',0,5721,-2,'ERR','Terminating, last frame sent time 1510900900.998128 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900903.953557,'web_php',NULL,5453,-2,'ERR','Socket /var/run/zm/zms-517793s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900903.977385,'web_js',NULL,5453,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-517793s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900904.016916,'zms',0,5722,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900904.021696,'zms',0,5722,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900904.527180,'zms',0,5722,-2,'ERR','Terminating, last frame sent time 1510900904.027032 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900906.246521,'web_php',NULL,4390,-2,'ERR','socket_bind( /var/run/zm/zms-517793w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900906.272400,'web_js',NULL,4390,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-517793w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510900906.312802,'zms',0,5723,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900906.315620,'zms',0,5723,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900906.818470,'zms',0,5723,-2,'ERR','Terminating, last frame sent time 1510900906.318370 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900909.282620,'web_php',NULL,4390,-2,'ERR','Socket /var/run/zm/zms-517793s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900909.385837,'web_php',NULL,5453,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-517793s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900913.853792,'zms',0,5726,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900913.856781,'zms',0,5726,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900914.359697,'zms',0,5726,-2,'ERR','Terminating, last frame sent time 1510900913.859482 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900917.057774,'web_php',NULL,4386,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-516638s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900917.083660,'web_js',NULL,5675,-2,'ERR','getStreamCmdResponse stream error: Timed out waiting for msg /var/run/zm/zms-516638s.sock - checkStreamForErrors()','?view=watch',NULL),(1510900917.123186,'zms',0,5727,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900917.125888,'zms',0,5727,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900917.627015,'zms',0,5727,-2,'ERR','Terminating, last frame sent time 1510900917.126892 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900919.904721,'web_php',NULL,5573,-2,'ERR','socket_bind( /var/run/zm/zms-516638w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900919.932304,'web_js',NULL,5573,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-516638w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510900919.982025,'zms',0,5757,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900919.984582,'zms',0,5757,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900920.487850,'zms',0,5757,-2,'ERR','Terminating, last frame sent time 1510900919.987700 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900922.938104,'web_php',NULL,5573,-2,'ERR','Socket /var/run/zm/zms-516638s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900922.972657,'web_js',NULL,5573,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-516638s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900923.031913,'zms',0,5758,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900923.035168,'zms',0,5758,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900923.097282,'web_php',NULL,5675,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-516638s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900923.538085,'zms',0,5758,-2,'ERR','Terminating, last frame sent time 1510900923.037927 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900925.903657,'web_php',NULL,5451,-2,'ERR','socket_bind( /var/run/zm/zms-516638w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900925.931212,'web_js',NULL,5451,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-516638w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510900925.970575,'web_php',NULL,5573,-2,'ERR','Socket /var/run/zm/zms-516638s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900925.988520,'zms',0,5759,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900925.991245,'zms',0,5759,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900926.493916,'zms',0,5759,-2,'ERR','Terminating, last frame sent time 1510900925.993766 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900928.934287,'web_php',NULL,5451,-2,'ERR','Socket /var/run/zm/zms-516638s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900928.965462,'web_js',NULL,4390,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-516638s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900929.019680,'zms',0,5770,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900929.024868,'zms',0,5770,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900929.529991,'zms',0,5770,-2,'ERR','Terminating, last frame sent time 1510900929.029843 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900931.904699,'web_php',NULL,5453,-2,'ERR','socket_bind( /var/run/zm/zms-516638w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900931.932450,'web_js',NULL,5453,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-516638w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510900931.964635,'web_php',NULL,4390,-2,'ERR','Socket /var/run/zm/zms-516638s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900931.992156,'zms',0,5771,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900931.994627,'zms',0,5771,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900932.496171,'zms',0,5771,-2,'ERR','Terminating, last frame sent time 1510900931.996014 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900934.932741,'web_php',NULL,5453,-2,'ERR','Socket /var/run/zm/zms-516638s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900934.962785,'web_js',NULL,5453,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-516638s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900935.010548,'zms',0,5772,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900935.015617,'zms',0,5772,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900935.518972,'zms',0,5772,-2,'ERR','Terminating, last frame sent time 1510900935.018850 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900937.906178,'web_php',NULL,5676,-2,'ERR','socket_bind( /var/run/zm/zms-516638w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900937.923455,'web_js',NULL,5676,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-516638w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510900937.962092,'web_php',NULL,5453,-2,'ERR','Socket /var/run/zm/zms-516638s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900937.964148,'zms',0,5773,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900937.967548,'zms',0,5773,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900938.470920,'zms',0,5773,-2,'ERR','Terminating, last frame sent time 1510900937.970763 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900940.376146,'zms',0,5780,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900940.381746,'zms',0,5780,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900940.887492,'zms',0,5780,-2,'ERR','Terminating, last frame sent time 1510900940.387388 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900943.158122,'web_php',NULL,4389,-2,'ERR','Socket /var/run/zm/zms-256810s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900943.180029,'web_js',NULL,4389,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-256810s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900943.236115,'zms',0,5781,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900943.238595,'zms',0,5781,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900943.739899,'zms',0,5781,-2,'ERR','Terminating, last frame sent time 1510900943.239742 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900946.187632,'web_php',NULL,4389,-2,'ERR','Socket /var/run/zm/zms-256810s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900946.218965,'web_js',NULL,4389,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-256810s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510900946.276146,'zms',0,5782,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900946.281133,'zms',0,5782,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900946.786764,'zms',0,5782,-2,'ERR','Terminating, last frame sent time 1510900946.286533 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900948.426985,'web_php',NULL,5451,-2,'ERR','socket_bind( /var/run/zm/zms-256810w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900948.446921,'web_js',NULL,5451,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-256810w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510900948.490971,'zms',0,5783,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900948.496318,'zms',0,5783,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900949.001223,'zms',0,5783,-2,'ERR','Terminating, last frame sent time 1510900948.501092 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510900951.466774,'web_php',NULL,5451,-2,'ERR','Socket /var/run/zm/zms-256810s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900951.608478,'web_php',NULL,4389,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-256810s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510900973.008580,'zmdc',NULL,1473,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510900973.018320,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 08:42:53, pid = 5823','zmdc.pl',NULL),(1510900973.018400,'zmdc',NULL,5823,0,'INF','\'zmc -m 1\' started at 17/11/17 08:42:53','zmdc.pl',NULL),(1510900973.182822,'zmc_m1',0,5823,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510900975.747534,'zms',0,5839,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510900975.750350,'zms',0,5839,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510900979.693625,'zms',0,5839,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510900979.698879,'zms',0,5839,-2,'ERR','Unable to send stream frame: Connection timed out','zm_monitor.cpp',3936),(1510901054.658022,'zms',0,5859,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510901054.663284,'zms',0,5859,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510901062.830956,'zms',0,5861,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510901062.835996,'zms',0,5861,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510901074.483374,'zmc_m1',0,5823,0,'INF','Monitor-1: 1000 - Capturing at 9.90 fps','zm_monitor.cpp',3125),(1510901122.119395,'zms',0,5859,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510901122.205091,'zms',0,5861,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510901122.210795,'zms',0,5861,-2,'ERR','Unable to send stream frame: Broken pipe','zm_monitor.cpp',3936),(1510901122.248435,'zms',0,5877,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510901122.253798,'zms',0,5877,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510901174.466321,'zmc_m1',0,5823,0,'INF','Monitor-1: 2000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510901274.480873,'zmc_m1',0,5823,0,'INF','Monitor-1: 3000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510901374.465235,'zmc_m1',0,5823,0,'INF','Monitor-1: 4000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510901474.465222,'zmc_m1',0,5823,0,'INF','Monitor-1: 5000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510901574.468811,'zmc_m1',0,5823,0,'INF','Monitor-1: 6000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510901674.503474,'zmc_m1',0,5823,0,'INF','Monitor-1: 7000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510901774.460793,'zmc_m1',0,5823,0,'INF','Monitor-1: 8000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510901874.487613,'zmc_m1',0,5823,0,'INF','Monitor-1: 9000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510901952.300374,'zms',0,6086,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510901952.305395,'zms',0,6086,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510901974.469354,'zmc_m1',0,5823,0,'INF','Monitor-1: 10000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510902041.101187,'zms',0,6086,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510902041.106358,'zms',0,6086,-2,'ERR','Unable to send stream frame: Broken pipe','zm_monitor.cpp',3936),(1510902041.213930,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510902041.301600,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510902041.481543,'zms',0,5877,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510902041.603305,'zms',0,6111,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510902041.608747,'zms',0,6111,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510902043.322946,'zms',0,6111,0,'INF','User initiated exit - CMD_QUIT','zm_monitor.cpp',3736),(1510902043.568787,'zms',0,6116,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510902043.575038,'zms',0,6116,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510902046.716052,'zms',0,6117,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510902046.718869,'zms',0,6117,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510902052.296474,'zms',0,6119,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510902052.301597,'zms',0,6119,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510902074.474782,'zmc_m1',0,5823,0,'INF','Monitor-1: 11000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510902074.936283,'zms',0,6117,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510902074.950136,'zms',0,6119,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510902074.952930,'zms',0,6119,-2,'ERR','Unable to send stream frame: Broken pipe','zm_monitor.cpp',3936),(1510902075.052046,'zms',0,6132,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510902075.057174,'zms',0,6132,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510902091.217825,'zms',0,6132,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510902091.227974,'zms',0,6132,-2,'ERR','Unable to send stream frame: Broken pipe','zm_monitor.cpp',3936),(1510902091.368700,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510902091.455210,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510902091.569213,'zms',0,6143,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510902091.572025,'zms',0,6143,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510902093.709495,'zms',0,6143,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510902174.495964,'zmc_m1',0,5823,0,'INF','Monitor-1: 12000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510902274.479275,'zmc_m1',0,5823,0,'INF','Monitor-1: 13000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510902374.487859,'zmc_m1',0,5823,0,'INF','Monitor-1: 14000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510902474.482379,'zmc_m1',0,5823,0,'INF','Monitor-1: 15000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510902574.480937,'zmc_m1',0,5823,0,'INF','Monitor-1: 16000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510902674.479929,'zmc_m1',0,5823,0,'INF','Monitor-1: 17000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510902774.475348,'zmc_m1',0,5823,0,'INF','Monitor-1: 18000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510902874.466719,'zmc_m1',0,5823,0,'INF','Monitor-1: 19000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510902974.472641,'zmc_m1',0,5823,0,'INF','Monitor-1: 20000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510903074.467358,'zmc_m1',0,5823,0,'INF','Monitor-1: 21000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510903174.466383,'zmc_m1',0,5823,0,'INF','Monitor-1: 22000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510903274.465189,'zmc_m1',0,5823,0,'INF','Monitor-1: 23000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510903374.471633,'zmc_m1',0,5823,0,'INF','Monitor-1: 24000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510903474.462751,'zmc_m1',0,5823,0,'INF','Monitor-1: 25000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510903574.461862,'zmc_m1',0,5823,0,'INF','Monitor-1: 26000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510903674.459332,'zmc_m1',0,5823,0,'INF','Monitor-1: 27000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510903774.451654,'zmc_m1',0,5823,0,'INF','Monitor-1: 28000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510903874.449366,'zmc_m1',0,5823,0,'INF','Monitor-1: 29000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510903974.457121,'zmc_m1',0,5823,0,'INF','Monitor-1: 30000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510904074.443999,'zmc_m1',0,5823,0,'INF','Monitor-1: 31000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510904174.431635,'zmc_m1',0,5823,0,'INF','Monitor-1: 32000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510904274.447425,'zmc_m1',0,5823,0,'INF','Monitor-1: 33000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510904374.442840,'zmc_m1',0,5823,0,'INF','Monitor-1: 34000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510904474.445377,'zmc_m1',0,5823,0,'INF','Monitor-1: 35000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510904574.438377,'zmc_m1',0,5823,0,'INF','Monitor-1: 36000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510904674.371468,'zmc_m1',0,5823,0,'INF','Monitor-1: 37000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510904774.371592,'zmc_m1',0,5823,0,'INF','Monitor-1: 38000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510904789.931824,'zms',0,7425,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510904789.934823,'zms',0,7425,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510904800.254720,'zmcontrol',NULL,7428,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510904800.277630,'zmcontrol',NULL,7431,0,'INF','Control server 1/Floureon starting at 17/11/17 09:46:40','zmcontrol.pl',NULL),(1510904803.346530,'zms',0,7425,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510904803.350581,'zms',0,7426,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510904803.353213,'zms',0,7426,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510904803.367693,'zms',0,7426,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510904803.424090,'zms',0,7426,-2,'ERR','Terminating, last frame sent time 1510904803.355708 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510904843.166490,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510904843.247480,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510904843.328880,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' sending stop to pid 5823 at 17/11/17 09:47:23','zmdc.pl',NULL),(1510904843.331906,'zmc_m1',0,5823,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510904849.332730,'zmdc',NULL,1473,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/17 09:47:29. Sending KILL to pid 5823','zmdc.pl',NULL),(1510904849.357150,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510904849.464550,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 09:47:29, pid = 7467','zmdc.pl',NULL),(1510904849.464640,'zmdc',NULL,7467,0,'INF','\'zmc -m 1\' started at 17/11/17 09:47:29','zmdc.pl',NULL),(1510904849.552070,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510904849.596594,'zmc_m1',0,7467,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510904849.634330,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510904851.316626,'zms',0,7490,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510904851.319533,'zms',0,7490,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510904855.105050,'zmcontrol',NULL,7493,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510904855.130080,'zmcontrol',NULL,7495,0,'INF','Control server 1/Floureon starting at 17/11/17 09:47:35','zmcontrol.pl',NULL),(1510904950.589277,'zmc_m1',0,7467,0,'INF','Monitor-1: 1000 - Capturing at 9.90 fps','zm_monitor.cpp',3125),(1510905050.571211,'zmc_m1',0,7467,0,'INF','Monitor-1: 2000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510905058.620344,'zms',0,7490,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510905150.579973,'zmc_m1',0,7467,0,'INF','Monitor-1: 3000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510905250.587032,'zmc_m1',0,7467,0,'INF','Monitor-1: 4000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510905350.581372,'zmc_m1',0,7467,0,'INF','Monitor-1: 5000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510905359.203514,'zms',0,7639,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510905359.207783,'zms',0,7639,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510905450.562012,'zmc_m1',0,7467,0,'INF','Monitor-1: 6000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510905550.569691,'zmc_m1',0,7467,0,'INF','Monitor-1: 7000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510905650.547602,'zmc_m1',0,7467,0,'INF','Monitor-1: 8000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510905750.584527,'zmc_m1',0,7467,0,'INF','Monitor-1: 9000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510905850.515287,'zmc_m1',0,7467,0,'INF','Monitor-1: 10000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510905950.512267,'zmc_m1',0,7467,0,'INF','Monitor-1: 11000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510906050.512620,'zmc_m1',0,7467,0,'INF','Monitor-1: 12000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510906150.511775,'zmc_m1',0,7467,0,'INF','Monitor-1: 13000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510906250.504983,'zmc_m1',0,7467,0,'INF','Monitor-1: 14000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510906350.496019,'zmc_m1',0,7467,0,'INF','Monitor-1: 15000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510906450.501538,'zmc_m1',0,7467,0,'INF','Monitor-1: 16000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510906550.501058,'zmc_m1',0,7467,0,'INF','Monitor-1: 17000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510906650.509017,'zmc_m1',0,7467,0,'INF','Monitor-1: 18000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510906677.649290,'zmcontrol',NULL,7495,0,'INF','Control server 1/Floureon exiting at 17/11/17 10:17:57','zmcontrol.pl',NULL),(1510906750.501387,'zmc_m1',0,7467,0,'INF','Monitor-1: 19000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510906787.227912,'zms',0,7639,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510906850.497479,'zmc_m1',0,7467,0,'INF','Monitor-1: 20000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510906950.512148,'zmc_m1',0,7467,0,'INF','Monitor-1: 21000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510907050.510330,'zmc_m1',0,7467,0,'INF','Monitor-1: 22000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510907150.508105,'zmc_m1',0,7467,0,'INF','Monitor-1: 23000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510907250.504105,'zmc_m1',0,7467,0,'INF','Monitor-1: 24000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510907350.489948,'zmc_m1',0,7467,0,'INF','Monitor-1: 25000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510907450.500530,'zmc_m1',0,7467,0,'INF','Monitor-1: 26000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510907550.500520,'zmc_m1',0,7467,0,'INF','Monitor-1: 27000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510907650.487503,'zmc_m1',0,7467,0,'INF','Monitor-1: 28000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510907750.495788,'zmc_m1',0,7467,0,'INF','Monitor-1: 29000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510907850.495794,'zmc_m1',0,7467,0,'INF','Monitor-1: 30000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510907950.467929,'zmc_m1',0,7467,0,'INF','Monitor-1: 31000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510908050.478368,'zmc_m1',0,7467,0,'INF','Monitor-1: 32000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510908150.485193,'zmc_m1',0,7467,0,'INF','Monitor-1: 33000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510908250.479735,'zmc_m1',0,7467,0,'INF','Monitor-1: 34000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510908316.690277,'zms',0,9610,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510908316.692758,'zms',0,9610,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510908324.845490,'zmcontrol',NULL,9615,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908324.864490,'zmcontrol',NULL,9615,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908324.874630,'web_php',NULL,9600,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=6 --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908335.748230,'zmcontrol',NULL,9619,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908335.769850,'zmcontrol',NULL,9619,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908335.775017,'web_php',NULL,9602,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=3 --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908345.661620,'zmcontrol',NULL,9623,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908345.681500,'zmcontrol',NULL,9623,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908345.689497,'web_php',NULL,9611,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=5 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908350.477826,'zmc_m1',0,7467,0,'INF','Monitor-1: 35000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510908360.705070,'zmcontrol',NULL,9635,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908360.727890,'zmcontrol',NULL,9635,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908360.734112,'web_php',NULL,9600,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=5 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908362.765230,'zmcontrol',NULL,9638,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908362.785660,'zmcontrol',NULL,9638,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908362.791123,'web_php',NULL,9600,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=2 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908367.982370,'zmcontrol',NULL,9643,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908368.005200,'zmcontrol',NULL,9643,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908368.012455,'web_php',NULL,9600,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=4 --autostop --command=moveConRight --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908393.493438,'zms',0,9610,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908393.498759,'zms',0,9610,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908395.974310,'zmcontrol',NULL,9672,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908395.993090,'zmcontrol',NULL,9672,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908395.998136,'web_php',NULL,9666,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=6 --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908396.307875,'web_php',NULL,9665,-2,'ERR','Socket /var/run/zm/zms-301136s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908396.326902,'web_js',NULL,9665,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-301136s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510908396.363508,'zms',0,9676,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510908396.368637,'zms',0,9676,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510908399.015930,'zmcontrol',NULL,9678,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908399.057860,'zmcontrol',NULL,9678,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908399.065852,'web_php',NULL,9665,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=5 --autostop --command=moveConRight --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908430.909189,'zms',0,9676,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908430.915368,'zms',0,9676,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908433.671108,'web_php',NULL,9710,-2,'ERR','Socket /var/run/zm/zms-301136s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908433.685674,'web_js',NULL,9710,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-301136s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510908433.721431,'zms',0,9718,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510908433.726398,'zms',0,9718,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510908433.837480,'zmcontrol',NULL,9720,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908433.860730,'zmcontrol',NULL,9720,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908433.868986,'web_php',NULL,9710,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=5 --autostop --command=moveConRight --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908450.469966,'zmc_m1',0,7467,0,'INF','Monitor-1: 36000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510908452.757920,'zmcontrol',NULL,9728,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908452.780030,'zmcontrol',NULL,9728,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908452.787795,'web_php',NULL,9710,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=5 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908519.341371,'zms',0,9718,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908519.348750,'zms',0,9718,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908522.281862,'web_php',NULL,9773,-2,'ERR','Socket /var/run/zm/zms-301136s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908522.298304,'web_js',NULL,9773,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-301136s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510908522.339663,'zms',0,9779,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510908522.344463,'zms',0,9779,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510908522.870010,'zmcontrol',NULL,9782,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908522.889040,'zmcontrol',NULL,9782,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908522.894235,'web_php',NULL,9773,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=5 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908550.479493,'zmc_m1',0,7467,0,'INF','Monitor-1: 37000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510908562.698156,'zms',0,9779,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908562.703976,'zms',0,9779,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908565.963630,'zmcontrol',NULL,9823,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908565.985750,'zmcontrol',NULL,9823,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908565.993820,'web_php',NULL,9817,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=6 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908567.081894,'web_php',NULL,9816,-2,'ERR','Socket /var/run/zm/zms-301136s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908567.099274,'web_js',NULL,9816,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-301136s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510908567.138551,'zms',0,9827,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510908567.141488,'zms',0,9827,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510908568.772490,'zmcontrol',NULL,9829,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908568.800880,'zmcontrol',NULL,9829,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908568.809117,'web_php',NULL,9816,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=5 --autostop --command=moveConDown --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908644.293587,'zms',0,9827,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908644.296884,'zms',0,9827,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908646.812340,'zmcontrol',NULL,9904,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908646.834740,'zmcontrol',NULL,9904,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908646.841949,'web_php',NULL,9896,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=5 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908647.832731,'web_php',NULL,9895,-2,'ERR','Socket /var/run/zm/zms-301136s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908647.865421,'web_js',NULL,9895,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-301136s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510908647.912110,'zms',0,9906,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510908647.914600,'zms',0,9906,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510908650.480660,'zmc_m1',0,7467,0,'INF','Monitor-1: 38000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510908704.118666,'zms',0,9906,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908716.606290,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510908716.692080,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510908716.775740,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' sending stop to pid 7467 at 17/11/17 10:51:56','zmdc.pl',NULL),(1510908716.781490,'zmc_m1',0,7467,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908722.782470,'zmdc',NULL,1473,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/17 10:52:02. Sending KILL to pid 7467','zmdc.pl',NULL),(1510908722.803690,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510908722.914830,'zmdc',NULL,9964,0,'INF','\'zmc -m 1\' started at 17/11/17 10:52:02','zmdc.pl',NULL),(1510908722.914830,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 10:52:02, pid = 9964','zmdc.pl',NULL),(1510908723.004540,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510908723.050909,'zmc_m1',0,9964,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510908723.085040,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510908727.175883,'zms',0,9990,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510908727.178545,'zms',0,9990,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510908730.182940,'zmcontrol',NULL,9992,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908730.205060,'zmcontrol',NULL,9992,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908730.212514,'web_php',NULL,9901,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=6 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908752.232361,'zms',0,9990,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908762.958500,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510908763.050770,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510908763.134740,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' sending stop to pid 9964 at 17/11/17 10:52:43','zmdc.pl',NULL),(1510908763.140187,'zmc_m1',0,9964,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908769.141100,'zmdc',NULL,1473,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/17 10:52:49. Sending KILL to pid 9964','zmdc.pl',NULL),(1510908769.162660,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510908769.273750,'zmdc',NULL,10016,0,'INF','\'zmc -m 1\' started at 17/11/17 10:52:49','zmdc.pl',NULL),(1510908769.273720,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' starting at 17/11/17 10:52:49, pid = 10016','zmdc.pl',NULL),(1510908769.360370,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zmtrack.pl -m 1\'','zmdc.pl',NULL),(1510908769.406287,'zmc_m1',0,10016,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510908769.441770,'zmdc',NULL,1473,-1,'WAR','Can\'t find process with command of \'zma -m 1\'','zmdc.pl',NULL),(1510908777.861957,'zms',0,10061,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510908777.867043,'zms',0,10061,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510908780.639020,'zmcontrol',NULL,10066,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908780.659510,'zmcontrol',NULL,10066,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908780.666505,'web_php',NULL,10055,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=6 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908808.017964,'zms',0,10061,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908808.023812,'zms',0,10061,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510908809.572740,'web_php',NULL,10090,-2,'ERR','socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908809.587350,'web_js',NULL,10090,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510908809.623686,'zms',0,10096,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510908809.626329,'zms',0,10096,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510908809.785313,'zms',0,10096,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510908812.772315,'web_php',NULL,10089,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-771757s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908813.453140,'zmcontrol',NULL,10104,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908813.491030,'zmcontrol',NULL,10104,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908813.498756,'web_php',NULL,10092,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=5 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510908870.336460,'zmc_m1',0,10016,0,'INF','Monitor-1: 1000 - Capturing at 9.90 fps','zm_monitor.cpp',3125),(1510908895.000430,'zmcontrol',NULL,10140,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908895.020510,'zmcontrol',NULL,10140,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908920.899430,'zmcontrol',NULL,10146,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908920.921780,'zmcontrol',NULL,10146,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908970.060260,'zmcontrol',NULL,10163,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908970.079960,'zmcontrol',NULL,10163,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908970.342245,'zmc_m1',0,10016,0,'INF','Monitor-1: 2000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510908979.693340,'zmcontrol',NULL,10165,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908979.714960,'zmcontrol',NULL,10165,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510908987.963730,'zmcontrol',NULL,10167,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510908987.986060,'zmcontrol',NULL,10167,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510909050.862970,'zmcontrol',NULL,10227,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510909050.886060,'zmcontrol',NULL,10227,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510909050.891284,'web_php',NULL,10099,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=6 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909070.349108,'zmc_m1',0,10016,0,'INF','Monitor-1: 3000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510909105.477818,'zms',0,10096,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510909105.483450,'zms',0,10096,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510909110.635250,'web_php',NULL,10260,-2,'ERR','Socket /var/run/zm/zms-771757s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909110.652886,'web_js',NULL,10260,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-771757s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510909110.690679,'zms',0,10269,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510909110.693402,'zms',0,10269,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510909113.234530,'zmcontrol',NULL,10271,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510909113.256900,'zmcontrol',NULL,10271,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510909113.267825,'web_php',NULL,10260,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=6 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909170.334444,'zmc_m1',0,10016,0,'INF','Monitor-1: 4000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510909209.256390,'zmcontrol',NULL,10301,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510909209.279330,'zmcontrol',NULL,10301,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510909209.287121,'web_php',NULL,10264,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=4 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909270.348633,'zmc_m1',0,10016,0,'INF','Monitor-1: 5000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510909303.659897,'zms',0,10269,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510909303.663117,'zms',0,10269,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510909307.438090,'zmcontrol',NULL,10356,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510909307.461150,'zmcontrol',NULL,10356,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510909307.467944,'web_php',NULL,10350,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=5 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909308.541897,'web_php',NULL,10350,-2,'ERR','socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909308.559642,'web_js',NULL,10350,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510909308.570144,'web_php',NULL,10349,-2,'ERR','Socket /var/run/zm/zms-771757s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909308.598668,'zms',0,10360,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510909308.603766,'zms',0,10360,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510909370.348766,'zmc_m1',0,10016,0,'INF','Monitor-1: 6000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510909470.345026,'zmc_m1',0,10016,0,'INF','Monitor-1: 7000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510909570.329521,'zmc_m1',0,10016,0,'INF','Monitor-1: 8000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510909634.944071,'zms',0,10360,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510909638.721933,'web_php',NULL,10490,-2,'ERR','Socket /var/run/zm/zms-771757s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909638.757134,'web_js',NULL,10490,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-771757s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510909638.803883,'zms',0,10498,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510909638.808912,'zms',0,10498,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510909639.718200,'zmcontrol',NULL,10502,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510909639.740640,'zmcontrol',NULL,10502,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510909639.745936,'web_php',NULL,10490,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=6 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909670.341045,'zmc_m1',0,10016,0,'INF','Monitor-1: 9000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510909770.337627,'zmc_m1',0,10016,0,'INF','Monitor-1: 10000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510909846.306480,'zmpkg',NULL,10634,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510909846.317790,'zmpkg',NULL,10634,0,'INF','Command: restart','zmpkg.pl',NULL),(1510909846.413620,'zmsystemctl',NULL,10640,0,'INF','Redirecting command through systemctl','zmsystemctl.pl',NULL),(1510909846.495760,'zmpkg',NULL,10645,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510909846.499240,'zmpkg',NULL,10645,0,'INF','Command: stop','zmpkg.pl',NULL),(1510909846.693420,'zmdc',NULL,1473,0,'INF','\'zmwatch.pl\' sending stop to pid 2028 at 17/11/17 11:10:46','zmdc.pl',NULL),(1510909846.696510,'zmdc',NULL,1473,0,'INF','\'zmaudit.pl -c\' sending stop to pid 1927 at 17/11/17 11:10:46','zmdc.pl',NULL),(1510909846.699260,'zmdc',NULL,1473,0,'INF','\'zmwatch.pl\' exited, signal 14','zmdc.pl',NULL),(1510909846.702030,'zmdc',NULL,1473,0,'INF','\'zmtelemetry.pl\' sending stop to pid 2134 at 17/11/17 11:10:46','zmdc.pl',NULL),(1510909846.704660,'zmdc',NULL,1473,0,'INF','\'zmaudit.pl -c\' exited, signal 14','zmdc.pl',NULL),(1510909846.709800,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' sending stop to pid 10016 at 17/11/17 11:10:46','zmdc.pl',NULL),(1510909846.714830,'zmdc',NULL,1473,0,'INF','\'zmtelemetry.pl\' exited, signal 14','zmdc.pl',NULL),(1510909846.720106,'zmc_m1',0,10016,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510909846.720180,'zmdc',NULL,1473,0,'INF','\'zmfilter.pl\' sending stop to pid 1907 at 17/11/17 11:10:46','zmdc.pl',NULL),(1510909846.732840,'zmdc',NULL,1473,0,'INF','\'zmfilter.pl\' exited, signal 14','zmdc.pl',NULL),(1510909851.738910,'zmdc',NULL,1473,-1,'WAR','\'zmc -m 1\' has not stopped at 17/11/17 11:10:51. Sending KILL to pid 10016','zmdc.pl',NULL),(1510909851.759760,'zmdc',NULL,1473,0,'INF','\'zmc -m 1\' crashed, signal 8','zmdc.pl',NULL),(1510909856.919257,'zms',0,10498,-2,'ERR','Terminating, last frame sent time 10.021966 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510909861.879360,'zmdc',NULL,1473,0,'INF','Server shutdown at 17/11/17 11:11:01','zmdc.pl',NULL),(1510909861.996120,'zmpkg',NULL,10694,0,'INF','Sanity checking States table...','zmpkg.pl',NULL),(1510909862.000230,'zmpkg',NULL,10694,0,'INF','Command: start','zmpkg.pl',NULL),(1510909862.190650,'zmdc',NULL,10708,0,'INF','Server starting at 17/11/17 11:11:02','zmdc.pl',NULL),(1510909865.198990,'zmpkg',NULL,10694,0,'INF','Single server configuration detected. Starting up services.','zmpkg.pl',NULL),(1510909865.318800,'zmdc',NULL,10708,0,'INF','\'zmc -m 1\' starting at 17/11/17 11:11:05, pid = 10737','zmdc.pl',NULL),(1510909865.318950,'zmdc',NULL,10737,0,'INF','\'zmc -m 1\' started at 17/11/17 11:11:05','zmdc.pl',NULL),(1510909865.367750,'zmdc',NULL,10708,-2,'ERR','\'zmc -m 1\' exited abnormally, exit status 255','zmdc.pl',NULL),(1510909865.372820,'zmdc',NULL,10708,0,'INF','Starting pending process, zmc -m 1','zmdc.pl',NULL),(1510909865.378950,'zmdc',NULL,10742,0,'INF','\'zmc -m 1\' started at 17/11/17 11:11:05','zmdc.pl',NULL),(1510909865.378950,'zmdc',NULL,10708,0,'INF','\'zmc -m 1\' starting at 17/11/17 11:11:05, pid = 10742','zmdc.pl',NULL),(1510909865.422490,'zmdc',NULL,10708,0,'INF','\'zmfilter.pl\' starting at 17/11/17 11:11:05, pid = 10745','zmdc.pl',NULL),(1510909865.422750,'zmdc',NULL,10745,0,'INF','\'zmfilter.pl\' started at 17/11/17 11:11:05','zmdc.pl',NULL),(1510909865.518820,'zmdc',NULL,10708,0,'INF','\'zmaudit.pl -c\' starting at 17/11/17 11:11:05, pid = 10750','zmdc.pl',NULL),(1510909865.518850,'zmdc',NULL,10750,0,'INF','\'zmaudit.pl -c\' started at 17/11/17 11:11:05','zmdc.pl',NULL),(1510909865.560928,'zmc_m1',0,10742,0,'INF','Starting Capture version 1.30.4','zmc.cpp',247),(1510909865.610170,'zmfilter',NULL,10745,0,'INF','Scanning for events','zmfilter.pl',NULL),(1510909865.631860,'zmdc',NULL,10761,0,'INF','\'zmwatch.pl\' started at 17/11/17 11:11:05','zmdc.pl',NULL),(1510909865.631850,'zmdc',NULL,10708,0,'INF','\'zmwatch.pl\' starting at 17/11/17 11:11:05, pid = 10761','zmdc.pl',NULL),(1510909865.711010,'zmwatch',NULL,10761,0,'INF','Watchdog starting','zmwatch.pl',NULL),(1510909865.716430,'zmwatch',NULL,10761,0,'INF','Watchdog pausing for 30 seconds','zmwatch.pl',NULL),(1510909865.721220,'zmdc',NULL,10767,0,'INF','\'zmtelemetry.pl\' started at 17/11/17 11:11:05','zmdc.pl',NULL),(1510909865.721220,'zmdc',NULL,10708,0,'INF','\'zmtelemetry.pl\' starting at 17/11/17 11:11:05, pid = 10767','zmdc.pl',NULL),(1510909865.735944,'web_php',NULL,10495,-2,'ERR','socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909865.736504,'web_php',NULL,10667,-2,'ERR','socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909865.738050,'web_php',NULL,10492,-2,'ERR','socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909865.738905,'web_php',NULL,10665,-2,'ERR','socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909865.795611,'web_js',NULL,10494,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510909865.849026,'zms',0,10771,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510909865.855065,'zms',0,10771,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510909866.358395,'zms',0,10771,-2,'ERR','Terminating, last frame sent time 1510909865.858252 secs more than maximum of 10.000000','zm_monitor.cpp',4213),(1510909867.867605,'web_php',NULL,10680,-2,'ERR','socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909867.887653,'web_js',NULL,10680,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-771757w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510909867.928413,'zms',0,10793,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510909867.931016,'zms',0,10793,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510909867.991734,'zms',0,10793,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510909868.938923,'web_php',NULL,10497,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-771757s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909870.977550,'web_php',NULL,10681,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-771757s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510909966.497152,'zmc_m1',0,10742,0,'INF','Monitor-1: 1000 - Capturing at 9.90 fps','zm_monitor.cpp',3125),(1510909977.530810,'zms',0,10793,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510909987.429812,'zms',0,10830,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510909987.432727,'zms',0,10830,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510909989.871720,'zmcontrol',NULL,10834,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510909989.910020,'zmcontrol',NULL,10834,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510909989.918319,'web_php',NULL,10664,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=6 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510910066.481349,'zmc_m1',0,10742,0,'INF','Monitor-1: 2000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510910166.478495,'zmc_m1',0,10742,0,'INF','Monitor-1: 3000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510910234.373861,'zms',0,10830,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510910234.379442,'zms',0,10830,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510910236.707316,'web_php',NULL,10951,-2,'ERR','socket_bind( /var/run/zm/zms-994992w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510910236.728887,'web_js',NULL,10951,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-994992w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510910236.770760,'zms',0,10956,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510910236.775833,'zms',0,10956,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510910237.010399,'zms',0,10956,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510910239.957989,'web_php',NULL,10950,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-994992s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510910243.190970,'zmcontrol',NULL,10962,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510910243.216770,'zmcontrol',NULL,10964,0,'INF','Control server 1/Floureon starting at 17/11/17 11:17:23','zmcontrol.pl',NULL),(1510910266.516648,'zmc_m1',0,10742,0,'INF','Monitor-1: 4000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510910318.058030,'zms',0,10956,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510910318.064617,'zms',0,10956,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510910320.377360,'zmcontrol',NULL,11006,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510910320.398600,'zmcontrol',NULL,11008,0,'INF','Control server 1/Floureon starting at 17/11/17 11:18:40','zmcontrol.pl',NULL),(1510910320.742356,'web_php',NULL,11001,-2,'ERR','socket_bind( /var/run/zm/zms-994992w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510910320.755416,'web_js',NULL,11001,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-994992w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510910320.792584,'zms',0,11011,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510910320.795347,'zms',0,11011,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510910320.926007,'zms',0,11011,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510910323.881588,'web_php',NULL,10999,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-994992s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510910366.482180,'zmc_m1',0,10742,0,'INF','Monitor-1: 5000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510910466.493028,'zmc_m1',0,10742,0,'INF','Monitor-1: 6000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510910566.495654,'zmc_m1',0,10742,0,'INF','Monitor-1: 7000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510910666.495921,'zmc_m1',0,10742,0,'INF','Monitor-1: 8000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510910766.479190,'zmc_m1',0,10742,0,'INF','Monitor-1: 9000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510910866.465274,'zmc_m1',0,10742,0,'INF','Monitor-1: 10000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510910966.465630,'zmc_m1',0,10742,0,'INF','Monitor-1: 11000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510911066.446810,'zmc_m1',0,10742,0,'INF','Monitor-1: 12000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510911156.144991,'zms',0,11011,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510911156.150725,'zms',0,11011,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510911159.028507,'web_php',NULL,11241,-2,'ERR','Socket /var/run/zm/zms-994992s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911159.049279,'web_js',NULL,11241,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-994992s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510911159.087275,'zms',0,11247,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510911159.092260,'zms',0,11247,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510911159.942640,'zmcontrol',NULL,11250,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911159.966350,'zmcontrol',NULL,11250,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510911159.974332,'web_php',NULL,11241,-2,'ERR','/usr/bin/zmcontrol.pl --tiltspeed=6 --autostop --command=moveConUp --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911166.457791,'zmc_m1',0,10742,0,'INF','Monitor-1: 13000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510911216.858792,'zms',0,11247,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510911219.388797,'web_php',NULL,11287,-2,'ERR','Socket /var/run/zm/zms-994992s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911219.424436,'web_js',NULL,11287,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-994992s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510911219.475527,'zms',0,11294,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510911219.480200,'zms',0,11294,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510911219.586300,'zmcontrol',NULL,11296,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911219.608520,'zmcontrol',NULL,11298,0,'INF','Control server 1/Floureon starting at 17/11/17 11:33:39','zmcontrol.pl',NULL),(1510911266.466630,'zmc_m1',0,10742,0,'INF','Monitor-1: 14000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510911362.114408,'zms',0,11294,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510911364.263413,'web_php',NULL,11348,-2,'ERR','socket_bind( /var/run/zm/zms-994992w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911364.277094,'web_js',NULL,11348,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-994992w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510911364.314808,'zms',0,11353,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510911364.320032,'zms',0,11353,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510911364.434858,'zms',0,11353,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510911364.935010,'zmcontrol',NULL,11357,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911364.957290,'zmcontrol',NULL,11357,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510911364.962740,'web_php',NULL,11348,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=7 --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911366.469759,'zmc_m1',0,10742,0,'INF','Monitor-1: 15000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510911367.419207,'web_php',NULL,11347,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-994992s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911369.186550,'zmcontrol',NULL,11362,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911369.206380,'zmcontrol',NULL,11362,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510911369.211468,'web_php',NULL,11348,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=2 --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911397.835770,'zmcontrol',NULL,11375,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911397.854690,'zmcontrol',NULL,11375,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510911397.860115,'web_php',NULL,11355,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=6 --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911412.653580,'zmcontrol',NULL,11381,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911412.675740,'zmcontrol',NULL,11381,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510911412.683264,'web_php',NULL,11355,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=7 --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911416.839980,'zmcontrol',NULL,11384,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911416.859320,'zmcontrol',NULL,11384,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510911416.864456,'web_php',NULL,11355,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=5 --tiltspeed=5 --autostop --command=moveConUpLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911466.454885,'zmc_m1',0,10742,0,'INF','Monitor-1: 16000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510911566.465655,'zmc_m1',0,10742,0,'INF','Monitor-1: 17000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510911636.349852,'zms',0,11353,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510911636.355837,'zms',0,11353,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510911640.854450,'zmcontrol',NULL,11526,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911640.895600,'zmcontrol',NULL,11526,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510911640.902903,'web_php',NULL,11517,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=6 --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911641.269999,'web_php',NULL,11516,-2,'ERR','Socket /var/run/zm/zms-994992s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911641.285313,'web_js',NULL,11516,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-994992s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510911641.324600,'zms',0,11528,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510911641.329585,'zms',0,11528,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510911666.451510,'zmc_m1',0,10742,0,'INF','Monitor-1: 18000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510911680.954570,'zmcontrol',NULL,11545,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911680.974850,'zmcontrol',NULL,11545,-3,'FAT','Can\'t load ZoneMinder::Control::Floureon','zmcontrol.pl',NULL),(1510911680.983279,'web_php',NULL,11516,-2,'ERR','/usr/bin/zmcontrol.pl --panspeed=3 --autostop --command=moveConLeft --id=1=>','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911702.596858,'zms',0,11528,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510911702.600273,'zms',0,11528,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510911704.356889,'web_php',NULL,11571,-2,'ERR','socket_bind( /var/run/zm/zms-994992w.sock ) failed: Address already in use','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911704.374686,'web_js',NULL,11571,-2,'ERR','getStreamCmdResponse stream error: socket_bind( /var/run/zm/zms-994992w.sock ) failed: Address already in use - checkStreamForErrors()','?view=watch',NULL),(1510911704.419533,'zms',0,11576,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510911704.424474,'zms',0,11576,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510911704.538735,'zms',0,11576,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510911706.447120,'zmcontrol',NULL,11584,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911706.473320,'zmcontrol',NULL,11586,0,'INF','Control server 1/Floureon starting at 17/11/17 11:41:46','zmcontrol.pl',NULL),(1510911707.522003,'web_php',NULL,11570,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-994992s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911707.549037,'zms',0,11576,-2,'ERR','Can\'t sendto on sd 8: No such file or directory','zm_monitor.cpp',3799),(1510911710.496340,'web_php',NULL,11573,-2,'ERR','Timed out waiting for msg /var/run/zm/zms-994992s.sock','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911766.450509,'zmc_m1',0,10742,0,'INF','Monitor-1: 19000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510911866.448418,'zmc_m1',0,10742,0,'INF','Monitor-1: 20000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510911883.919684,'zms',0,11576,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510911883.925939,'zms',0,11576,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510911886.277910,'zmcontrol',NULL,11654,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510911886.299530,'zmcontrol',NULL,11656,0,'INF','Control server 1/Floureon starting at 17/11/17 11:44:46','zmcontrol.pl',NULL),(1510911888.451545,'web_php',NULL,11648,-2,'ERR','Socket /var/run/zm/zms-994992s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information.','/usr/share/zoneminder/www/includes/functions.php',2033),(1510911888.471127,'web_js',NULL,11648,-2,'ERR','getStreamCmdResponse stream error: Socket /var/run/zm/zms-994992s.sock does not exist. This file is created by zms, and since it does not exist, either zms did not run, or zms exited early. Please check your zms logs and ensure that CGI is enabled in apache and check that the PATH_ZMS is set correctly. Make sure that ZM is actually recording. If you are trying to view a live stream and the capture process (zmc) is not running then zms will exit. Please go to http://zoneminder.readthedocs.io/en/latest/faq.html#why-can-t-i-see-streamed-images-when-i-can-see-stills-in-the-zone-window-etc for more information. - checkStreamForErrors()','?view=watch',NULL),(1510911888.509592,'zms',0,11658,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510911888.512164,'zms',0,11658,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510911966.437780,'zmc_m1',0,10742,0,'INF','Monitor-1: 21000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510912066.455457,'zmc_m1',0,10742,0,'INF','Monitor-1: 22000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510912166.457429,'zmc_m1',0,10742,0,'INF','Monitor-1: 23000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510912266.454933,'zmc_m1',0,10742,0,'INF','Monitor-1: 24000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510912366.451555,'zmc_m1',0,10742,0,'INF','Monitor-1: 25000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510912466.450785,'zmc_m1',0,10742,0,'INF','Monitor-1: 26000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510912566.429734,'zmc_m1',0,10742,0,'INF','Monitor-1: 27000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510912666.451955,'zmc_m1',0,10742,0,'INF','Monitor-1: 28000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510912766.431015,'zmc_m1',0,10742,0,'INF','Monitor-1: 29000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510912866.430798,'zmc_m1',0,10742,0,'INF','Monitor-1: 30000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510912966.429467,'zmc_m1',0,10742,0,'INF','Monitor-1: 31000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510913066.405523,'zmc_m1',0,10742,0,'INF','Monitor-1: 32000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510913166.425538,'zmc_m1',0,10742,0,'INF','Monitor-1: 33000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510913266.432812,'zmc_m1',0,10742,0,'INF','Monitor-1: 34000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510913366.432625,'zmc_m1',0,10742,0,'INF','Monitor-1: 35000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510913466.407501,'zmc_m1',0,10742,0,'INF','Monitor-1: 36000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510913566.431940,'zmc_m1',0,10742,0,'INF','Monitor-1: 37000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510913666.428879,'zmc_m1',0,10742,0,'INF','Monitor-1: 38000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510913766.409488,'zmc_m1',0,10742,0,'INF','Monitor-1: 39000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510913866.425506,'zmc_m1',0,10742,0,'INF','Monitor-1: 40000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510913966.410357,'zmc_m1',0,10742,0,'INF','Monitor-1: 41000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510914066.408756,'zmc_m1',0,10742,0,'INF','Monitor-1: 42000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510914166.411176,'zmc_m1',0,10742,0,'INF','Monitor-1: 43000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510914266.417756,'zmc_m1',0,10742,0,'INF','Monitor-1: 44000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510914366.414621,'zmc_m1',0,10742,0,'INF','Monitor-1: 45000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510914466.409557,'zmc_m1',0,10742,0,'INF','Monitor-1: 46000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510914554.858780,'zmcontrol',NULL,11656,0,'INF','Control server 1/Floureon exiting at 17/11/17 12:29:14','zmcontrol.pl',NULL),(1510914566.414747,'zmc_m1',0,10742,0,'INF','Monitor-1: 47000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510914666.401495,'zmc_m1',0,10742,0,'INF','Monitor-1: 48000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510914766.400332,'zmc_m1',0,10742,0,'INF','Monitor-1: 49000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510914866.402418,'zmc_m1',0,10742,0,'INF','Monitor-1: 50000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510914966.408442,'zmc_m1',0,10742,0,'INF','Monitor-1: 51000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510915066.401228,'zmc_m1',0,10742,0,'INF','Monitor-1: 52000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510915166.404204,'zmc_m1',0,10742,0,'INF','Monitor-1: 53000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510915266.382804,'zmc_m1',0,10742,0,'INF','Monitor-1: 54000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510915366.405018,'zmc_m1',0,10742,0,'INF','Monitor-1: 55000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510915466.373247,'zmc_m1',0,10742,0,'INF','Monitor-1: 56000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510915566.407800,'zmc_m1',0,10742,0,'INF','Monitor-1: 57000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510915666.407220,'zmc_m1',0,10742,0,'INF','Monitor-1: 58000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510915766.377815,'zmc_m1',0,10742,0,'INF','Monitor-1: 59000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510915866.368608,'zmc_m1',0,10742,0,'INF','Monitor-1: 60000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510915966.373965,'zmc_m1',0,10742,0,'INF','Monitor-1: 61000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510916066.385120,'zmc_m1',0,10742,0,'INF','Monitor-1: 62000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510916166.385599,'zmc_m1',0,10742,0,'INF','Monitor-1: 63000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510916266.370531,'zmc_m1',0,10742,0,'INF','Monitor-1: 64000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510916366.366947,'zmc_m1',0,10742,0,'INF','Monitor-1: 65000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510916466.392429,'zmc_m1',0,10742,0,'INF','Monitor-1: 66000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510916566.372937,'zmc_m1',0,10742,0,'INF','Monitor-1: 67000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510916666.358351,'zmc_m1',0,10742,0,'INF','Monitor-1: 68000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510916766.362302,'zmc_m1',0,10742,0,'INF','Monitor-1: 69000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510916866.357952,'zmc_m1',0,10742,0,'INF','Monitor-1: 70000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510916966.368059,'zmc_m1',0,10742,0,'INF','Monitor-1: 71000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917066.358399,'zmc_m1',0,10742,0,'INF','Monitor-1: 72000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917166.353723,'zmc_m1',0,10742,0,'INF','Monitor-1: 73000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917266.364359,'zmc_m1',0,10742,0,'INF','Monitor-1: 74000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917366.360832,'zmc_m1',0,10742,0,'INF','Monitor-1: 75000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917466.359837,'zmc_m1',0,10742,0,'INF','Monitor-1: 76000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917566.347551,'zmc_m1',0,10742,0,'INF','Monitor-1: 77000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917666.344616,'zmc_m1',0,10742,0,'INF','Monitor-1: 78000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917766.340404,'zmc_m1',0,10742,0,'INF','Monitor-1: 79000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917866.345756,'zmc_m1',0,10742,0,'INF','Monitor-1: 80000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917966.353929,'zmc_m1',0,10742,0,'INF','Monitor-1: 81000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510917988.943440,'zmcontrol',NULL,13372,0,'INF','Starting control server 1/Floureon','zmcontrol.pl',NULL),(1510917988.964810,'zmcontrol',NULL,13374,0,'INF','Control server 1/Floureon starting at 17/11/17 13:26:28','zmcontrol.pl',NULL),(1510918057.177701,'zms',0,11658,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510918066.311766,'zmc_m1',0,10742,0,'INF','Monitor-1: 82000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510918166.350589,'zmc_m1',0,10742,0,'INF','Monitor-1: 83000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510918175.521031,'zms',0,13437,-2,'ERR','Can\'t stat \'/tmp/zm\': No such file or directory','zm_monitor.cpp',3493),(1510918175.523979,'zms',0,13437,-2,'ERR','Unable to validate swap image path, disabling buffered playback','zm_monitor.cpp',4025),(1510918266.344510,'zmc_m1',0,10742,0,'INF','Monitor-1: 84000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510918366.344639,'zmc_m1',0,10742,0,'INF','Monitor-1: 85000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510918466.343081,'zmc_m1',0,10742,0,'INF','Monitor-1: 86000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510918566.333464,'zmc_m1',0,10742,0,'INF','Monitor-1: 87000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510918666.339720,'zmc_m1',0,10742,0,'INF','Monitor-1: 88000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510918766.316141,'zmc_m1',0,10742,0,'INF','Monitor-1: 89000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510918798.724122,'zms',0,13437,0,'INF','Got signal 15 (Terminated), exiting','zm_signal.cpp',40),(1510918866.310690,'zmc_m1',0,10742,0,'INF','Monitor-1: 90000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510918966.333988,'zmc_m1',0,10742,0,'INF','Monitor-1: 91000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510919066.334602,'zmc_m1',0,10742,0,'INF','Monitor-1: 92000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510919166.314074,'zmc_m1',0,10742,0,'INF','Monitor-1: 93000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510919266.323738,'zmc_m1',0,10742,0,'INF','Monitor-1: 94000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510919366.330947,'zmc_m1',0,10742,0,'INF','Monitor-1: 95000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510919466.326083,'zmc_m1',0,10742,0,'INF','Monitor-1: 96000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510919566.325861,'zmc_m1',0,10742,0,'INF','Monitor-1: 97000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510919666.293526,'zmc_m1',0,10742,0,'INF','Monitor-1: 98000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510919766.323413,'zmc_m1',0,10742,0,'INF','Monitor-1: 99000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510919830.812660,'zmcontrol',NULL,13374,0,'INF','Control server 1/Floureon exiting at 17/11/17 13:57:10','zmcontrol.pl',NULL),(1510919866.319409,'zmc_m1',0,10742,0,'INF','Monitor-1: 100000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510919966.318663,'zmc_m1',0,10742,0,'INF','Monitor-1: 101000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510920066.318580,'zmc_m1',0,10742,0,'INF','Monitor-1: 102000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510920166.316563,'zmc_m1',0,10742,0,'INF','Monitor-1: 103000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510920266.313727,'zmc_m1',0,10742,0,'INF','Monitor-1: 104000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510920366.303875,'zmc_m1',0,10742,0,'INF','Monitor-1: 105000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510920466.319478,'zmc_m1',0,10742,0,'INF','Monitor-1: 106000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510920566.287159,'zmc_m1',0,10742,0,'INF','Monitor-1: 107000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510920666.289840,'zmc_m1',0,10742,0,'INF','Monitor-1: 108000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510920766.298701,'zmc_m1',0,10742,0,'INF','Monitor-1: 109000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510920866.285604,'zmc_m1',0,10742,0,'INF','Monitor-1: 110000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510920966.286548,'zmc_m1',0,10742,0,'INF','Monitor-1: 111000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510921066.267719,'zmc_m1',0,10742,0,'INF','Monitor-1: 112000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510921166.265901,'zmc_m1',0,10742,0,'INF','Monitor-1: 113000 - Capturing at 10.00 fps','zm_monitor.cpp',3125),(1510921266.293262,'zmc_m1',0,10742,0,'INF','Monitor-1: 114000 - Capturing at 10.00 fps','zm_monitor.cpp',3125); -/*!40000 ALTER TABLE `Logs` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `MonitorPresets` --- - -DROP TABLE IF EXISTS `MonitorPresets`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `MonitorPresets` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `Name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Type` enum('Local','Remote','File','Ffmpeg','Libvlc','cURL') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Local', - `Device` tinytext COLLATE utf8_unicode_ci, - `Channel` tinytext COLLATE utf8_unicode_ci, - `Format` int(10) unsigned DEFAULT NULL, - `Protocol` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL, - `Method` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL, - `Host` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL, - `Port` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL, - `Path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `SubPath` varchar(64) COLLATE utf8_unicode_ci DEFAULT NULL, - `Width` smallint(5) unsigned DEFAULT NULL, - `Height` smallint(5) unsigned DEFAULT NULL, - `Palette` int(10) unsigned DEFAULT NULL, - `MaxFPS` decimal(5,2) DEFAULT NULL, - `Controllable` tinyint(3) unsigned NOT NULL DEFAULT '0', - `ControlId` varchar(16) COLLATE utf8_unicode_ci DEFAULT NULL, - `ControlDevice` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `ControlAddress` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `DefaultRate` smallint(5) unsigned NOT NULL DEFAULT '100', - `DefaultScale` smallint(5) unsigned NOT NULL DEFAULT '100', - PRIMARY KEY (`Id`) -) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `MonitorPresets` --- - -LOCK TABLES `MonitorPresets` WRITE; -/*!40000 ALTER TABLE `MonitorPresets` DISABLE KEYS */; -INSERT INTO `MonitorPresets` VALUES (1,'Axis IP, 320x240, mpjpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/mjpg/video.cgi?resolution=320x240',NULL,320,240,3,NULL,0,NULL,NULL,NULL,100,100),(2,'Axis IP, 320x240, mpjpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/mjpg/video.cgi?resolution=320x240&req_fps=5',NULL,320,240,3,NULL,0,NULL,NULL,NULL,100,100),(3,'Axis IP, 320x240, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/jpg/image.cgi?resolution=320x240',NULL,320,240,3,NULL,0,NULL,NULL,NULL,100,100),(4,'Axis IP, 320x240, jpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/jpg/image.cgi?resolution=320x240',NULL,320,240,3,5.00,0,NULL,NULL,NULL,100,100),(5,'Axis IP, 640x480, mpjpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/mjpg/video.cgi?resolution=640x480',NULL,640,480,3,NULL,0,NULL,NULL,NULL,100,100),(6,'Axis IP, 640x480, mpjpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/mjpg/video.cgi?resolution=640x480&req_fps=5',NULL,640,480,3,NULL,0,NULL,NULL,NULL,100,100),(7,'Axis IP, 640x480, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/jpg/image.cgi?resolution=640x480',NULL,640,480,3,NULL,0,NULL,NULL,NULL,100,100),(8,'Axis IP, 640x480, jpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/jpg/image.cgi?resolution=640x480',NULL,640,480,3,5.00,0,NULL,NULL,NULL,100,100),(9,'Axis IP, 320x240, mpjpeg, B&W','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/mjpg/video.cgi?resolution=320x240&color=0',NULL,320,240,3,NULL,0,NULL,NULL,NULL,100,100),(10,'Axis IP, 640x480, mpjpeg, B&W','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/mjpg/video.cgi?resolution=640x480&color=0',NULL,640,480,3,NULL,0,NULL,NULL,NULL,100,100),(11,'Axis IP PTZ, 320x240, mpjpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/mjpg/video.cgi?resolution=320x240',NULL,320,240,3,NULL,1,'4',NULL,':',100,100),(12,'Axis IP PTZ, 320x240, mpjpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/mjpg/video.cgi?resolution=320x240&req_fps=5',NULL,320,240,3,NULL,1,'4',NULL,':',100,100),(13,'Axis IP PTZ, 320x240, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/jpg/image.cgi?resolution=320x240',NULL,320,240,3,NULL,1,'4',NULL,':',100,100),(14,'Axis IP PTZ, 320x240, jpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/jpg/image.cgi?resolution=320x240',NULL,320,240,3,5.00,1,'4',NULL,':',100,100),(15,'Axis IP PTZ, 640x480, mpjpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/mjpg/video.cgi?resolution=640x480',NULL,640,480,3,NULL,1,'4',NULL,':',100,100),(16,'Axis IP PTZ, 640x480, mpjpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/mjpg/video.cgi?resolution=640x480&req_fps=5',NULL,640,480,3,NULL,1,'4',NULL,':',100,100),(17,'Axis IP PTZ, 640x480, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/jpg/image.cgi?resolution=640x480',NULL,640,480,3,NULL,1,'4',NULL,':',100,100),(18,'Axis IP PTZ, 640x480, jpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/axis-cgi/jpg/image.cgi?resolution=640x480',NULL,640,480,3,5.00,1,'4',NULL,':',100,100),(19,'Axis IP, mpeg4, unicast','Remote','rtsp','rtpUni',NULL,NULL,NULL,'','554','/mpeg4/media.amp','/trackID=',NULL,NULL,3,NULL,0,NULL,NULL,NULL,100,100),(20,'Axis IP, mpeg4, multicast','Remote','rtsp','rtpMulti',NULL,NULL,NULL,'','554','/mpeg4/media.amp','/trackID=',NULL,NULL,3,NULL,0,NULL,NULL,NULL,100,100),(21,'Axis IP, mpeg4, RTP/RTSP','Remote','rtsp','rtpRtsp',NULL,NULL,NULL,'','554','/mpeg4/media.amp','/trackID=',NULL,NULL,3,NULL,0,NULL,NULL,NULL,100,100),(22,'Axis IP, mpeg4, RTP/RTSP/HTTP','Remote',NULL,NULL,NULL,'rtsp','rtpRtspHttp','','554','/mpeg4/media.amp','/trackID=',NULL,NULL,3,NULL,0,NULL,NULL,NULL,100,100),(23,'Panasonic IP, 320x240, mpjpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/nphMotionJpeg?Resolution=320x240&Quality=Standard',NULL,320,240,3,NULL,0,NULL,NULL,NULL,100,100),(24,'Panasonic IP, 320x240, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/SnapshotJPEG?Resolution=320x240&Quality=Standard',NULL,320,240,3,NULL,0,NULL,NULL,NULL,100,100),(25,'Panasonic IP, 320x240, jpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/SnapshotJPEG?Resolution=320x240&Quality=Standard',NULL,320,240,3,5.00,0,NULL,NULL,NULL,100,100),(26,'Panasonic IP, 640x480, mpjpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/nphMotionJpeg?Resolution=640x480&Quality=Standard',NULL,640,480,3,NULL,0,NULL,NULL,NULL,100,100),(27,'Panasonic IP, 640x480, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/SnapshotJPEG?Resolution=640x480&Quality=Standard',NULL,640,480,3,NULL,0,NULL,NULL,NULL,100,100),(28,'Panasonic IP, 640x480, jpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/SnapshotJPEG?Resolution=640x480&Quality=Standard',NULL,640,480,3,5.00,0,NULL,NULL,NULL,100,100),(29,'Panasonic IP PTZ, 320x240, mpjpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/nphMotionJpeg?Resolution=320x240&Quality=Standard',NULL,320,240,3,NULL,1,'5',NULL,':',100,100),(30,'Panasonic IP PTZ, 320x240, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/SnapshotJPEG?Resolution=320x240&Quality=Standard',NULL,320,240,3,NULL,1,'5',NULL,':',100,100),(31,'Panasonic IP PTZ, 320x240, jpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/SnapshotJPEG?Resolution=320x240&Quality=Standard',NULL,320,240,3,5.00,1,'5',NULL,':',100,100),(32,'Panasonic IP PTZ, 640x480, mpjpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/nphMotionJpeg?Resolution=640x480&Quality=Standard',NULL,640,480,3,NULL,1,'5',NULL,':',100,100),(33,'Panasonic IP PTZ, 640x480, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/SnapshotJPEG?Resolution=640x480&Quality=Standard',NULL,640,480,3,NULL,1,'5',NULL,':',100,100),(34,'Panasonic IP PTZ, 640x480, jpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/SnapshotJPEG?Resolution=640x480&Quality=Standard',NULL,640,480,3,5.00,1,'5',NULL,':',100,100),(35,'Gadspot IP, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/Jpeg/CamImg.jpg',NULL,NULL,NULL,3,NULL,0,NULL,NULL,NULL,100,100),(36,'Gadspot IP, jpeg, max 5 FPS','Remote','http','simple',NULL,NULL,NULL,'','80','/Jpeg/CamImg.jpg',NULL,NULL,NULL,3,5.00,0,NULL,NULL,NULL,100,100),(37,'Gadspot IP, mpjpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/GetData.cgi',NULL,NULL,NULL,3,NULL,0,NULL,NULL,NULL,100,100),(38,'Gadspot IP, mpjpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/Jpeg/CamImg.jpg',NULL,NULL,NULL,3,5.00,0,NULL,NULL,NULL,100,100),(39,'VEO Observer, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/Jpeg/CamImg.jpg',NULL,NULL,NULL,3,NULL,0,NULL,NULL,NULL,100,100),(40,'Blue Net Video Server, jpeg','Remote','http','simple',NULL,NULL,NULL,'','80','/cgi-bin/image.cgi?control=0&id=admin&passwd=admin',NULL,320,240,3,NULL,0,NULL,NULL,NULL,100,100),(41,'ACTi IP, mpeg4, unicast','Remote',NULL,NULL,NULL,'rtsp','rtpUni','','7070','','/track',NULL,NULL,3,NULL,0,NULL,NULL,NULL,100,100),(42,'Axis FFMPEG H.264','Ffmpeg',NULL,NULL,NULL,NULL,NULL,'rtsp:///axis-media/media.amp?videocodec=h264',NULL,NULL,NULL,640,480,3,NULL,0,NULL,NULL,NULL,100,100),(43,'Vivotek FFMPEG','Ffmpeg',NULL,NULL,NULL,NULL,NULL,'rtsp://:554/live.sdp',NULL,NULL,NULL,352,240,NULL,NULL,0,NULL,NULL,NULL,100,100),(44,'Axis FFMPEG','Ffmpeg',NULL,NULL,NULL,NULL,NULL,'rtsp:///axis-media/media.amp',NULL,NULL,NULL,640,480,NULL,NULL,0,NULL,NULL,NULL,100,100),(45,'ACTi TCM FFMPEG','Ffmpeg',NULL,NULL,NULL,NULL,NULL,'rtsp://admin:123456@:7070',NULL,NULL,NULL,320,240,NULL,NULL,0,NULL,NULL,NULL,100,100),(46,'BTTV Video (V4L2), PAL, 320x240','Local','/dev/video','',255,NULL,'v4l2',NULL,NULL,NULL,NULL,320,240,1345466932,NULL,0,NULL,NULL,NULL,100,100),(47,'BTTV Video (V4L2), PAL, 320x240, max 5 FPS','Local','/dev/video','',255,NULL,'v4l2',NULL,NULL,NULL,NULL,320,240,1345466932,5.00,0,NULL,NULL,NULL,100,100),(48,'BTTV Video (V4L2), PAL, 640x480','Local','/dev/video','',255,NULL,'v4l2',NULL,NULL,NULL,NULL,640,480,1345466932,NULL,0,NULL,NULL,NULL,100,100),(49,'BTTV Video (V4L2), PAL, 640x480, max 5 FPS','Local','/dev/video','',255,NULL,'v4l2',NULL,NULL,NULL,NULL,640,480,1345466932,5.00,0,NULL,NULL,NULL,100,100),(50,'BTTV Video (V4L2), NTSC, 320x240','Local','/dev/video','',45056,NULL,'v4l2',NULL,NULL,NULL,NULL,320,240,1345466932,NULL,0,NULL,NULL,NULL,100,100),(51,'BTTV Video (V4L2), NTSC, 320x240, max 5 FPS','Local','/dev/video','',45056,NULL,'v4l2',NULL,NULL,NULL,NULL,320,240,1345466932,5.00,0,NULL,NULL,NULL,100,100),(52,'BTTV Video (V4L2), NTSC, 640x480','Local','/dev/video','',45056,NULL,'v4l2',NULL,NULL,NULL,NULL,640,480,1345466932,NULL,0,NULL,NULL,NULL,100,100),(53,'BTTV Video (V4L2), NTSC, 640x480, max 5 FPS','Local','/dev/video','',45056,NULL,'v4l2',NULL,NULL,NULL,NULL,640,480,1345466932,5.00,0,NULL,NULL,NULL,100,100),(54,'BTTV Video (V4L1), PAL, 320x240','Local','/dev/video','',0,NULL,'v4l1',NULL,NULL,NULL,NULL,320,240,13,NULL,0,NULL,NULL,NULL,100,100),(55,'BTTV Video (V4L1), PAL, 320x240, max 5 FPS','Local','/dev/video','',0,NULL,'v4l1',NULL,NULL,NULL,NULL,320,240,13,5.00,0,NULL,NULL,NULL,100,100),(56,'BTTV Video (V4L1), PAL, 640x480','Local','/dev/video','',0,NULL,'v4l1',NULL,NULL,NULL,NULL,640,480,13,NULL,0,NULL,NULL,NULL,100,100),(57,'BTTV Video (V4L1), PAL, 640x480, max 5 FPS','Local','/dev/video','',0,NULL,'v4l1',NULL,NULL,NULL,NULL,640,480,13,5.00,0,NULL,NULL,NULL,100,100),(58,'BTTV Video (V4L1), NTSC, 320x240','Local','/dev/video','',1,NULL,'v4l1',NULL,NULL,NULL,NULL,320,240,13,NULL,0,NULL,NULL,NULL,100,100),(59,'BTTV Video (V4L1), NTSC, 320x240, max 5 FPS','Local','/dev/video','',1,NULL,'v4l1',NULL,NULL,NULL,NULL,320,240,13,5.00,0,NULL,NULL,NULL,100,100),(60,'BTTV Video (V4L1), NTSC, 640x480','Local','/dev/video','',1,NULL,'v4l1',NULL,NULL,NULL,NULL,640,480,13,NULL,0,NULL,NULL,NULL,100,100),(61,'BTTV Video (V4L1), NTSC, 640x480, max 5 FPS','Local','/dev/video','',1,NULL,'v4l1',NULL,NULL,NULL,NULL,640,480,13,5.00,0,NULL,NULL,NULL,100,100),(62,'Remote ZoneMinder','Remote',NULL,NULL,NULL,'http','simple','','80','/cgi-bin/nph-zms?mode=jpeg&monitor=&scale=100&maxfps=5&buffer=0',NULL,NULL,NULL,3,NULL,0,NULL,NULL,NULL,100,100),(63,'Foscam FI8620 FFMPEG H.264','Ffmpeg',NULL,NULL,NULL,NULL,'','','','rtsp://:@:554/11',NULL,704,576,0,NULL,1,'10','','',100,100),(64,'Foscam FI8608W FFMPEG H.264','Ffmpeg',NULL,NULL,NULL,NULL,'','','','rtsp://:@:554/11',NULL,640,480,0,NULL,1,'11','','',100,100),(65,'Foscam FI9821W FFMPEG H.264','Ffmpeg',NULL,NULL,NULL,NULL,'','','','rtsp://:@:88/videoMain',NULL,1280,720,0,NULL,1,'12','','',100,100),(66,'Loftek Sentinel PTZ, 640x480, mjpeg','Remote','http','0',0,NULL,NULL,'','80','/videostream.cgi?user=&pwd=&resolution=32&rate=11',NULL,640,480,4,NULL,1,'13','',':@',100,100),(67,'Airlink 777W PTZ, 640x480, mjpeg','Remote','http','0',0,NULL,NULL,':@','80','/cgi/mjpg/mjpg.cgi',NULL,640,480,4,NULL,1,'7','',':@',100,100),(68,'SunEyes SP-P1802SWPTZ','Libvlc','/dev/video','0',255,'','rtpMulti','','80','rtsp://:554/11','',1920,1080,0,0.00,1,'16','-speed=64',':',100,33),(69,'Qihan IP, 1280x720, RTP/RTSP','Ffmpeg','rtsp','rtpRtsp',255,'rtsp','rtpRtsp',NULL,'554','rtsp:///tcp_live/ch0_0',NULL,1280,720,3,NULL,0,NULL,NULL,NULL,100,100),(70,'Qihan IP, 1920x1080, RTP/RTSP','Ffmpeg','rtsp','rtpRtsp',255,'rtsp','rtpRtsp',NULL,'554','rtsp:///tcp_live/ch0_0',NULL,1920,1080,3,NULL,0,NULL,NULL,NULL,100,100); -/*!40000 ALTER TABLE `MonitorPresets` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Monitors` --- - -DROP TABLE IF EXISTS `Monitors`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Monitors` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `Name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `ServerId` int(10) unsigned DEFAULT NULL, - `Type` enum('Local','Remote','File','Ffmpeg','Libvlc','cURL') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Local', - `Function` enum('None','Monitor','Modect','Record','Mocord','Nodect') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Monitor', - `Enabled` tinyint(3) unsigned NOT NULL DEFAULT '1', - `LinkedMonitors` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Triggers` set('X10') COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Device` tinytext COLLATE utf8_unicode_ci NOT NULL, - `Channel` tinyint(3) unsigned NOT NULL DEFAULT '0', - `Format` int(10) unsigned NOT NULL DEFAULT '0', - `V4LMultiBuffer` tinyint(1) unsigned DEFAULT NULL, - `V4LCapturesPerFrame` tinyint(3) unsigned DEFAULT NULL, - `Protocol` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Method` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Host` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Port` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `SubPath` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Path` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Options` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `User` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Pass` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Width` smallint(5) unsigned NOT NULL DEFAULT '0', - `Height` smallint(5) unsigned NOT NULL DEFAULT '0', - `Colours` tinyint(3) unsigned NOT NULL DEFAULT '1', - `Palette` int(10) unsigned NOT NULL DEFAULT '0', - `Orientation` enum('0','90','180','270','hori','vert') COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', - `Deinterlacing` int(10) unsigned NOT NULL DEFAULT '0', - `RTSPDescribe` tinyint(1) unsigned NOT NULL DEFAULT '0', - `Brightness` mediumint(7) NOT NULL DEFAULT '-1', - `Contrast` mediumint(7) NOT NULL DEFAULT '-1', - `Hue` mediumint(7) NOT NULL DEFAULT '-1', - `Colour` mediumint(7) NOT NULL DEFAULT '-1', - `EventPrefix` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Event-', - `LabelFormat` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '%N - %y/%m/%d %H:%M:%S', - `LabelX` smallint(5) unsigned NOT NULL DEFAULT '0', - `LabelY` smallint(5) unsigned NOT NULL DEFAULT '0', - `LabelSize` smallint(5) unsigned NOT NULL DEFAULT '1', - `ImageBufferCount` smallint(5) unsigned NOT NULL DEFAULT '100', - `WarmupCount` smallint(5) unsigned NOT NULL DEFAULT '25', - `PreEventCount` smallint(5) unsigned NOT NULL DEFAULT '10', - `PostEventCount` smallint(5) unsigned NOT NULL DEFAULT '10', - `StreamReplayBuffer` int(10) unsigned NOT NULL DEFAULT '1000', - `AlarmFrameCount` smallint(5) unsigned NOT NULL DEFAULT '1', - `SectionLength` int(10) unsigned NOT NULL DEFAULT '600', - `FrameSkip` smallint(5) unsigned NOT NULL DEFAULT '0', - `MotionFrameSkip` smallint(5) unsigned NOT NULL DEFAULT '0', - `AnalysisFPS` decimal(5,2) DEFAULT NULL, - `AnalysisUpdateDelay` smallint(5) unsigned NOT NULL DEFAULT '0', - `MaxFPS` decimal(5,2) DEFAULT NULL, - `AlarmMaxFPS` decimal(5,2) DEFAULT NULL, - `FPSReportInterval` smallint(5) unsigned NOT NULL DEFAULT '250', - `RefBlendPerc` tinyint(3) unsigned NOT NULL DEFAULT '6', - `AlarmRefBlendPerc` tinyint(3) unsigned NOT NULL DEFAULT '6', - `Controllable` tinyint(3) unsigned NOT NULL DEFAULT '0', - `ControlId` int(10) unsigned NOT NULL DEFAULT '0', - `ControlDevice` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `ControlAddress` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, - `AutoStopTimeout` decimal(5,2) DEFAULT NULL, - `TrackMotion` tinyint(3) unsigned NOT NULL DEFAULT '0', - `TrackDelay` smallint(5) unsigned NOT NULL DEFAULT '0', - `ReturnLocation` tinyint(3) NOT NULL DEFAULT '-1', - `ReturnDelay` smallint(5) unsigned NOT NULL DEFAULT '0', - `DefaultView` enum('Events','Control') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Events', - `DefaultRate` smallint(5) unsigned NOT NULL DEFAULT '100', - `DefaultScale` smallint(5) unsigned NOT NULL DEFAULT '100', - `SignalCheckColour` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT '#0000BE', - `WebColour` varchar(32) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'red', - `Exif` tinyint(1) unsigned NOT NULL DEFAULT '0', - `Sequence` smallint(5) unsigned DEFAULT NULL, - PRIMARY KEY (`Id`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Monitors` --- - -LOCK TABLES `Monitors` WRITE; -/*!40000 ALTER TABLE `Monitors` DISABLE KEYS */; -INSERT INTO `Monitors` VALUES (1,'Monitor-1',0,'Remote','Monitor',1,'','','/dev/video0',0,255,0,1,'rtsp','rtpUni','admin:mnogo20rmnogo20r@10.42.0.10','554','','/1/h264major','','','',1980,1080,3,0,'0',0,0,-1,-1,-1,-1,'Event-','%N - %Y-%m-%d %H:%M:%S.%f %z',0,0,2,50,25,25,25,1000,1,600,0,0,0.00,0,0.00,0.00,1000,6,6,1,28,'','admin:mnogo20rmnogo20r@10.42.0.10',100.00,0,0,-1,0,'Events',100,100,'#0000c0','red',0,1); -/*!40000 ALTER TABLE `Monitors` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Servers` --- - -DROP TABLE IF EXISTS `Servers`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Servers` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `Hostname` text COLLATE utf8_unicode_ci, - `Name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `State_Id` int(10) unsigned DEFAULT NULL, - PRIMARY KEY (`Id`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Servers` --- - -LOCK TABLES `Servers` WRITE; -/*!40000 ALTER TABLE `Servers` DISABLE KEYS */; -/*!40000 ALTER TABLE `Servers` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `States` --- - -DROP TABLE IF EXISTS `States`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `States` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `Name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Definition` text COLLATE utf8_unicode_ci NOT NULL, - `IsActive` tinyint(3) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`Id`), - UNIQUE KEY `Name` (`Name`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `States` --- - -LOCK TABLES `States` WRITE; -/*!40000 ALTER TABLE `States` DISABLE KEYS */; -INSERT INTO `States` VALUES (1,'default','',1); -/*!40000 ALTER TABLE `States` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Stats` --- - -DROP TABLE IF EXISTS `Stats`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Stats` ( - `MonitorId` int(10) unsigned NOT NULL DEFAULT '0', - `ZoneId` int(10) unsigned NOT NULL DEFAULT '0', - `EventId` int(10) unsigned NOT NULL DEFAULT '0', - `FrameId` int(10) unsigned NOT NULL DEFAULT '0', - `PixelDiff` tinyint(3) unsigned NOT NULL DEFAULT '0', - `AlarmPixels` int(10) unsigned NOT NULL DEFAULT '0', - `FilterPixels` int(10) unsigned NOT NULL DEFAULT '0', - `BlobPixels` int(10) unsigned NOT NULL DEFAULT '0', - `Blobs` smallint(5) unsigned NOT NULL DEFAULT '0', - `MinBlobSize` int(10) unsigned NOT NULL DEFAULT '0', - `MaxBlobSize` int(10) unsigned NOT NULL DEFAULT '0', - `MinX` smallint(5) unsigned NOT NULL DEFAULT '0', - `MaxX` smallint(5) unsigned NOT NULL DEFAULT '0', - `MinY` smallint(5) unsigned NOT NULL DEFAULT '0', - `MaxY` smallint(5) unsigned NOT NULL DEFAULT '0', - `Score` smallint(5) unsigned NOT NULL DEFAULT '0', - KEY `EventId` (`EventId`), - KEY `MonitorId` (`MonitorId`), - KEY `ZoneId` (`ZoneId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Stats` --- - -LOCK TABLES `Stats` WRITE; -/*!40000 ALTER TABLE `Stats` DISABLE KEYS */; -INSERT INTO `Stats` VALUES (1,1,9,1022,62,1027755,966773,473665,5,46095,176798,0,1979,0,1075,22),(1,1,9,1023,67,1119223,1082630,722075,4,46452,514823,0,1979,0,997,33),(1,1,9,1024,65,1089486,1053644,738966,4,46865,508486,0,1979,0,989,34),(1,1,9,1025,63,1057414,1015817,638241,3,45134,502460,0,1979,0,729,29),(1,1,9,1026,63,1045226,989868,666674,4,43817,269643,0,1979,0,731,31),(1,1,9,1027,60,991639,931458,593694,2,73447,520247,0,1979,0,725,27),(1,1,9,1028,57,944733,891030,572222,4,74977,207088,0,1979,0,729,26),(1,1,9,1029,55,896089,840059,487082,5,70993,146149,0,1979,0,723,22),(1,1,9,1030,54,859512,800622,492434,5,70818,144142,0,1979,0,723,23),(1,1,9,1031,53,819126,755786,413481,5,60506,106676,0,1979,0,725,19),(1,1,9,1032,52,802002,729988,303045,3,55513,145132,0,1979,0,716,14),(1,1,9,1033,50,755833,681598,210412,3,54527,100000,0,1979,22,723,9),(1,1,9,1034,49,725126,645352,269936,4,54517,95857,0,1979,0,721,12),(1,1,9,1035,49,712955,629363,327572,5,53299,91327,0,1979,0,724,15),(1,1,9,1036,48,684028,597811,249216,3,50692,110808,0,1979,0,722,11),(1,1,9,1037,45,640014,551917,148384,3,45440,54321,0,1978,22,717,6),(1,1,9,1038,45,614866,532022,43641,1,43641,43641,877,1311,509,722,2),(1,1,9,1079,65,1054305,990237,467821,3,53015,323866,0,1979,0,723,21),(1,1,9,1080,65,1067765,1011918,653064,4,44279,470853,0,1979,0,723,30),(1,1,9,1081,63,1027717,970850,636534,4,43547,449472,0,1979,0,729,29),(1,1,9,1082,63,1008315,936222,539176,2,81883,457293,0,1979,0,729,25),(1,1,9,1083,60,973502,894403,512871,3,77068,358278,0,1979,0,724,24),(1,1,9,1084,58,925636,843871,434418,2,71958,362460,0,1979,0,722,20),(1,1,9,1085,56,879080,795946,342483,3,65345,207276,0,1979,0,719,16),(1,1,9,1086,54,836552,752873,303713,3,48042,189118,0,1979,68,718,14),(1,1,9,1087,52,797536,713556,331813,4,46838,102530,0,1979,85,718,15),(1,1,9,1088,51,760741,675187,261447,3,66731,98928,736,1979,148,718,12),(1,1,9,1089,49,728082,638204,215659,3,54915,95367,768,1979,105,718,10),(1,1,9,1090,48,697749,605544,201108,3,48115,92009,851,1979,138,718,9),(1,1,9,1091,46,672853,572323,97829,2,44876,52953,874,1979,438,718,4),(1,1,9,1092,45,648273,544005,50474,1,50474,50474,1622,1979,439,657,2),(1,1,9,1093,43,604098,505635,49265,1,49265,49265,1625,1979,439,660,2),(1,1,9,1094,42,566300,470773,47457,1,47457,47457,1626,1979,439,660,2),(1,1,9,1095,40,526757,434594,44534,1,44534,44534,1630,1979,439,656,2),(1,1,9,1804,57,92873,66486,51147,1,51147,51147,0,323,711,948,2),(1,1,9,1805,60,106173,80765,64662,1,64662,64662,0,401,716,958,3),(1,1,9,1806,60,103984,84885,70299,1,70299,70299,0,454,709,973,3),(1,1,9,1807,59,111398,95541,53829,1,53829,53829,0,533,657,913,2),(1,1,9,1808,57,117760,101828,62186,1,62186,62186,0,553,589,913,2),(1,1,9,1809,55,133506,114056,87576,1,87576,87576,0,669,588,975,4),(1,1,9,1810,53,149626,126842,89399,1,89399,89399,0,689,588,973,4),(1,1,9,1811,51,171911,144350,106200,1,106200,106200,0,807,589,947,4),(1,1,9,1812,52,177051,149500,93468,1,93468,93468,0,855,590,903,4),(1,1,9,1813,54,182505,155959,117321,1,117321,117321,0,933,590,981,5),(1,1,9,1814,55,185050,162758,126078,1,126078,126078,0,986,593,987,5),(1,1,9,1815,57,193916,174274,133102,1,133102,133102,0,1055,596,991,6),(1,1,9,1816,56,195748,176866,131646,1,131646,131646,0,1107,600,996,6),(1,1,9,1817,56,211005,186482,140925,1,140925,140925,19,1178,603,999,6),(1,1,9,1818,54,218974,188878,132135,1,132135,132135,56,1223,615,1004,6),(1,1,9,1819,54,240997,203621,137979,1,137979,137979,143,1301,615,1010,6),(1,1,9,1820,53,246555,208050,127122,1,127122,127122,194,1270,610,1014,5),(1,1,9,1821,54,252803,214698,120814,1,120814,120814,267,1291,620,1016,5),(1,1,9,1822,54,250535,214174,113552,2,52235,61317,317,1292,618,1018,5),(1,1,9,1823,54,262226,225703,104584,1,104584,104584,388,1293,637,1023,4),(1,1,9,1824,55,261026,225596,58713,1,58713,58713,518,1296,636,1024,2),(1,1,9,1825,57,267502,233405,106929,2,45213,61716,584,1702,620,1035,5),(1,1,9,1826,59,268778,234638,118879,2,49210,69669,594,1742,613,1035,5),(1,1,9,1827,60,282603,248653,126926,2,52007,74919,647,1792,621,1044,5),(1,1,9,1828,61,282696,250848,139080,2,49797,89283,682,1838,622,1049,6),(1,1,9,1829,63,286965,256625,105691,1,105691,105691,1373,1924,711,1052,4),(1,1,9,1830,63,286372,257806,124481,1,124481,124481,1278,1970,614,1055,5),(1,1,9,1831,63,287741,257465,111153,1,111153,111153,1450,1979,687,1060,5),(1,1,9,1832,62,277826,246903,131997,1,131997,131997,1283,1979,620,1062,6),(1,1,9,1833,60,272640,243153,135123,1,135123,135123,1336,1979,628,1067,6),(1,1,9,1834,59,264133,238189,136613,1,136613,136613,1301,1979,621,1069,6),(1,1,9,1835,58,260225,233055,135596,1,135596,135596,1304,1979,622,1071,6),(1,1,9,1836,57,250568,223939,135724,1,135724,135724,1341,1979,626,1071,6),(1,1,9,1837,56,238098,213287,138364,1,138364,138364,1342,1979,627,1072,6),(1,1,9,1838,56,225234,200726,131913,2,57098,74815,1379,1979,628,1074,6),(1,1,9,1839,55,215573,187762,120938,2,52845,68093,1380,1979,633,1071,5),(1,1,9,1840,54,200067,171891,113885,2,56008,57877,1435,1979,642,1071,5),(1,1,9,1841,53,180089,152499,51691,1,51691,51691,1454,1979,860,1070,2),(1,1,9,1842,53,171021,142597,50785,1,50785,50785,1495,1979,794,1067,2),(1,1,9,1843,50,157229,132022,54958,1,54958,54958,1495,1979,795,1067,2),(1,1,9,1844,49,149222,126152,56476,1,56476,56476,1496,1965,795,1066,2),(1,1,9,1845,47,142210,120144,63775,1,63775,63775,1496,1979,799,1067,2),(1,1,9,1846,46,136091,113346,61959,1,61959,61959,1496,1979,797,1056,2); -/*!40000 ALTER TABLE `Stats` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `TriggersX10` --- - -DROP TABLE IF EXISTS `TriggersX10`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `TriggersX10` ( - `MonitorId` int(10) unsigned NOT NULL DEFAULT '0', - `Activation` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL, - `AlarmInput` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL, - `AlarmOutput` varchar(32) COLLATE utf8_unicode_ci DEFAULT NULL, - PRIMARY KEY (`MonitorId`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `TriggersX10` --- - -LOCK TABLES `TriggersX10` WRITE; -/*!40000 ALTER TABLE `TriggersX10` DISABLE KEYS */; -/*!40000 ALTER TABLE `TriggersX10` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Users` --- - -DROP TABLE IF EXISTS `Users`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Users` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `Username` varchar(32) CHARACTER SET latin1 COLLATE latin1_bin NOT NULL DEFAULT '', - `Password` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Language` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Enabled` tinyint(3) unsigned NOT NULL DEFAULT '1', - `Stream` enum('None','View') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'None', - `Events` enum('None','View','Edit') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'None', - `Control` enum('None','View','Edit') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'None', - `Monitors` enum('None','View','Edit') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'None', - `Groups` enum('None','View','Edit') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'None', - `Devices` enum('None','View','Edit') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'None', - `System` enum('None','View','Edit') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'None', - `MaxBandwidth` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `MonitorIds` text COLLATE utf8_unicode_ci NOT NULL, - PRIMARY KEY (`Id`), - UNIQUE KEY `UC_Username` (`Username`) -) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Users` --- - -LOCK TABLES `Users` WRITE; -/*!40000 ALTER TABLE `Users` DISABLE KEYS */; -INSERT INTO `Users` VALUES (1,'admin','*4ACFE3202A5FF5CF467898FC58AAB1D615029441','',1,'View','Edit','Edit','Edit','Edit','Edit','Edit','',''); -/*!40000 ALTER TABLE `Users` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `ZonePresets` --- - -DROP TABLE IF EXISTS `ZonePresets`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `ZonePresets` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `Name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Type` enum('Active','Inclusive','Exclusive','Preclusive','Inactive','Privacy') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Active', - `Units` enum('Pixels','Percent') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Pixels', - `CheckMethod` enum('AlarmedPixels','FilteredPixels','Blobs') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Blobs', - `MinPixelThreshold` smallint(5) unsigned DEFAULT NULL, - `MaxPixelThreshold` smallint(5) unsigned DEFAULT NULL, - `MinAlarmPixels` int(10) unsigned DEFAULT NULL, - `MaxAlarmPixels` int(10) unsigned DEFAULT NULL, - `FilterX` tinyint(3) unsigned DEFAULT NULL, - `FilterY` tinyint(3) unsigned DEFAULT NULL, - `MinFilterPixels` int(10) unsigned DEFAULT NULL, - `MaxFilterPixels` int(10) unsigned DEFAULT NULL, - `MinBlobPixels` int(10) unsigned DEFAULT NULL, - `MaxBlobPixels` int(10) unsigned DEFAULT NULL, - `MinBlobs` smallint(5) unsigned DEFAULT NULL, - `MaxBlobs` smallint(5) unsigned DEFAULT NULL, - `OverloadFrames` smallint(5) unsigned NOT NULL DEFAULT '0', - `ExtendAlarmFrames` smallint(5) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`Id`) -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `ZonePresets` --- - -LOCK TABLES `ZonePresets` WRITE; -/*!40000 ALTER TABLE `ZonePresets` DISABLE KEYS */; -INSERT INTO `ZonePresets` VALUES (1,'Default','Active','Percent','Blobs',25,NULL,3,75,3,3,3,75,2,NULL,1,NULL,0,0),(2,'Fast, low sensitivity','Active','Percent','AlarmedPixels',60,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0),(3,'Fast, medium sensitivity','Active','Percent','AlarmedPixels',40,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0),(4,'Fast, high sensitivity','Active','Percent','AlarmedPixels',20,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0),(5,'Best, low sensitivity','Active','Percent','Blobs',60,NULL,36,NULL,7,7,24,NULL,20,NULL,1,NULL,0,0),(6,'Best, medium sensitivity','Active','Percent','Blobs',40,NULL,16,NULL,5,5,12,NULL,10,NULL,1,NULL,0,0),(7,'Best, high sensitivity','Active','Percent','Blobs',20,NULL,8,NULL,3,3,6,NULL,5,NULL,1,NULL,0,0); -/*!40000 ALTER TABLE `ZonePresets` ENABLE KEYS */; -UNLOCK TABLES; - --- --- Table structure for table `Zones` --- - -DROP TABLE IF EXISTS `Zones`; -/*!40101 SET @saved_cs_client = @@character_set_client */; -/*!40101 SET character_set_client = utf8 */; -CREATE TABLE `Zones` ( - `Id` int(10) unsigned NOT NULL AUTO_INCREMENT, - `MonitorId` int(10) unsigned NOT NULL DEFAULT '0', - `Name` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '', - `Type` enum('Active','Inclusive','Exclusive','Preclusive','Inactive','Privacy') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Active', - `Units` enum('Pixels','Percent') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Pixels', - `NumCoords` tinyint(3) unsigned NOT NULL DEFAULT '0', - `Coords` tinytext COLLATE utf8_unicode_ci NOT NULL, - `Area` int(10) unsigned NOT NULL DEFAULT '0', - `AlarmRGB` int(10) unsigned DEFAULT '0', - `CheckMethod` enum('AlarmedPixels','FilteredPixels','Blobs') COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Blobs', - `MinPixelThreshold` smallint(5) unsigned DEFAULT NULL, - `MaxPixelThreshold` smallint(5) unsigned DEFAULT NULL, - `MinAlarmPixels` int(10) unsigned DEFAULT NULL, - `MaxAlarmPixels` int(10) unsigned DEFAULT NULL, - `FilterX` tinyint(3) unsigned DEFAULT NULL, - `FilterY` tinyint(3) unsigned DEFAULT NULL, - `MinFilterPixels` int(10) unsigned DEFAULT NULL, - `MaxFilterPixels` int(10) unsigned DEFAULT NULL, - `MinBlobPixels` int(10) unsigned DEFAULT NULL, - `MaxBlobPixels` int(10) unsigned DEFAULT NULL, - `MinBlobs` smallint(5) unsigned DEFAULT NULL, - `MaxBlobs` smallint(5) unsigned DEFAULT NULL, - `OverloadFrames` smallint(5) unsigned NOT NULL DEFAULT '0', - `ExtendAlarmFrames` smallint(5) unsigned NOT NULL DEFAULT '0', - PRIMARY KEY (`Id`), - KEY `MonitorId` (`MonitorId`) -) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -/*!40101 SET character_set_client = @saved_cs_client */; - --- --- Dumping data for table `Zones` --- - -LOCK TABLES `Zones` WRITE; -/*!40000 ALTER TABLE `Zones` DISABLE KEYS */; -INSERT INTO `Zones` VALUES (1,1,'All','Active','Percent',4,'0,0 1979,0 1979,1079 0,1079',2138400,16711680,'Blobs',25,0,64152,1603800,3,3,64152,1603800,42768,0,1,0,0,0); -/*!40000 ALTER TABLE `Zones` ENABLE KEYS */; -UNLOCK TABLES; -/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; - -/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; -/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; -/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; -/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; -/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; -/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; -/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; - --- Dump completed on 2017-11-17 14:22:35 +INSERT INTO `Controls` VALUES (28,'Floureon 1080P','Ffmpeg','Floureon',0,0,0,1,0,0,0,1,1,18,1,1,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,20,0,1,1,1,0,0,0,1,1,0,0,0,0,1,1,8,0,0,1,0,0,0,0,1,1,8,0,0,0,0); From 03ad4898d96e34ef25c6afe5af4c7cc766842445 Mon Sep 17 00:00:00 2001 From: digital-gnome <31593470+digital-gnome@users.noreply.github.com> Date: Mon, 4 Dec 2017 21:25:56 -0500 Subject: [PATCH 2/7] Fix montage monitors jumping on alert (#2013) The alert class from bootstrap was not overriden on monitors in montage. --- web/skins/classic/css/classic/views/montage.css | 4 ++++ web/skins/classic/css/dark/views/montage.css | 4 ++++ web/skins/classic/css/flat/views/montage.css | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/web/skins/classic/css/classic/views/montage.css b/web/skins/classic/css/classic/views/montage.css index c39ea7034..50dce2719 100644 --- a/web/skins/classic/css/classic/views/montage.css +++ b/web/skins/classic/css/classic/views/montage.css @@ -16,6 +16,10 @@ #monitors .alert { color: #ffa500; + margin: 0; + padding: 0; + border-radius: 0; + border: none; } #monitors .imageFeed { diff --git a/web/skins/classic/css/dark/views/montage.css b/web/skins/classic/css/dark/views/montage.css index 70e50abb1..180a067f7 100644 --- a/web/skins/classic/css/dark/views/montage.css +++ b/web/skins/classic/css/dark/views/montage.css @@ -12,6 +12,10 @@ #monitors .alert { color: #ffa500; + margin: 0; + padding: 0; + border-radius: 0; + border: none; } #monitors .imageFeed { diff --git a/web/skins/classic/css/flat/views/montage.css b/web/skins/classic/css/flat/views/montage.css index 27a87069d..e4c6279b0 100644 --- a/web/skins/classic/css/flat/views/montage.css +++ b/web/skins/classic/css/flat/views/montage.css @@ -12,6 +12,10 @@ #monitors .alert { color: #ffa500; + margin: 0; + padding: 0; + border-radius: 0; + border: none; } #monitors .imageFeed { From fb952179cde97cca453a010f9642ff2e598ea0d8 Mon Sep 17 00:00:00 2001 From: digital-gnome <31593470+digital-gnome@users.noreply.github.com> Date: Mon, 4 Dec 2017 21:26:21 -0500 Subject: [PATCH 3/7] Fix delete filter (#2010) Delete filter didn't work because the request does not include 'object'. --- web/includes/actions.php | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/web/includes/actions.php b/web/includes/actions.php index ad9e03ce5..000e51e9e 100644 --- a/web/includes/actions.php +++ b/web/includes/actions.php @@ -212,11 +212,9 @@ if ( !empty($action) ) { deleteEvent( $markEid ); $refreshParent = true; } - if ( isset( $_REQUEST['object'] ) and ( $_REQUEST['object'] == 'filter' ) ) { - if ( !empty($_REQUEST['Id']) ) { - dbQuery( 'DELETE FROM Filters WHERE Id=?', array( $_REQUEST['Id'] ) ); - //$refreshParent = true; - } + if ( !empty($_REQUEST['fid']) ) { + dbQuery( 'DELETE FROM Filters WHERE Name=?', array( $_REQUEST['fid'] ) ); + //$refreshParent = true; } } } From f8d3c07586b77236dc7024c6c3f6157f77fd6d49 Mon Sep 17 00:00:00 2001 From: digital-gnome <31593470+digital-gnome@users.noreply.github.com> Date: Mon, 4 Dec 2017 21:26:59 -0500 Subject: [PATCH 4/7] Add h264 event view functionality and new feature alarmCues (#2012) * Fix nearEventsQuery Removed dbEscape from getNearEvents previous event because it only returns 0. Now matches next. Changed getEventDefaultVideoPath function to return a web path rather than the absolute path based on ic0ns branch. Also added start times to allow for videoJS replaymode. * Unescape filters Filters need to be unescaped * Add initial values to page load * Add replay modes to videojs * rough in figuring out a frame in between bulk frames * Add alarmCues Add a graphical indication of where alarm frames happened in an event. Similar to what zmNinja shows. * Add remaining buttons to videojs Functionality for all buttons on videojs streams. FF/RW buttons show as active when they are active. * Whitespace and fix Bulkframe calcs * Fix zms events trying to generate with mp4 code ZMS events would attempt to generate frames as though they were an mp4/passthrough type because the full eventpath wasn't passed * ZMS scrub bar Move zms scrub bar to bottom of image feed. Make it simpler and more like videojs style. * Wrap event feeds properly * Fix dvrControls on watch view * Add scaleToFit Add a scaleToFit option to event view * Add navigation for videoJS streams Disables nav buttons at beginning and end of events. Handles switching from zms to videojs. If zms crashes changes next event function to reload page instead of ajax. * Add scaleToFit to watch and frame view Adds scaleToFit to watch view. Since frame view uses the watch cookie this required changes to frame view * Add transition to zoom * Change stills view to match stream Move stills slider bar to match scrub bar on streams. Allow it to resize, make it larger. Add alarmcues. * Add Stills for every event Add stills for every event. Match size to stream size * Progressbox transitions --- web/ajax/status.php | 21 +- web/includes/functions.php | 6 +- web/skins/classic/css/classic/views/event.css | 97 ++- web/skins/classic/css/classic/views/frame.css | 23 +- web/skins/classic/css/dark/views/event.css | 100 ++- web/skins/classic/css/dark/views/frame.css | 23 +- web/skins/classic/css/flat/views/event.css | 99 ++- web/skins/classic/css/flat/views/frame.css | 22 +- web/skins/classic/includes/config.php | 3 + web/skins/classic/includes/functions.php | 1 + web/skins/classic/js/skin.js | 45 ++ web/skins/classic/js/skin.js.php | 2 +- web/skins/classic/js/video-js-skin.css | 65 ++ web/skins/classic/views/event.php | 99 ++- web/skins/classic/views/frame.php | 2 +- web/skins/classic/views/js/event.js | 712 +++++++++++------- web/skins/classic/views/js/event.js.php | 16 +- web/skins/classic/views/js/frame.js | 37 +- web/skins/classic/views/js/frame.js.php | 1 + web/skins/classic/views/js/watch.js | 20 +- web/skins/classic/views/js/watch.js.php | 2 +- web/views/image.php | 15 +- 22 files changed, 912 insertions(+), 499 deletions(-) create mode 100644 web/skins/classic/js/video-js-skin.css diff --git a/web/ajax/status.php b/web/ajax/status.php index fbd91cf08..73fbcf017 100644 --- a/web/ajax/status.php +++ b/web/ajax/status.php @@ -136,6 +136,17 @@ $statusData = array( //"Path" => array( "postFunc" => "getEventPath" ), ), ), + "frames" => array( + "permission" => "Events", + "table" => "Frames", + "selector" => "EventId", + "elements" => array( + "EventId" => true, + "FrameId" => true, + "Type" => true, + "Delta" => true, + ), + ), "frame" => array( "permission" => "Events", "table" => "Frames", @@ -367,7 +378,7 @@ function getNearEvents() { else $midSql = ''; - $sql = "select E.Id as Id from Events as E inner join Monitors as M on E.MonitorId = M.Id where ".dbEscape($sortColumn)." ".($sortOrder=='asc'?'<=':'>=')." '".$event[$_REQUEST['sort_field']]."'".$_REQUEST['filter']['sql'].$midSql." order by $sortColumn ".($sortOrder=='asc'?'desc':'asc'); + $sql = "SELECT E.Id AS Id, E.StartTime AS StartTime FROM Events AS E INNER JOIN Monitors AS M ON E.MonitorId = M.Id WHERE $sortColumn ".($sortOrder=='asc'?'<=':'>=')." '".$event[$_REQUEST['sort_field']]."'".$_REQUEST['filter']['sql'].$midSql." ORDER BY $sortColumn ".($sortOrder=='asc'?'desc':'asc') . ' LIMIT 2'; $result = dbQuery( $sql ); while ( $id = dbFetchNext( $result, 'Id' ) ) { if ( $id == $eventId ) { @@ -376,7 +387,7 @@ function getNearEvents() { } } - $sql = "select E.Id as Id from Events as E inner join Monitors as M on E.MonitorId = M.Id where $sortColumn ".($sortOrder=='asc'?'>=':'<=')." '".$event[$_REQUEST['sort_field']]."'".$_REQUEST['filter']['sql'].$midSql." order by $sortColumn $sortOrder"; + $sql = "SELECT E.Id AS Id, E.StartTime AS StartTime FROM Events AS E INNER JOIN Monitors AS M ON E.MonitorId = M.Id WHERE $sortColumn ".($sortOrder=='asc'?'>=':'<=')." '".$event[$_REQUEST['sort_field']]."'".$_REQUEST['filter']['sql'].$midSql." ORDER BY $sortColumn $sortOrder LIMIT 2"; $result = dbQuery( $sql ); while ( $id = dbFetchNext( $result, 'Id' ) ) { if ( $id == $eventId ) { @@ -388,8 +399,10 @@ function getNearEvents() { $result = array( 'EventId'=>$eventId ); $result['PrevEventId'] = empty($prevEvent)?0:$prevEvent['Id']; $result['NextEventId'] = empty($nextEvent)?0:$nextEvent['Id']; - $result['PrevEventDefVideoPath'] = empty($prevEvent)?0:(getEventDefaultVideoPath($prevEvent)); - $result['NextEventDefVideoPath'] = empty($nextEvent)?0:(getEventDefaultVideoPath($nextEvent)); + $result['PrevEventStartTime'] = empty($prevEvent)?0:$prevEvent['StartTime']; + $result['NextEventStartTime'] = empty($nextEvent)?0:$nextEvent['StartTime']; + $result['PrevEventDefVideoPath'] = empty($prevEvent)?0:(getEventDefaultVideoPath($prevEvent['Id'])); + $result['NextEventDefVideoPath'] = empty($nextEvent)?0:(getEventDefaultVideoPath($nextEvent['Id'])); return( $result ); } diff --git a/web/includes/functions.php b/web/includes/functions.php index 2ead3d64e..3569e5a35 100644 --- a/web/includes/functions.php +++ b/web/includes/functions.php @@ -452,7 +452,8 @@ function getEventPath( $event ) { } function getEventDefaultVideoPath( $event ) { - return ZM_DIR_EVENTS . '/' . getEventPath($event) . '/' . $event['DefaultVideo']; + $Event = new Event( $event ); + return $Event->getStreamSrc( array( "mode"=>"mpeg", "format"=>"h264" ) ); } function deletePath( $path ) { @@ -992,7 +993,7 @@ function zmaCheck( $monitor ) { } function getImageSrc( $event, $frame, $scale=SCALE_BASE, $captureOnly=false, $overwrite=false ) { - $eventPath = getEventPath( $event ); + $eventPath = ZM_DIR_EVENTS . '/' . getEventPath( $event ); if ( !is_array($frame) ) $frame = array( 'FrameId'=>$frame, 'Type'=>'' ); @@ -2305,6 +2306,7 @@ function getStreamMode( ) { $streamMode = 'single'; Info( 'The system has fallen back to single jpeg mode for streaming. Consider enabling Cambozola or upgrading the client browser.' ); } + return $streamMode; } // end function getStreamMode function folder_size($dir) { diff --git a/web/skins/classic/css/classic/views/event.css b/web/skins/classic/css/classic/views/event.css index e80710772..e4b6bc0e5 100644 --- a/web/skins/classic/css/classic/views/event.css +++ b/web/skins/classic/css/classic/views/event.css @@ -1,3 +1,34 @@ +#content .vjsMessage { + width: 100%; + position: absolute; + left: 0; + z-index: 10; + margin: 0; + font-size: 200%; + color: white; + background-color: black; + display: inline-block; +} + +.alarmCue { + background-color: #222222; + height: 1.25em; + text-align: left; + margin: 0 auto 0 auto; + border-radius: 0 0 .3em .3em; +} + +.alarmCue span { + background-color:red; + height: 100%; + display: inline-block; + border-radius: 0; +} + +span.noneCue { + background: none; +} + #dataBar { width: 100%; margin: 2px auto; @@ -6,6 +37,7 @@ #dataBar #dataTable { width: 100%; + table-layout: fixed; } #dataBar #dataTable td { @@ -13,6 +45,11 @@ padding: 2px; } +#eventVideo { + display: inline-block; + position: relative; +} + #menuBar1 { width: 100%; padding: 3px 0; @@ -83,6 +120,8 @@ } #imageFeed { + display: inline-block; + position: relative; text-align: center; } @@ -147,39 +186,29 @@ #progressBar { position: relative; - border: 1px solid #666666; - height: 15px; - margin: 0 auto; + top: -1.25em; + height: 1.25em; + margin: 0 auto -1.25em auto; } #progressBar .progressBox { - position: absolute; - top: 0px; - left: 0px; - height: 15px; - background: #eeeeee; - border-left: 1px solid #999999; -} - -#progressBar .complete { - background: #aaaaaa; + transition: width .1s; + height: 100%; + background: rgba(170, 170, 170, .7); + border-radius: 0 0 .3em .3em; } #eventStills { - width: 100%; position: relative; } #eventThumbsPanel { position: relative; - width: 100%; - margin: 4px auto; z-index: 1; } #eventThumbs { margin: 0 auto; - width: 100%; overflow: hidden; height: 300px; } @@ -198,14 +227,19 @@ } #eventImagePanel { + display: none; position: absolute; + top: 0; + left: 0; z-index: 10; + width: 100%; } #eventImageFrame { border: 2px solid gray; background-color: white; padding: 4px; + display: inline-block; } #eventImage { @@ -215,6 +249,14 @@ margin-top: 2px; } +#eventImageBar::after { + visibility: hidden; + display: block; + content: ""; + clear: both; + height: 0; +} + #eventImageStats { float: left; } @@ -230,6 +272,7 @@ #eventImageNav { position: relative; + margin: 0 0 4px 0; } #eventImageNav input { @@ -238,20 +281,20 @@ } #thumbsSliderPanel { - width: 400px; - margin: 4px auto 0; - background: #888888; - padding: 1px; + width: 80%; + margin: 0px auto 4px auto; } #thumbsSlider { - width: 400px; - height: 10px; - background: #dddddd; + width: 100%; + height: 1.25em; + position: relative; + top: -1.25em; + margin: 0 0 -1.25em 0; } #thumbsKnob { - width: 8px; - height: 10px; - background-color: #444444; + width: 1em; + height: 100%; + background-color: #999999; } diff --git a/web/skins/classic/css/classic/views/frame.css b/web/skins/classic/css/classic/views/frame.css index 85c8cd11c..c9cb1846c 100644 --- a/web/skins/classic/css/classic/views/frame.css +++ b/web/skins/classic/css/classic/views/frame.css @@ -1,33 +1,16 @@ #scaleControl { float: right; } + #controls { width: 80%; text-align: center; margin: 0 auto; + display: flex; + justify-content: space-between; } #controls a { width: 40px; margin-left: -20px; } - -#firstLink { - position: absolute; - left: 13%; -} - -#prevLink { - position: absolute; - left: 37%; -} - -#nextLink { - position: absolute; - left: 63%; -} - -#lastLink { - position: absolute; - left: 87%; -} diff --git a/web/skins/classic/css/dark/views/event.css b/web/skins/classic/css/dark/views/event.css index 13ac0cc0b..d05e1def8 100644 --- a/web/skins/classic/css/dark/views/event.css +++ b/web/skins/classic/css/dark/views/event.css @@ -1,3 +1,39 @@ +#content .vjsMessage { + width: 100%; + position: absolute; + left: 0; + z-index: 10; + margin: 0; + font-size: 200%; + color: white; + background-color: black; + display: inline-block; +} + +.alarmCue { + background-color: #222222; + height: 1.25em; + text-align: left; + margin: 0 auto 0 auto; + border-radius: 0 0 .3em .3em; +} + +.alarmCue span { + background-color:red; + height: 100%; + display: inline-block; + border-radius: 0; +} + +span.noneCue { + background: none; +} + +#eventVideo { + display: inline-block; + position: relative; +} + #dataBar { width: 100%; margin: 2px auto; @@ -6,6 +42,7 @@ #dataBar #dataTable { width: 100%; + table-layout: fixed; } #dataBar #dataTable td { @@ -66,6 +103,8 @@ } #imageFeed { + display: inline-block; + position: relative; text-align: center; } @@ -130,39 +169,30 @@ #progressBar { position: relative; - border: 1px solid #666666; - height: 15px; - margin: 0 auto; + top: -1.25em; + height: 1.25em; + margin: 0 auto -1.25em auto; } #progressBar .progressBox { - position: absolute; - top: 0px; - left: 0px; - height: 15px; - background: #eeeeee; - border-left: 1px solid #999999; -} - -#progressBar .complete { - background: #aaaaaa; + transition: width .1s; + height: 100%; + background: rgba(170, 170, 170, .7); + border-radius: 0 0 .3em .3em; } #eventStills { - width: 100%; position: relative; } #eventThumbsPanel { position: relative; - width: 100%; margin: 4px auto; z-index: 1; } #eventThumbs { margin: 0 auto; - width: 100%; overflow: hidden; height: 300px; } @@ -181,14 +211,19 @@ } #eventImagePanel { + display: none; position: absolute; + top: 0; + left: 0; z-index: 10; + width: 100%; } #eventImageFrame { border: 2px solid gray; background-color: white; padding: 4px; + display: inline-block; } #eventImage { @@ -198,6 +233,14 @@ margin-top: 2px; } +#eventImageBar::after { + visibility: hidden; + display: block; + content: ""; + clear: both; + height: 0; +} + #eventImageStats { float: left; } @@ -213,6 +256,7 @@ #eventImageNav { position: relative; + margin: 0 0 4px 0; } #eventImageNav input { @@ -222,19 +266,25 @@ #thumbsSliderPanel { width: 400px; - margin: 4px auto 0; - background: #888888; - padding: 1px; + width: 80%; + margin: 0px auto 4px auto; } #thumbsSlider { - width: 400px; - height: 10px; - background: #dddddd; + width: 100%; + height: 1.25em; + position: relative; + top: -1.25em; + margin: 0 0 -1.25em 0; +} + +#eventVideo { + display: inline-block; + position: relative; } #thumbsKnob { - width: 8px; - height: 10px; - background-color: #444444; + width: 1em; + height: 100%; + background-color: #999999; } diff --git a/web/skins/classic/css/dark/views/frame.css b/web/skins/classic/css/dark/views/frame.css index 85c8cd11c..c9cb1846c 100644 --- a/web/skins/classic/css/dark/views/frame.css +++ b/web/skins/classic/css/dark/views/frame.css @@ -1,33 +1,16 @@ #scaleControl { float: right; } + #controls { width: 80%; text-align: center; margin: 0 auto; + display: flex; + justify-content: space-between; } #controls a { width: 40px; margin-left: -20px; } - -#firstLink { - position: absolute; - left: 13%; -} - -#prevLink { - position: absolute; - left: 37%; -} - -#nextLink { - position: absolute; - left: 63%; -} - -#lastLink { - position: absolute; - left: 87%; -} diff --git a/web/skins/classic/css/flat/views/event.css b/web/skins/classic/css/flat/views/event.css index 5128b9ad4..1587ee211 100644 --- a/web/skins/classic/css/flat/views/event.css +++ b/web/skins/classic/css/flat/views/event.css @@ -1,3 +1,34 @@ +#content .vjsMessage { + width: 100%; + position: absolute; + left: 0; + z-index: 10; + margin: 0; + font-size: 200%; + color: white; + background-color: black; + display: inline-block; +} + +.alarmCue { + background-color: #222222; + height: 1.25em; + text-align: left; + margin: 0 auto 0 auto; + border-radius: 0 0 .3em .3em; +} + +.alarmCue span { + background-color:red; + height: 100%; + display: inline-block; + border-radius: 0; +} + +span.noneCue { + background: none; +} + #dataBar { width: 100%; margin: 2px auto; @@ -6,6 +37,7 @@ #dataBar #dataTable { width: 100%; + table-layout: fixed; } #dataBar #dataTable td { @@ -64,7 +96,10 @@ clear: both; visibility: hidden; } + #imageFeed { + display: inline-block; + position: relative; text-align: center; } @@ -135,39 +170,30 @@ #progressBar { position: relative; - border: 1px solid #666666; - height: 15px; - margin: 0 auto; + top: -1.25em; + height: 1.25em; + margin: 0 auto -1.25em auto; } #progressBar .progressBox { - position: absolute; - top: 0px; - left: 0px; - height: 15px; - background: #eeeeee; - border-left: 1px solid #999999; -} - -#progressBar .complete { - background: #aaaaaa; + transition: width .1s; + height: 100%; + background: rgba(170, 170, 170, .7); + border-radius: 0 0 .3em .3em; } #eventStills { - width: 100%; position: relative; } #eventThumbsPanel { position: relative; - width: 100%; - margin: 4px auto; + margin: 0; z-index: 1; } #eventThumbs { margin: 0 auto; - width: 100%; overflow: hidden; height: 300px; } @@ -186,14 +212,19 @@ } #eventImagePanel { + display: none; position: absolute; + top: 0; + left: 0; z-index: 10; + width: 100%; } #eventImageFrame { border: 2px solid gray; background-color: white; padding: 4px; + display: inline-block; } #eventImage { @@ -216,8 +247,17 @@ float: right; } +#eventImageBar::after { + visibility: hidden; + display: block; + content: ""; + clear: both; + height: 0; +} + #eventImageNav { position: relative; + margin: 0 0 4px 0; } #eventImageNav input { @@ -226,24 +266,25 @@ } #thumbsSliderPanel { - width: 400px; - margin: 4px auto 0; - background: #888888; - padding: 1px; + width: 80%; + margin: 0px auto 4px auto; } #thumbsSlider { - width: 400px; - height: 10px; - background: #dddddd; + width: 100%; + height: 1.25em; + position: relative; + top: -1.25em; + margin: 0 0 -1.25em 0; } #thumbsKnob { - width: 8px; - height: 10px; - background-color: #444444; + width: 1em; + height: 100%; + background-color: #999999; } #eventVideo { + display: inline-block; position: relative; } @@ -274,10 +315,6 @@ ); } -#eventVideo:hover #video-controls { - opacity: .9; -} - button { background: rgba(0,0,0,.5); border: 0; diff --git a/web/skins/classic/css/flat/views/frame.css b/web/skins/classic/css/flat/views/frame.css index 9e3e94da1..c9cb1846c 100644 --- a/web/skins/classic/css/flat/views/frame.css +++ b/web/skins/classic/css/flat/views/frame.css @@ -6,29 +6,11 @@ width: 80%; text-align: center; margin: 0 auto; + display: flex; + justify-content: space-between; } #controls a { width: 40px; margin-left: -20px; } - -#firstLink { - position: absolute; - left: 13%; -} - -#prevLink { - position: absolute; - left: 37%; -} - -#nextLink { - position: absolute; - left: 63%; -} - -#lastLink { - position: absolute; - left: 87%; -} diff --git a/web/skins/classic/includes/config.php b/web/skins/classic/includes/config.php index 02bd04771..8f800fd83 100644 --- a/web/skins/classic/includes/config.php +++ b/web/skins/classic/includes/config.php @@ -31,6 +31,7 @@ $rates = array( ); $scales = array( + "auto" => translate("Scale to Fit"), "400" => "4x", "300" => "3x", "200" => "2x", @@ -43,6 +44,8 @@ $scales = array( "12.5" => "1/8x", ); +if (isset($_REQUEST['view']) && ($_REQUEST['view'] == 'montage')) unset($scales['auto']); //Remove auto if we aren't using event view + $bwArray = array( "high" => translate('High'), "medium" => translate('Medium'), diff --git a/web/skins/classic/includes/functions.php b/web/skins/classic/includes/functions.php index 74fde203f..78820758c 100644 --- a/web/skins/classic/includes/functions.php +++ b/web/skins/classic/includes/functions.php @@ -92,6 +92,7 @@ var $j = jQuery.noConflict(); + diff --git a/web/skins/classic/js/skin.js b/web/skins/classic/js/skin.js index 29b0c4e2e..a06305623 100644 --- a/web/skins/classic/js/skin.js +++ b/web/skins/classic/js/skin.js @@ -262,6 +262,17 @@ function convertLabelFormat(LabelFormat, monitorName){ } function addVideoTimingTrack(video, LabelFormat, monitorName, duration, startTime){ +//This is a hacky way to handle changing the texttrack. If we ever upgrade vjs in a revamp replace this. Old method preserved because it's the right way. + let cues = vid.textTracks()[0].cues(); + let labelFormat = convertLabelFormat(LabelFormat, monitorName); + startTime = moment(startTime); + + for (let i = 0; i <= duration; i++) { + cues[i] = {id: i, index: i, startTime: i, Ca: i+1, text: startTime.format(labelFormat)}; + startTime.add(1, 's'); + } +} +/* var labelFormat = convertLabelFormat(LabelFormat, monitorName); var webvttformat = 'HH:mm:ss.SSS', webvttdata="WEBVTT\n\n"; @@ -283,3 +294,37 @@ function addVideoTimingTrack(video, LabelFormat, monitorName, duration, startTim track.src = 'data:plain/text;charset=utf-8,'+encodeURIComponent(webvttdata); video.appendChild(track); } +*/ + +var resizeTimer; + +function endOfResize(e) { + clearTimeout(resizeTimer); + resizeTimer = setTimeout(changeScale, 250); +} + +function scaleToFit (baseWidth, baseHeight, scaleEl, bottomEl) { + $j(window).on('resize', endOfResize) //set delayed scaling when Scale to Fit is selected + let ratio = baseWidth / baseHeight; + let container = $j('#content'); + let viewPort = $j(window); +// jquery does not provide a bottom offet, and offset dows not include margins. outerHeight true minus false gives total vertical margins. + let bottomLoc = bottomEl.offset().top + (bottomEl.outerHeight(true) - bottomEl.outerHeight()) + bottomEl.outerHeight(true); + let newHeight = viewPort.height() - (bottomLoc - scaleEl.outerHeight(true)) + let newWidth = ratio * newHeight; + if (newWidth > container.innerWidth()) { + newWidth = container.innerWidth(); + newHeight = newWidth / ratio; + } + let autoScale = Math.round(newWidth / baseWidth * SCALE_BASE); + let scales = $j('#scale option').map(function() {return parseInt($j(this).val());}).get(); + scales.shift(); + let closest; + $j(scales).each(function () { //Set zms scale to nearest regular scale. Zoom does not like arbitrary scale values. + if (closest == null || Math.abs(this - autoScale) < Math.abs(closest - autoScale)) { + closest = this.valueOf(); + } + }); + autoScale = closest; + return {width: Math.floor(newWidth), height: Math.floor(newHeight), autoScale: autoScale}; +} diff --git a/web/skins/classic/js/skin.js.php b/web/skins/classic/js/skin.js.php index 2f49df239..ff9f4c152 100644 --- a/web/skins/classic/js/skin.js.php +++ b/web/skins/classic/js/skin.js.php @@ -39,4 +39,4 @@ var refreshParent = ; var focusWindow = ; -var imagePrefix = ""; +var imagePrefix = ""; diff --git a/web/skins/classic/js/video-js-skin.css b/web/skins/classic/js/video-js-skin.css new file mode 100644 index 000000000..71ee696bf --- /dev/null +++ b/web/skins/classic/js/video-js-skin.css @@ -0,0 +1,65 @@ +.vjs-tech { + pointer-events: none; + transition: transform .25s; +} + +.vjs-captions-button { + display: none; +} + +.vjs-tt-cue { + margin-bottom: .75em; +} + +.vjs-menu { + z-index: 5; +} + +.vjs-default-skin .vjs-playback-rate.vjs-menu-button .vjs-menu .vjs-menu-content { + width: 5em; +} + +.vjs-default-skin.vjs-user-inactive:hover .vjs-progress-control { + font-size: .3em; +} + +.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar { + visibility: visible; + opacity: 1; + bottom: -2em; + -webkit-transition: all .2s; + -moz-transition: all .2s; + -o-transition: all .2s; + transition: all .2s +} + +.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control, +.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-time-divider { + display: none; +} + +.vjs-default-skin .vjs-progress-holder .vjs-play-progress, .vjs-default-skin .vjs-progress-holder .vjs-load-progress { + height: 1em; +} + +.vjs-progress-holder.vjs-slider { + background-color: transparent; + z-index: 1; +} + +.vjs-progress-control.vjs-control { + background-color: rgba(7, 20, 30, 0.8); + height: 1.3em; + top: -1.3em; + display: block !important; +} + +.vjs-control div.alarmCue { + position: relative; + top: -1.3em; + background: none; +} + +.vjs-control .alarmCue { + height: 1.3em; +} diff --git a/web/skins/classic/views/event.php b/web/skins/classic/views/event.php index 45142246e..07759ec4f 100644 --- a/web/skins/classic/views/event.php +++ b/web/skins/classic/views/event.php @@ -43,6 +43,8 @@ else if ( isset( $_REQUEST['scale'] ) ) { $scale = validInt($_REQUEST['scale']); +} else if ( isset( $_COOKIE['zmEventScaleAuto'] ) ) { //If we're using scale to fit use it on all monitors + $scale = 'auto'; } else if ( isset( $_COOKIE['zmEventScale'.$Event->MonitorId()] ) ) { $scale = $_COOKIE['zmEventScale'.$Event->MonitorId()]; } else { @@ -61,6 +63,7 @@ if ( isset( $_REQUEST['streamMode'] ) ) else $streamMode = 'video'; +$replayMode = ''; if ( isset( $_REQUEST['replayMode'] ) ) $replayMode = validHtmlStr($_REQUEST['replayMode']); if ( isset( $_COOKIE['replayMode']) && preg_match('#^[a-z]+$#', $_COOKIE['replayMode']) ) @@ -84,10 +87,6 @@ parseSort(); parseFilter( $_REQUEST['filter'] ); $filterQuery = $_REQUEST['filter']['query']; -$panelSections = 40; -$panelSectionWidth = (int)ceil(reScale($Event->Width(),$scale)/$panelSections); -$panelWidth = ($panelSections*$panelSectionWidth-1); - $connkey = generateConnKey(); $focusWindow = true; @@ -126,24 +125,25 @@ if ( canEdit( 'Events' ) ) { ?>
- - -Archived == 1 ? ' class="hidden"' : '' ?>> +
Archived == 0 ? ' class="hidden"' : '' ?>>
+DefaultVideo() ) { ?> - +?> +
+ +
+DefaultVideo() ) { +?> + + +
DefaultVideo ?> -
-SaveJPEGs() & 3 ) { // Analysis or Jpegs -?> -
class="hidden">
- -
@@ -151,23 +151,17 @@ if ( $Event->SaveJPEGs() & 3 ) { // Analysis or Jpegs if ( $Event->DefaultVideo() ) { ?>
-
- - +
-
DefaultVideo() ) { ?>class="hidden" > +DefaultVideo()) { ?> +
getStreamSrc( array( 'mode'=>'mpeg', 'scale'=>$scale, 'rate'=>$rate, 'bitrate'=>ZM_WEB_VIDEO_BITRATE, 'maxfps'=>ZM_WEB_VIDEO_MAXFPS, 'format'=>ZM_MPEG_REPLAY_FORMAT, 'replay'=>$replayMode ) ); @@ -181,34 +175,30 @@ if ( ZM_WEB_STREAM_METHOD == 'mpeg' && ZM_MPEG_LIVE_FORMAT ) { } } // end if stream method ?> -
+
+
+
+
+
+

- + - - + +

- :   - : x - : s - : x + : Replay + : x + : 0s + : 1x
- - - -SaveJPEGs() & 3) { // frames or analysis -?> + + diff --git a/web/skins/classic/views/frame.php b/web/skins/classic/views/frame.php index 4d526b683..2e6bfb7b8 100644 --- a/web/skins/classic/views/frame.php +++ b/web/skins/classic/views/frame.php @@ -51,7 +51,7 @@ $lastFid = $maxFid; $alarmFrame = $Frame->Type()=='Alarm'; if ( isset( $_REQUEST['scale'] ) ) { - $scale = validInt($_REQUEST['scale']); + $scale = $_REQUEST['scale']; } else if ( isset( $_COOKIE['zmWatchScale'.$Monitor->Id()] ) ) { $scale = $_COOKIE['zmWatchScale'.$Monitor->Id()]; } else if ( isset( $_COOKIE['zmWatchScale'] ) ) { diff --git a/web/skins/classic/views/js/event.js b/web/skins/classic/views/js/event.js index 25f8ae1dc..ceb7012ec 100644 --- a/web/skins/classic/views/js/event.js +++ b/web/skins/classic/views/js/event.js @@ -1,31 +1,179 @@ var vid = null; +function vjsReplay() { + let endTime = (Date.parse(eventData.EndTime)).getTime(); + switch(replayMode.value) { + case 'none': + break; + case 'single': + player.play(); + break; + case 'all': + if (nextEventId == 0) { + let overLaid = $j("#videoobj"); + overLaid.append('

No more events

'); + } else { + let nextStartTime = nextEventStartTime.getTime(); //nextEventStartTime.getTime() is a mootools workaround, highjacks Date.parse + if (nextStartTime <= endTime) { + streamNext( true ); + return; + } + let overLaid = $j("#videoobj"); + vid.pause(); + overLaid.append('

'); + let gapDuration = (new Date().getTime()) + (nextStartTime - endTime); + let messageP = $j(".vjsMessage"); + let x = setInterval(function() { + let now = new Date().getTime(); + let remainder = new Date(Math.round(gapDuration - now)).toISOString().substr(11,8); + messageP.html(remainder + ' to next event.'); + if (remainder < 0) { + clearInterval(x); + streamNext( true ); + } + }, 1000); + } + break; + case 'gapless': + streamNext( true ); + break; + } +} + +$j.ajaxSetup ({timeout: AJAX_TIMEOUT }); //sets timeout for all getJSON. + +var cueFrames = null; //make cueFrames availaible even if we don't send another ajax query + +function initialAlarmCues (eventId) { + $j.getJSON(thisUrl + '?view=request&request=status&entity=frames&id=' + eventId, setAlarmCues); //get frames data for alarmCues and inserts into html +} + +function setAlarmCues (data) { + cueFrames = data.frames; + alarmSpans = renderAlarmCues(vid ? $j("#videoobj") : $j("#evtStream"));//use videojs width or zms width + $j(".alarmCue").html(alarmSpans); +} + +function renderAlarmCues (containerEl) { + if (cueFrames) { + var cueRatio = containerEl.width() / (cueFrames[cueFrames.length - 1].Delta * 100); + var minAlarm = Math.ceil(1/cueRatio); + var spanTimeStart = 0; + var spanTimeEnd = 0; + var alarmed = 0; + var alarmHtml = ""; + var pixSkew = 0; + var skip = 0; + for (let i = 0; i < cueFrames.length; i++) { + skip = 0; + frame = cueFrames[i]; + if (frame.Type == "Alarm" && alarmed == 0) { //From nothing to alarm. End nothing and start alarm. + alarmed = 1; + if (frame.Delta == 0) continue; //If event starts with an alarm or too few for a nonespan + spanTimeEnd = frame.Delta * 100; + spanTime = spanTimeEnd - spanTimeStart; + let pix = cueRatio * spanTime; + pixSkew += pix - Math.round(pix);//average out the rounding errors. + pix = Math.round(pix); + if ((pixSkew > 1 || pixSkew < -1) && pix + Math.round(pixSkew) > 0) { //add skew if it's a pixel and won't zero out span. + pix += Math.round(pixSkew); + pixSkew = pixSkew - Math.round(pixSkew); + } + alarmHtml += ''; + spanTimeStart = spanTimeEnd; + } else if (frame.Type !== "Alarm" && alarmed == 1) { //from alarm to nothing. End alarm and start nothing. + futNone = 0; + indexPlus = i+1; + if (((frame.Delta * 100) - spanTimeStart) < minAlarm && indexPlus < cueFrames.length) continue; //alarm is too short and there is more event + while (futNone < minAlarm) { //check ahead to see if there's enough for a nonespan + if (indexPlus >= cueFrames.length) break; //check if end of event. + futNone = (cueFrames[indexPlus].Delta *100) - (frame.Delta *100); + if (cueFrames[indexPlus].Type == "Alarm") { + i = --indexPlus; + skip = 1; + break; + } + indexPlus++; + } + if (skip == 1) continue; //javascript doesn't support continue 2; + spanTimeEnd = frame.Delta *100; + spanTime = spanTimeEnd - spanTimeStart; + alarmed = 0; + pix = cueRatio * spanTime; + pixSkew += pix - Math.round(pix); + pix = Math.round(pix); + if ((pixSkew > 1 || pixSkew < -1) && pix + Math.round(pixSkew) > 0) { + pix += Math.round(pixSkew); + pixSkew = pixSkew - Math.round(pixSkew); + } + alarmHtml += ''; + spanTimeStart = spanTimeEnd; + } else if (frame.Type == "Alarm" && alarmed == 1 && i + 1 >= cueFrames.length) { //event ends on an alarm + spanTimeEnd = frame.Delta * 100; + spanTime = spanTimeEnd - spanTimeStart; + alarmed = 0; + pix = Math.round(cueRatio * spanTime); + if (pixSkew >= .5 || pixSkew <= -.5) pix += Math.round(pixSkew); + alarmHtml += ''; + } + } + return alarmHtml; + } +} + function setButtonState( element, butClass ) { if ( element ) { element.className = butClass; - element.disabled = (butClass != 'inactive'); + if (butClass == 'unavail' || (butClass == 'active' && (element.id == 'pauseBtn' || element.id == 'playBtn'))) { + element.disabled = true; + } else { + element.disabled = false; + } } else { console.log("Element was null in setButtonState"); } } function changeScale() { - var scale = $('scale').get('value'); - var baseWidth = eventData.Width; - var baseHeight = eventData.Height; - var newWidth = ( baseWidth * scale ) / SCALE_BASE; - var newHeight = ( baseHeight * scale ) / SCALE_BASE; - - if ( vid ) { - // Using video.js - vid.width = newWidth; - vid.height = newHeight; - } else { - streamScale( scale ); - var streamImg = document.getElementById('evtStream'); - streamImg.style.width = newWidth + "px"; - streamImg.style.height = newHeight + "px"; - Cookie.write( 'zmEventScale'+eventData.MonitorId, scale, { duration: 10*365 } ); + let scale = $j('#scale').val(); + let newWidth; + let newHeight; + let autoScale; + let eventViewer; + let alarmCue = $j('div.alarmCue'); + let bottomEl = streamMode == 'stills' ? $j('#eventImageNav') : $j('#replayStatus'); + if (streamMode == 'stills') { + eventViewer = $j('#eventThumbs'); + } else { + eventViewer = $j(vid ? '#videoobj' : '#evtStream'); + } + if (scale == "auto") { + let newSize = scaleToFit(eventData.Width, eventData.Height, eventViewer, bottomEl); + newWidth = newSize.width; + newHeight = newSize.height; + autoScale = newSize.autoScale; + } else { + $j(window).off('resize', endOfResize); //remove resize handler when Scale to Fit is not active + newWidth = eventData.Width * scale / SCALE_BASE; + newHeight = eventData.Height * scale / SCALE_BASE; + } + if (!(streamMode == 'stills')) eventViewer.width(newWidth); //stills handles its own width + eventViewer.height(newHeight); + if ( !vid ) { // zms needs extra sizing + streamScale(scale == "auto" ? autoScale : scale); + drawProgressBar(); + } + if (streamMode == 'stills') { + slider.autosize(); + alarmCue.html(renderAlarmCues($j('#thumbsSliderPanel'))); + } else { + alarmCue.html(renderAlarmCues(eventViewer));//just re-render alarmCues. skip ajax call + } + if (scale == "auto") { + Cookie.write('zmEventScaleAuto', 'auto', {duration: 10*365}); + }else{ + Cookie.write('zmEventScale'+eventData.MonitorId, scale, {duration: 10*365}); + Cookie.dispose('zmEventScaleAuto'); } } @@ -42,33 +190,38 @@ var streamCmdTimer = null; var streamStatus = null; var lastEventId = 0; +var zmsBroke = false; //Use alternate navigation if zms has crashed function getCmdResponse( respObj, respText ) { - if ( checkStreamForErrors( "getCmdResponse", respObj ) ) + if ( checkStreamForErrors( "getCmdResponse", respObj ) ) { + console.log('Got an error from getCmdResponse'); + zmsBroke = true; return; + } + + zmsBroke = false; if ( streamCmdTimer ) streamCmdTimer = clearTimeout( streamCmdTimer ); streamStatus = respObj.status; + if (streamStatus.progress >= Math.round(parseFloat(eventData.Length))) streamStatus.progress = parseFloat(eventData.Length); //Limit progress to reality var eventId = streamStatus.event; - if ( eventId != lastEventId ) { + if ( eventId != lastEventId && lastEventId != 0) { //Doesn't run on first load, prevents a double hit on event and nearEvents ajax eventQuery( eventId ); + initialAlarmCues(eventId); lastEventId = eventId; } + if (lastEventId == 0) lastEventId = eventId; //Only fires on first load. if ( streamStatus.paused == true ) { - $('modeValue').set( 'text', 'Paused' ); - $('rate').addClass( 'hidden' ); streamPause( ); } else { - $('modeValue').set( 'text', "Replay" ); - $('rateValue').set( 'text', streamStatus.rate ); - $('rate').removeClass( 'hidden' ); + $j('#rateValue').html(streamStatus.rate); streamPlay( ); } - $('progressValue').set( 'text', secsToTime( parseInt(streamStatus.progress) ) ); - $('zoomValue').set( 'text', streamStatus.zoom ); + $j('#progressValue').html(secsToTime(parseInt(streamStatus.progress))); + $j('#zoomValue').html(streamStatus.zoom); if ( streamStatus.zoom == "1.0" ) setButtonState( $('zoomOutBtn'), 'unavail' ); else @@ -83,17 +236,29 @@ function getCmdResponse( respObj, respText ) { streamImg.src = streamImg.src.replace( /auth=\w+/i, 'auth='+streamStatus.auth ); } // end if haev a new auth hash - streamCmdTimer = streamQuery.delay( streamTimeout ); + streamCmdTimer = streamQuery.delay( streamTimeout ); //Timeout is refresh rate for progressBox and time display } var streamReq = new Request.JSON( { url: thisUrl, method: 'get', timeout: AJAX_TIMEOUT, link: 'chain', onSuccess: getCmdResponse } ); -function pauseClicked( ) { - streamReq.send( streamParms+"&command="+CMD_PAUSE ); +function pauseClicked() { + if (vid) { + vid.pause(); + } else { + streamReq.send( streamParms+"&command="+CMD_PAUSE ); + streamPause(); + } +} + +function vjsPause () { + stopFastRev(); + streamPause(); } // Called when stream becomes paused, just updates the button status function streamPause( ) { + $j('#modeValue').html('Paused'); + $j('#rateValue').html('0'); setButtonState( $('pauseBtn'), 'active' ); setButtonState( $('playBtn'), 'inactive' ); setButtonState( $('fastFwdBtn'), 'unavail' ); @@ -103,13 +268,28 @@ function streamPause( ) { } function playClicked( ) { - streamReq.send( streamParms+"&command="+CMD_PLAY ); + if (vid) { + if (vid.paused()) { + vid.play(); + } else { + vjsPlay(); //handles fast forward and rewind + } + } else { + streamReq.send( streamParms+"&command="+CMD_PLAY ); + streamPlay(); + } +} + +function vjsPlay () { //catches if we change mode programatically + stopFastRev(); + $j('#rateValue').html(vid.playbackRate()); + streamPlay(); } function streamPlay( ) { + $j('#modeValue').html('Replay'); setButtonState( $('pauseBtn'), 'inactive' ); - if (streamStatus) - setButtonState( $('playBtn'), streamStatus.rate==1?'active':'inactive' ); + setButtonState( $('playBtn'), 'active' ); setButtonState( $('fastFwdBtn'), 'inactive' ); setButtonState( $('slowFwdBtn'), 'unavail' ); setButtonState( $('slowRevBtn'), 'unavail' ); @@ -119,35 +299,44 @@ function streamPlay( ) { function streamFastFwd( action ) { setButtonState( $('pauseBtn'), 'inactive' ); setButtonState( $('playBtn'), 'inactive' ); - setButtonState( $('fastFwdBtn'), 'inactive' ); + setButtonState( $('fastFwdBtn'), 'active' ); setButtonState( $('slowFwdBtn'), 'unavail' ); setButtonState( $('slowRevBtn'), 'unavail' ); setButtonState( $('fastRevBtn'), 'inactive' ); - streamReq.send( streamParms+"&command="+CMD_FASTFWD ); + if (vid) { + if (revSpeed != .5) stopFastRev(); + vid.playbackRate(rates[rates.indexOf(vid.playbackRate()*100)-1]/100); + if (rates.indexOf(vid.playbackRate()*100)-1 == -1) setButtonState($('fastFwdBtn'), 'unavail'); + $j('#rateValue').html(vid.playbackRate()); + } else { + streamReq.send( streamParms+"&command="+CMD_FASTFWD ); + } } +var spf = Math.round((eventData.Length / eventData.Frames)*1000000 )/1000000;//Seconds per frame for videojs frame by frame. +var intervalRewind; +var revSpeed = .5; + function streamSlowFwd( action ) { - setButtonState( $('pauseBtn'), 'inactive' ); - setButtonState( $('playBtn'), 'inactive' ); - setButtonState( $('fastFwdBtn'), 'unavail' ); - setButtonState( $('slowFwdBtn'), 'active' ); - setButtonState( $('slowRevBtn'), 'inactive' ); - setButtonState( $('fastRevBtn'), 'unavail' ); - streamReq.send( streamParms+"&command="+CMD_SLOWFWD ); - setButtonState( $('pauseBtn'), 'inactive' ); - setButtonState( $('slowFwdBtn'), 'inactive' ); + if (vid) { + vid.currentTime(vid.currentTime() + spf); + } else { + streamReq.send( streamParms+"&command="+CMD_SLOWFWD ); + } } function streamSlowRev( action ) { - setButtonState( $('pauseBtn'), 'inactive' ); - setButtonState( $('playBtn'), 'inactive' ); - setButtonState( $('fastFwdBtn'), 'unavail' ); - setButtonState( $('slowFwdBtn'), 'inactive' ); - setButtonState( $('slowRevBtn'), 'active' ); - setButtonState( $('fastRevBtn'), 'unavail' ); - streamReq.send( streamParms+"&command="+CMD_SLOWREV ); - setButtonState( $('pauseBtn'), 'inactive' ); - setButtonState( $('slowRevBtn'), 'inactive' ); + if (vid) { + vid.currentTime(vid.currentTime() - spf); + } else { + streamReq.send( streamParms+"&command="+CMD_SLOWREV ); + } +} + +function stopFastRev () { + clearInterval(intervalRewind); + vid.playbackRate(1); + revSpeed = .5; } function streamFastRev( action ) { @@ -156,26 +345,121 @@ function streamFastRev( action ) { setButtonState( $('fastFwdBtn'), 'inactive' ); setButtonState( $('slowFwdBtn'), 'unavail' ); setButtonState( $('slowRevBtn'), 'unavail' ); - setButtonState( $('fastRevBtn'), 'inactive' ); - streamReq.send( streamParms+"&command="+CMD_FASTREV ); + setButtonState( $('fastRevBtn'), 'active' ); + if (vid) { //There is no reverse play with mp4. Set the speed to 0 and manualy set the time back. + revSpeed = rates[rates.indexOf(revSpeed*100)-1]/100; + if (rates.indexOf(revSpeed*100) == 0) { + setButtonState( $('fastRevBtn'), 'unavail' ); + } + clearInterval(intervalRewind); + $j('#rateValue').html(-revSpeed); + intervalRewind = setInterval(function() { + if (vid.currentTime() <= 0) { + clearInterval(intervalRewind); + vid.pause(); + } else { + vid.playbackRate(0); + vid.currentTime(vid.currentTime() - (revSpeed/2)); //Half of reverse speed because our interval is 500ms. + } + }, 500); //500ms is a compromise between smooth reverse and realistic performance + } else { + streamReq.send( streamParms+"&command="+CMD_FASTREV ); + } } -function streamPrev( action ) { - if ( action ) - streamReq.send( streamParms+"&command="+CMD_PREV ); +function streamPrev(action) { + if (action) { + $j(".vjsMessage").remove(); + if (vid && PrevEventDefVideoPath.indexOf("view_video") > 0) { + CurEventDefVideoPath = PrevEventDefVideoPath; + eventQuery(prevEventId); + } else if (zmsBroke || (vid && PrevEventDefVideoPath.indexOf("view_video") < 0) || $j("#vjsMessage").length || PrevEventDefVideoPath.indexOf("view_video") > 0) {//zms broke, leaving videojs, last event, moving to videojs + location.replace(thisUrl + '?view=event&eid=' + prevEventId + filterQuery + sortQuery); + } else { + streamReq.send(streamParms+"&command="+CMD_PREV); + streamPlay(); + } + } } -function streamNext( action ) { - if ( action ) - streamReq.send( streamParms+"&command="+CMD_NEXT ); +function streamNext(action) { + if (action) { + $j(".vjsMessage").remove();//This shouldn't happen + if (nextEventId == 0) { //handles deleting last event. + pauseClicked(); + let hideContainer = $j('#eventVideo'); + let hideStream = $j(vid ? "#videoobj" : "#evtStream").height() + (vid ? 0 :$j("#progressBar").height()); + hideContainer.prepend('

No more events

'); + if (vid == null) zmsBroke = true; + return; + } + if (vid && NextEventDefVideoPath.indexOf("view_video") > 0) { //on and staying with videojs + CurEventDefVideoPath = NextEventDefVideoPath; + eventQuery(nextEventId); + } else if (zmsBroke || (vid && NextEventDefVideoPath.indexOf("view_video") < 0) || NextEventDefVideoPath.indexOf("view_video") > 0) {//reload zms, leaving vjs, moving to vjs + location.replace(thisUrl + '?view=event&eid=' + nextEventId + filterQuery + sortQuery); + } else { + streamReq.send(streamParms+"&command="+CMD_NEXT); + streamPlay(); + } + } +} + +function vjsPanZoom (action, x, y) { //Pan and zoom with centering where the click occurs + let outer = $j('#videoobj'); + let video = outer.children().first(); + let zoom = parseFloat($j('#zoomValue').html()); + let zoomRate = .5; + let matrix = video.css('transform').split(','); + let currentPanX = parseFloat(matrix[4]); + let currentPanY = parseFloat(matrix[5]); + let xDist = outer.width()/2 - x //Click distance from center of view + let yDist = outer.height()/2 - y + if (action == 'zoomOut') { + zoom -= zoomRate; + if (x && y) { + x = (xDist + currentPanX)*((zoom-zoomRate)/zoom); // if ctrl-click Pan but use ratio of old zoom to new zoom for coords + y = (yDist + currentPanY)*((zoom-zoomRate)/zoom); + } else { + x = currentPanX*((zoom-zoomRate)/zoom); //Leave zoom centered where it was + y = currentPanY*((zoom-zoomRate)/zoom); + } + if (zoom <= 1) { + zoom = 1; + $j('#zoomOutBtn').attr('class', 'unavail').attr('disabled', 'disabled'); + } + $j('#zoomValue').html(zoom); + } else if (action == 'zoom') { + zoom += zoomRate; + x = (xDist + currentPanX)*(zoom/(zoom-zoomRate)); //Pan but use ratio of new zoom to old zoom for coords. Center on mouse click. + y = (yDist + currentPanY)*(zoom/(zoom-zoomRate)); + $j('#zoomOutBtn').attr('class', 'inactive').removeAttr('disabled'); + $j('#zoomValue').html(zoom); + } else if (action == 'pan') { + x = xDist + currentPanX; + y = yDist + currentPanY; + } + let limitX = ((zoom*outer.width()) - outer.width())/2; //Calculate outer bounds of video + let limitY = ((zoom*outer.height()) - outer.height())/2; + x = Math.min(Math.max((x),-limitX),limitX); //Limit pan to outer bounds of video + y = Math.min(Math.max((y),-limitY),limitY); + video.css('transform', 'matrix('+zoom+', 0, 0, '+zoom+', '+x+', '+y+')'); } function streamZoomIn( x, y ) { - streamReq.send( streamParms+"&command="+CMD_ZOOMIN+"&x="+x+"&y="+y ); + if (vid) { + vjsPanZoom('zoom', x, y); + } else { + streamReq.send( streamParms+"&command="+CMD_ZOOMIN+"&x="+x+"&y="+y ); + } } function streamZoomOut() { - streamReq.send( streamParms+"&command="+CMD_ZOOMOUT ); + if (vid) { + vjsPanZoom('zoomOut'); + } else { + streamReq.send( streamParms+"&command="+CMD_ZOOMOUT ); + } } function streamScale( scale ) { @@ -183,7 +467,11 @@ function streamScale( scale ) { } function streamPan( x, y ) { - streamReq.send( streamParms+"&command="+CMD_PAN+"&x="+x+"&y="+y ); + if (vid) { + vjsPanZoom('pan', x, y); + } else { + streamReq.send( streamParms+"&command="+CMD_PAN+"&x="+x+"&y="+y ); + } } function streamSeek( offset ) { @@ -196,6 +484,8 @@ function streamQuery() { var slider = null; var scroll = null; +var currEventId = null; +var CurEventDefVideoPath = null; function getEventResponse( respObj, respText ) { if ( checkStreamForErrors( "getEventResponse", respObj ) ) @@ -220,7 +510,7 @@ function getEventResponse( respObj, respText ) { $('dataFrames').set( 'text', eventData.Frames+"/"+eventData.AlarmFrames ); $('dataScore').set( 'text', eventData.TotScore+"/"+eventData.AvgScore+"/"+eventData.MaxScore ); $('eventName').setProperty( 'value', eventData.Name ); - + history.replaceState(null, null, '?view=event&eid=' + eventData.Id + filterQuery + sortQuery);//if popup removed, check if this allows forward if ( canEditEvents ) { if ( parseInt(eventData.Archived) ) { $('archiveEvent').addClass( 'hidden' ); @@ -232,7 +522,18 @@ function getEventResponse( respObj, respText ) { } //var eventImg = $('eventImage'); //eventImg.setStyles( { 'width': eventData.width, 'height': eventData.height } ); - drawProgressBar(); + if (vid && CurEventDefVideoPath) { + vid.src({type: 'video/mp4', src: CurEventDefVideoPath}); //Currently mp4 is all we use + initialAlarmCues(eventData.Id);//ajax and render, new event + addVideoTimingTrack(vid, LabelFormat, eventData.MonitorName, eventData.Length, eventData.StartTime); + CurEventDefVideoPath = null; + $j('#modeValue').html('Replay'); + $j('#zoomValue').html('1'); + $j('#rateValue').html('1'); + vjsPanZoom('zoomOut'); + } else { + drawProgressBar(); + } nearEventsQuery( eventData.Id ); } @@ -245,6 +546,8 @@ function eventQuery( eventId ) { var prevEventId = 0; var nextEventId = 0; +var prevEventStartTime = 0; +var nextEventStartTime = 0; var PrevEventDefVideoPath = ""; var NextEventDefVideoPath = ""; @@ -253,6 +556,8 @@ function getNearEventsResponse( respObj, respText ) { return; prevEventId = respObj.nearevents.PrevEventId; nextEventId = respObj.nearevents.NextEventId; + prevEventStartTime = Date.parse(respObj.nearevents.PrevEventStartTime); + nextEventStartTime = Date.parse(respObj.nearevents.NextEventStartTime); PrevEventDefVideoPath = respObj.nearevents.PrevEventDefVideoPath; NextEventDefVideoPath = respObj.nearevents.NextEventDefVideoPath; @@ -260,12 +565,14 @@ function getNearEventsResponse( respObj, respText ) { if ( prevEventBtn ) prevEventBtn.disabled = !prevEventId; var nextEventBtn = $('nextEventBtn'); if ( nextEventBtn ) nextEventBtn.disabled = !nextEventId; + $j('#prevBtn').prop('disabled', prevEventId == 0 ? true : false).attr('class', prevEventId == 0 ? 'unavail' : 'inactive'); + $j('#nextBtn').prop('disabled', nextEventId == 0 ? true : false).attr('class', nextEventId == 0 ? 'unavail' : 'inactive'); } var nearEventsReq = new Request.JSON( { url: thisUrl, method: 'get', timeout: AJAX_TIMEOUT, link: 'cancel', onSuccess: getNearEventsResponse } ); function nearEventsQuery( eventId ) { - var parms = "view=request&request=status&entity=nearevents&id="+eventId; + var parms = "view=request&request=status&entity=nearevents&id="+eventId+filterQuery+sortQuery; nearEventsReq.send( parms ); } @@ -277,7 +584,7 @@ function loadEventThumb( event, frame, loadImage ) { console.error( "No holder found for frame "+frame.FrameId ); return; } - var img = new Asset.image( imagePrefix+frame.Image.imagePath, + var img = new Asset.image( imagePrefix+frame.EventId+"&fid="+frame.FrameId, { 'onload': ( function( loadImage ) { thumbImg.setProperty( 'src', img.getProperty( 'src' ) ); @@ -293,29 +600,6 @@ function loadEventThumb( event, frame, loadImage ) { ); } -function updateStillsSizes( noDelay ) { - var containerDim = $('eventThumbs').getSize(); - - var containerWidth = containerDim.x; - var containerHeight = containerDim.y; - var popupWidth = parseInt($('eventImage').getStyle( 'width' )); - var popupHeight = parseInt($('eventImage').getStyle( 'height' )); - - var left = (containerWidth - popupWidth)/2; - if ( left < 0 ) left = 0; - var top = (containerHeight - popupHeight)/2; - if ( top < 0 ) top = 0; - if ( popupHeight == 0 && !noDelay ) { - // image not yet loaded lets give it another second - updateStillsSizes.pass( true ).delay( 50 ); - return; - } - $('eventImagePanel').setStyles( { - 'left': left, - 'top': top - } ); -} - function loadEventImage( event, frame ) { console.debug( "Loading "+event.Id+"/"+frame.FrameId ); var eventImg = $('eventImage'); @@ -329,14 +613,6 @@ function loadEventImage( event, frame ) { lastThumbImg.setOpacity( 1.0 ); } - eventImg.setProperties( { - 'class': frame.Type=='Alarm'?'alarm':'normal', - 'src': thumbImg.getProperty( 'src' ), - 'title': thumbImg.getProperty( 'title' ), - 'alt': thumbImg.getProperty( 'alt' ), - 'width': event.Width, - 'height': event.Height - } ); $('eventImageBar').setStyle( 'width', event.Width ); if ( frame.Type=='Alarm' ) $('eventImageStats').removeClass( 'hidden' ); @@ -347,11 +623,18 @@ function loadEventImage( event, frame ) { if ( eventImagePanel.getStyle( 'display' ) == 'none' ) { eventImagePanel.setOpacity( 0 ); - updateStillsSizes(); - eventImagePanel.setStyle( 'display', 'block' ); + eventImagePanel.setStyle( 'display', 'inline-block' ); new Fx.Tween( eventImagePanel, { duration: 500, transition: Fx.Transitions.Sine } ).start( 'opacity', 0, 1 ); } + eventImg.setProperties( { + 'class': frame.Type=='Alarm'?'alarm':'normal', + 'src': thumbImg.getProperty( 'src' ), + 'title': thumbImg.getProperty( 'title' ), + 'alt': thumbImg.getProperty( 'alt' ), + 'height': $j('#eventThumbs').height() - $j('#eventImageBar').outerHeight(true)-10 + } ); + $('eventImageNo').set( 'text', frame.FrameId ); $('prevImageBtn').disabled = (frame.FrameId==1); $('nextImageBtn').disabled = (frame.FrameId==event.Frames); @@ -392,13 +675,11 @@ function resetEventStills() { fid = 1; else if ( fid > eventData.Frames ) fid = eventData.Frames; - checkFrames( eventData.Id, fid ); + checkFrames( eventData.Id, fid, ($j('#eventImagePanel').css('display')=='none'?'':'true')); scroll.toElement( 'eventThumb'+fid ); } } ).set( 0 ); } - if ( $('eventThumbs').getStyle( 'height' ).match( /^\d+/ ) < (parseInt(eventData.Height)+80) ) - $('eventThumbs').setStyle( 'height', (parseInt(eventData.Height)+80)+'px' ); } function getFrameResponse( respObj, respText ) { @@ -548,6 +829,7 @@ function actQuery( action, parms ) { } function deleteEvent() { + pauseClicked(); //Provides visual feedback that your click happened. actQuery( 'delete' ); streamNext( true ); } @@ -577,21 +859,20 @@ function showEventFrames() { createPopup( '?view=frames&eid='+eventData.Id, 'zmFrames', 'frames' ); } -function showVideo() { +function showStream() { $('eventStills').addClass( 'hidden' ); - $('imageFeed').addClass('hidden'); $('eventVideo').removeClass( 'hidden' ); $('stillsEvent').removeClass( 'hidden' ); - $('videoEvent').addClass( 'hidden' ); + $('streamEvent').addClass( 'hidden' ); streamMode = 'video'; + if (scale == 'auto') changeScale(); } function showStills() { $('eventStills').removeClass( 'hidden' ); - $('imageFeed').removeClass('hidden'); - $('eventVideo').addClass( 'hidden' ); + $('eventVideo').addClass( 'hidden' ); if (vid && ( vid.paused != true ) ) { // Pause the video @@ -603,11 +884,11 @@ function showStills() { } $('stillsEvent').addClass( 'hidden' ); - $('videoEvent').removeClass( 'hidden' ); + $('streamEvent').removeClass( 'hidden' ); streamMode = 'stills'; - streamPause( true ); + pauseClicked(); if ( !scroll ) { scroll = new Fx.Scroll( 'eventThumbs', { wait: false, @@ -618,7 +899,7 @@ function showStills() { ); } resetEventStills(); - $(window).addEvent( 'resize', updateStillsSizes ); + if (scale == 'auto') changeScale(); } function showFrameStats() { @@ -630,184 +911,64 @@ function videoEvent() { createPopup( '?view=video&eid='+eventData.Id, 'zmVideo', 'video', eventData.Width, eventData.Height ); } - +// Called on each event load because each event can be a different width function drawProgressBar() { - var barWidth = 0; - $('progressBar').addClass( 'invisible' ); - var cells = $('progressBar').getElements( 'div' ); - var cellWidth = parseInt( eventData.Width/$$(cells).length ); - $$(cells).forEach( - function( cell, index ) { - if ( index == 0 ) - $(cell).setStyles( { 'left': barWidth, 'width': cellWidth, 'borderLeft': 0 } ); - else - $(cell).setStyles( { 'left': barWidth, 'width': cellWidth } ); - var offset = parseInt((index*eventData.Length)/$$(cells).length); - $(cell).setProperty( 'title', '+'+secsToTime(offset)+'s' ); - $(cell).removeEvent( 'click' ); - $(cell).addEvent( 'click', function() { streamSeek( offset ); } ); - barWidth += $(cell).getCoordinates().width; - } - ); - $('progressBar').setStyle( 'width', barWidth ); - $('progressBar').removeClass( 'invisible' ); + let barWidth = $j('#evtStream').width(); + $j('#progressBar').css( 'width', barWidth ); } +// Shows current stream progress. function updateProgressBar() { - if ( eventData && streamStatus ) { - var cells = $('progressBar').getElements( 'div' ); - var completeIndex = parseInt((($$(cells).length+1)*streamStatus.progress)/eventData.Length); - $$(cells).forEach( - function( cell, index ) { - if ( index < completeIndex ) { - if ( !$(cell).hasClass( 'complete' ) ) { - $(cell).addClass( 'complete' ); - } - } else { - if ( $(cell).hasClass( 'complete' ) ) { - $(cell).removeClass( 'complete' ); - } - } // end if - } // end function - ); - //$('progressBar').setStyle( 'width', barWidth ); - $('progressBar').removeClass( 'invisible' ); - } // end if eventData && streamStatus + if ( ! ( eventData && streamStatus ) ) { + return; + } // end if ! eventData && streamStatus + var curWidth = (streamStatus.progress / parseFloat(eventData.Length)) * 100; + $j("#progressBox").css('width', curWidth + '%'); } // end function updateProgressBar() +// Handles seeking when clicking on the progress bar. +function progressBarNav (){ + $j('#progressBar').click(function(e){ + var x = e.offsetX; + var seekTime = (x / $j('#progressBar').width()) * parseFloat(eventData.Length); + streamSeek (seekTime); + }); +} + function handleClick( event ) { var target = event.target; - var x = event.page.x - $(target).getLeft(); - var y = event.page.y - $(target).getTop(); + if (vid) { + if (target.id != 'videoobj') return; //ignore clicks on control bar + var x = event.offsetX; + var y = event.offsetY; + } else { + var x = event.page.x - $(target).getLeft(); + var y = event.page.y - $(target).getTop(); + } - if ( event.shift ) - streamPan( x, y ); - else - streamZoomIn( x, y ); -} - -function setupListener() { - - // Buttons - var playButton = document.getElementById("play-pause"); - var muteButton = document.getElementById("mute"); - var fullScreenButton = document.getElementById("full-screen"); - - // Sliders - var seekBar = document.getElementById("seekbar"); - var volumeBar = document.getElementById("volume-bar"); - - // Event listener for the play/pause button - playButton.addEventListener( "click", function() { - if (vid.paused == true) { - // Play the video - vid.play(); - - // Update the button text to 'Pause' - playButton.innerHTML = "Pause"; - } else { - // Pause the video - vid.pause(); - - // Update the button text to 'Play' - playButton.innerHTML = "Play"; - } - }); - - - // Event listener for the mute button - muteButton.addEventListener("click", function() { - if (vid.muted == false) { - // Mute the video - vid.muted = true; - - // Update the button text - muteButton.innerHTML = "Unmute"; - } else { - // Unmute the video - vid.muted = false; - - // Update the button text - muteButton.innerHTML = "Mute"; - } - }); - - - // Event listener for the full-screen button - fullScreenButton.addEventListener("click", function() { - if (vid.requestFullscreen) { - vid.requestFullscreen(); - } else if (vid.mozRequestFullScreen) { - vid.mozRequestFullScreen(); // Firefox - } else if (vid.webkitRequestFullscreen) { - vid.webkitRequestFullscreen(); // Chrome and Safari - } - }); - - - // Event listener for the seek bar - seekBar.addEventListener("change", function() { - // Calculate the new time - var time = vid.duration * (seekBar.value / 100); - - // Update the video time - vid.currentTime = time; - }); - - - // Update the seek bar as the video plays - vid.addEventListener("timeupdate", function() { - // Calculate the slider value - var value = (100 / vid.duration) * vid.currentTime; - - // Update the slider value - seekBar.value = value; - }); - - // Pause the video when the seek handle is being dragged - seekBar.addEventListener("mousedown", function() { - vid.pause(); - }); - - // Play the video when the seek handle is dropped - seekBar.addEventListener("mouseup", function() { - vid.play(); - }); - - // Event listener for the volume bar - volumeBar.addEventListener("change", function() { - // Update the video volume - vid.volume = volumeBar.value; - }); + if (event.shift || event.shiftKey) {//handle both jquery and mootools + streamPan(x, y); + } else if (vid && event.ctrlKey) { //allow zoom out by control click. useful in fullscreen + vjsPanZoom('zoomOut', x, y); + } else { + streamZoomIn(x, y); + } } function initPage() { //FIXME prevent blocking...not sure what is happening or best way to unblock - if ( $('videoobj') ) { - vid = videojs("videoobj"); - } - if ( vid ) { -/* - setupListener(); - vid.removeAttribute("controls"); - /* window.videoobj.oncanplay=null; - window.videoobj.currentTime=window.videoobj.currentTime-1; - window.videoobj.currentTime=window.videoobj.currentTime+1;//may not be symetrical of course - - vid.onstalled=function(){window.vid.currentTime=window.vid.currentTime-1;window.vid.currentTime=window.vid.currentTime+1;} - vid.onwaiting=function(){window.vid.currentTime=window.vid.currentTime-1;window.vid.currentTime=window.vid.currentTime+1;} - vid.onloadstart=function(){window.vid.currentTime=window.vid.currentTime-1;window.vid.currentTime=window.vid.currentTime+1;} - vid.onplay=function(){window.vid.currentTime=window.vid.currentTime-1;window.vid.currentTime=window.vid.currentTime+1;} - vid.onplaying=function(){window.vid.currentTime=window.vid.currentTime-1;window.vid.currentTime=window.vid.currentTime+1;} - //window.vid.hide();//does not help - var sources = window.videoobj.getElementsByTagName('source'); - sources[0].src=null; - window.videoobj.load(); - streamPlay(); */ + if ($j('#videoobj').length) { + vid = videojs('videoobj'); + addVideoTimingTrack(vid, LabelFormat, eventData.MonitorName, eventData.Length, eventData.StartTime); + $j('.vjs-progress-control').append('
');//add a place for videojs only on first load + vid.on('ended', vjsReplay); + vid.on('play', vjsPlay); + vid.on('pause', vjsPause); + vid.on('click', function(event){handleClick(event);}); + vid.on('timeupdate', function (){$j('#progressValue').html(secsToTime(Math.floor(vid.currentTime())))}); } else { + progressBarNav (); streamCmdTimer = streamQuery.delay( 250 ); - eventQuery.pass( eventData.Id ).delay( 500 ); - if ( canStreamNative ) { var streamImg = $('imageFeed').getElement('img'); if ( !streamImg ) @@ -815,6 +976,9 @@ function initPage() { $(streamImg).addEvent( 'click', function( event ) { handleClick( event ); } ); } } + nearEventsQuery(eventData.Id); + initialAlarmCues(eventData.Id); //call ajax+renderAlarmCues + if (scale == "auto") changeScale(); } // Kick everything off diff --git a/web/skins/classic/views/js/event.js.php b/web/skins/classic/views/js/event.js.php index f4a14f1fe..dbdc5c514 100644 --- a/web/skins/classic/views/js/event.js.php +++ b/web/skins/classic/views/js/event.js.php @@ -30,17 +30,25 @@ var eventData = { MonitorId: 'MonitorId() ?>', Width: 'Width() ?>', Height: 'Height() ?>', - Length: 'Length() ?>' + Length: 'Length() ?>', + StartTime: 'StartTime() ?>', + EndTime: 'EndTime() ?>', + Frames: 'Frames() ?>', + MonitorName: 'Name() ?>' }; -var filterQuery = ''; -var sortQuery = ''; +var filterQuery = ''; +var sortQuery = ''; + +var rates = ; +var scale = ""; +var LabelFormat = "LabelFormat())?>"; -var scale = ; var canEditEvents = ; var streamTimeout = ; var canStreamNative = ; +var streamMode = ''; // // Strings diff --git a/web/skins/classic/views/js/frame.js b/web/skins/classic/views/js/frame.js index 0705032bc..cafb63a40 100644 --- a/web/skins/classic/views/js/frame.js +++ b/web/skins/classic/views/js/frame.js @@ -1,15 +1,34 @@ function changeScale() { - var scale = $('scale').get('value'); - var img = $('frameImg'); - if ( img ) { - var baseWidth = $('base_width').value; - var baseHeight = $('base_height').value; - var newWidth = ( baseWidth * scale ) / SCALE_BASE; - var newHeight = ( baseHeight * scale ) / SCALE_BASE; + let scale = $j('#scale').val(); + let img = $j('#frameImg'); + let controlsLinks = { + next: $j('#nextLink'), + prev: $j('#prevLink'), + first: $j('#firstLink'), + last: $j('#lastLink') + } - img.style.width = newWidth + "px"; - img.style.height = newHeight + "px"; + if (img) { + let baseWidth = $j('#base_width').val(); + let baseHeight = $j('#base_height').val(); + if (scale == "auto") { + let newSize = scaleToFit(baseWidth, baseHeight, img, $j('#controls')); + newWidth = newSize.width; + newHeight = newSize.height; + autoScale = newSize.autoScale; + } else { + $j(window).off('resize', endOfResize); //remove resize handler when Scale to Fit is not active + newWidth = baseWidth * scale / SCALE_BASE; + newHeight = baseHeight * scale / SCALE_BASE; + } + img.css('width', newWidth + "px"); + img.css('height', newHeight + "px"); } Cookie.write( 'zmWatchScale', scale, { duration: 10*365 } ); + $j.each(controlsLinks, function(k, anchor) { //Make frames respect scale choices + anchor.prop('href', anchor.prop('href').replace(/scale=.*&/, 'scale=' + scale + '&')); + + }); } +if (scale == "auto") $j(document).ready(changeScale); diff --git a/web/skins/classic/views/js/frame.js.php b/web/skins/classic/views/js/frame.js.php index dff39cdab..c9b3f2eea 100644 --- a/web/skins/classic/views/js/frame.js.php +++ b/web/skins/classic/views/js/frame.js.php @@ -1,2 +1,3 @@ +var scale = ''; var SCALE_BASE = ; diff --git a/web/skins/classic/views/js/watch.js b/web/skins/classic/views/js/watch.js index 0a9863b3c..6b6002595 100644 --- a/web/skins/classic/views/js/watch.js +++ b/web/skins/classic/views/js/watch.js @@ -25,18 +25,29 @@ function showPtzControls() { function changeScale() { var scale = $('scale').get('value'); - var newWidth = ( monitorWidth * scale ) / SCALE_BASE; - var newHeight = ( monitorHeight * scale ) / SCALE_BASE; + var newWidth; + var newHeight; + if (scale == "auto") { + let newSize = scaleToFit(monitorWidth, monitorHeight, $j('#liveStream'+monitorId), $j('#replayStatus')); + newWidth = newSize.width; + newHeight = newSize.height; + autoScale = newSize.autoScale; + } else { + $j(window).off('resize', endOfResize); //remove resize handler when Scale to Fit is not active + newWidth = monitorWidth * scale / SCALE_BASE; + newHeight = monitorHeight * scale / SCALE_BASE; + } + Cookie.write( 'zmWatchScale'+monitorId, scale, { duration: 10*365 } ); /*Stream could be an applet so can't use moo tools*/ - var streamImg = document.getElementById('liveStream'+monitorId); + var streamImg = $('liveStream'+monitorId); if ( streamImg ) { streamImg.style.width = newWidth + "px"; streamImg.style.height = newHeight + "px"; - streamImg.src = streamImg.src.replace(/scale=\d+/i, 'scale='+scale); + streamImg.src = streamImg.src.replace(/scale=\d+/i, 'scale='+(scale== 'auto' ? autoScale : scale)); } else { console.error("No element found for liveStream."); } @@ -622,6 +633,7 @@ function initPage() { if ( refreshApplet && appletRefreshTime ) appletRefresh.delay( appletRefreshTime*1000 ); + if (scale == "auto") changeScale(); } // Kick everything off diff --git a/web/skins/classic/views/js/watch.js.php b/web/skins/classic/views/js/watch.js.php index 35a2debca..c0c8ab590 100644 --- a/web/skins/classic/views/js/watch.js.php +++ b/web/skins/classic/views/js/watch.js.php @@ -50,7 +50,7 @@ var monitorWidth = Width() ?>; var monitorHeight = Height() ?>; var monitorUrl = 'Server()->Url() ) ?>'; -var scale = ; +var scale = ''; var statusRefreshTimeout = ; var eventsRefreshTimeout = ; diff --git a/web/views/image.php b/web/views/image.php index ab15763b3..11495593a 100644 --- a/web/views/image.php +++ b/web/views/image.php @@ -61,13 +61,24 @@ $path = null; if ( empty($_REQUEST['path']) ) { if ( ! empty($_REQUEST['fid']) ) { $show = empty($_REQUEST['show']) ? 'capture' : $_REQUEST['show']; - + if ( ! empty($_REQUEST['eid'] ) ) { $Event = new Event( $_REQUEST['eid'] ); $Frame = Frame::find_one( array( 'EventId' => $_REQUEST['eid'], 'FrameId' => $_REQUEST['fid'] ) ); if ( ! $Frame ) { - Fatal("No Frame found for event(".$_REQUEST['eid'].") and frame id(".$_REQUEST['fid'].")"); + $previousBulkFrame = dbFetchOne( "SELECT * FROM Frames WHERE EventId=? AND FrameId < ? ORDER BY FrameID DESC LIMIT 1", NULL, array($_REQUEST['eid'], $_REQUEST['fid'] ) ); + $nextBulkFrame = dbFetchOne( "SELECT * FROM Frames WHERE EventId=? AND FrameId > ? ORDER BY FrameID ASC LIMIT 1", NULL, array($_REQUEST['eid'], $_REQUEST['fid'] ) ); + if ( $previousBulkFrame and $nextBulkFrame ) { + $Frame = new Frame( $previousBulkFrame ); + $Frame->FrameId = ( $_REQUEST['fid'] ); + $percentage = ($Frame->FrameId() - $previousBulkFrame['FrameId']) / ($nextBulkFrame['FrameId'] - $previousBulkFrame['FrameId']); + $Frame->Delta = ( $previousBulkFrame['Delta'] + floor( 100* ( $nextBulkFrame['Delta'] - $previousBulkFrame['Delta'] ) * $percentage )/100 ); +Logger::Debug("Got virtual frame from Bulk Frames previous delta: " . $previousBulkFrame['Delta'] . " + nextdelta:" . $nextBulkFrame['Delta'] . ' - ' . $previousBulkFrame['Delta'] . ' * ' . $percentage ); + } else { + Fatal("No Frame found for event(".$_REQUEST['eid'].") and frame id(".$_REQUEST['fid'].")"); + } } + // Frame can be non-existent. We have Bulk frames. So now we should try to load the bulk frame } else { # If we are only specifying fid, then the fid must be the primary key into the frames table. But when the event is specified, then it is the frame # $Frame = new Frame( $_REQUEST['fid'] ); From 004a41b1229e5d7e76d79aa49cca047f3d19dae9 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 4 Dec 2017 22:59:50 -0500 Subject: [PATCH 5/7] remove boost dependency. --- distros/ubuntu1204/control | 1 - distros/ubuntu1604/control | 1 - 2 files changed, 2 deletions(-) diff --git a/distros/ubuntu1204/control b/distros/ubuntu1204/control index cfd1c81a6..3d0d32fd3 100644 --- a/distros/ubuntu1204/control +++ b/distros/ubuntu1204/control @@ -6,7 +6,6 @@ Uploaders: Vagrant Cascadian Build-Depends: debhelper (>= 9), python-sphinx | python3-sphinx, apache2-dev, dh-linktree ,cmake ,libavcodec-dev, libavformat-dev (>= 3:0.svn20090204), libswscale-dev (>= 3:0.svn20090204), libavutil-dev, libavdevice-dev - ,libboost1.55-dev ,libbz2-dev ,libgcrypt-dev ,libcurl4-gnutls-dev diff --git a/distros/ubuntu1604/control b/distros/ubuntu1604/control index 1adea5494..efbaa0651 100644 --- a/distros/ubuntu1604/control +++ b/distros/ubuntu1604/control @@ -6,7 +6,6 @@ Uploaders: Vagrant Cascadian Build-Depends: debhelper (>= 9), dh-systemd, python-sphinx | python3-sphinx, apache2-dev, dh-linktree ,cmake ,libx264-dev, libmp4v2-dev - ,libboost-dev ,libavdevice-dev (>= 6:10~) ,libavcodec-dev (>= 6:10~) ,libavformat-dev (>= 6:10~) From 1a5d9d5586de9e346ac5d48b1f0afd9ebb9f0fd1 Mon Sep 17 00:00:00 2001 From: kimmeld <537025+kimmeld@users.noreply.github.com> Date: Wed, 6 Dec 2017 13:43:33 -0700 Subject: [PATCH 6/7] Fix monitor sorting (#2015) Fixed issue #2014 --- web/skins/classic/views/js/console.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/skins/classic/views/js/console.js b/web/skins/classic/views/js/console.js index b95c97ecb..495c2ac2f 100644 --- a/web/skins/classic/views/js/console.js +++ b/web/skins/classic/views/js/console.js @@ -88,7 +88,7 @@ $j( function() { function applySort(event, ui) { var monitor_ids = $j(this).sortable('toArray'); var ajax = new Request.JSON( { - url: '/index.php?request=console', + url: 'index.php?request=console', data: { monitor_ids: monitor_ids, action: 'sort' }, method: 'post', timeout: AJAX_TIMEOUT From fb424a7eefe3a802000d2145ad8d66b51b586be3 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Thu, 7 Dec 2017 09:32:23 -0500 Subject: [PATCH 7/7] add a robots.txt to the docroot to tell bots to not scrape our ZM install. --- web/CMakeLists.txt | 2 +- web/robots.txt | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 web/robots.txt diff --git a/web/CMakeLists.txt b/web/CMakeLists.txt index e9b156068..50e5f9998 100644 --- a/web/CMakeLists.txt +++ b/web/CMakeLists.txt @@ -10,7 +10,7 @@ configure_file(includes/config.php.in "${CMAKE_CURRENT_BINARY_DIR}/includes/conf # Install the web files install(DIRECTORY api ajax css fonts graphics includes js lang skins tools views DESTINATION "${ZM_WEBDIR}" PATTERN "*.in" EXCLUDE PATTERN "*Make*" EXCLUDE PATTERN "*cmake*" EXCLUDE) -install(FILES index.php DESTINATION "${ZM_WEBDIR}") +install(FILES index.php robots.txt DESTINATION "${ZM_WEBDIR}") install(FILES "${CMAKE_CURRENT_BINARY_DIR}/includes/config.php" DESTINATION "${ZM_WEBDIR}/includes") # Install the api config files (if its not in the source directory) diff --git a/web/robots.txt b/web/robots.txt new file mode 100644 index 000000000..1f53798bb --- /dev/null +++ b/web/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: /