From 1aa1cc1360ef30595c1e12e9db4a76242559640d Mon Sep 17 00:00:00 2001 From: anggabayu Date: Wed, 14 Nov 2018 09:52:16 +0700 Subject: [PATCH] Initial commit --- .DS_Store | Bin 0 -> 6148 bytes lumberjack/LICENSE | 21 + lumberjack/chown.go | 11 + lumberjack/chown_linux.go | 19 + lumberjack/lumberjack.go | 543 + model/device.go | 247 + model/message.go | 468 + model/message_test.go | 62 + model/server.go | 78 + parser/.DS_Store | Bin 0 -> 6148 bytes parser/devicePrs.go | 573 + parser/devicePrsInternal.go | 445 + parser/devicePrs_test.go | 409 + server/.DS_Store | Bin 0 -> 6148 bytes server/devicePrsNet.go | 325 + server/exe/.DS_Store | Bin 0 -> 6148 bytes server/exe/applog.log | 15947 ++++++++++++++++ server/exe/applog.sqlite | Bin 0 -> 663552 bytes server/exe/config-server.hjson | 60 + server/exe/config.hjson | 160 + server/exe/deviceServer.go | 102 + server/ruptela_test.go | 133 + utility/logwriter.go | 172 + utility/watcher/config.hjson | 39 + utility/watcher/log_watcher.go | 340 + vendor/github.com/gansidui/gotcp/LICENSE | 20 + vendor/github.com/gansidui/gotcp/README.md | 25 + vendor/github.com/gansidui/gotcp/conn.go | 215 + .../gotcp/examples/echo/client/client.go | 42 + .../gotcp/examples/echo/echoProtocol.go | 69 + .../gotcp/examples/echo/server/server.go | 70 + .../gotcp/examples/telnet/server/server.go | 50 + .../gotcp/examples/telnet/telnetProtocol.go | 115 + vendor/github.com/gansidui/gotcp/protocol.go | 13 + vendor/github.com/gansidui/gotcp/server.go | 68 + 35 files changed, 20841 insertions(+) create mode 100755 .DS_Store create mode 100755 lumberjack/LICENSE create mode 100755 lumberjack/chown.go create mode 100755 lumberjack/chown_linux.go create mode 100755 lumberjack/lumberjack.go create mode 100755 model/device.go create mode 100755 model/message.go create mode 100755 model/message_test.go create mode 100755 model/server.go create mode 100644 parser/.DS_Store create mode 100755 parser/devicePrs.go create mode 100755 parser/devicePrsInternal.go create mode 100755 parser/devicePrs_test.go create mode 100755 server/.DS_Store create mode 100755 server/devicePrsNet.go create mode 100644 server/exe/.DS_Store create mode 100755 server/exe/applog.log create mode 100755 server/exe/applog.sqlite create mode 100755 server/exe/config-server.hjson create mode 100755 server/exe/config.hjson create mode 100755 server/exe/deviceServer.go create mode 100755 server/ruptela_test.go create mode 100755 utility/logwriter.go create mode 100755 utility/watcher/config.hjson create mode 100755 utility/watcher/log_watcher.go create mode 100755 vendor/github.com/gansidui/gotcp/LICENSE create mode 100755 vendor/github.com/gansidui/gotcp/README.md create mode 100755 vendor/github.com/gansidui/gotcp/conn.go create mode 100755 vendor/github.com/gansidui/gotcp/examples/echo/client/client.go create mode 100755 vendor/github.com/gansidui/gotcp/examples/echo/echoProtocol.go create mode 100755 vendor/github.com/gansidui/gotcp/examples/echo/server/server.go create mode 100755 vendor/github.com/gansidui/gotcp/examples/telnet/server/server.go create mode 100755 vendor/github.com/gansidui/gotcp/examples/telnet/telnetProtocol.go create mode 100755 vendor/github.com/gansidui/gotcp/protocol.go create mode 100755 vendor/github.com/gansidui/gotcp/server.go diff --git a/.DS_Store b/.DS_Store new file mode 100755 index 0000000000000000000000000000000000000000..a01787341dc41a410792708eae01a08c1bea18d3 GIT binary patch literal 6148 zcmeHKOHRWu5PgO!s$kP4OG})fdlpd@PLK-#2`Yl5i2~_52jM`y0oUP;$5e?LBvuHa z8OeU*`Pj~rVtW9%O<%5o6@Vq1pc7?A#60Udi@^!eg*hJ4;TiWR@G>*eUo^?yFHoUJ zjR%bOUv1ZU(bVl|)3b4PlVxT9RsbJ|_nYg(ck|Uv`J=e@>15pmEjjJ*D*M~#-L7hO zTdqUSk*F2>8Q*B@rWymrfH7bU7z0NJG~%F055;LJQBz$kF`TB;?qggUaZuEBxLAC+xbj!=;=<~j--mFx zRMC24z!;b^aIV9Z-2b=yWoC=~X^M@E0b}5wG2j+io^AM1@oqi&Jh^K<+Z~&T#0{cQ ms81dN9LPCx6`bn#qBAayI4H_2Vh`y=dk6$VtTP6Ffq_quTRe3D literal 0 HcmV?d00001 diff --git a/lumberjack/LICENSE b/lumberjack/LICENSE new file mode 100755 index 0000000..c3d4cc3 --- /dev/null +++ b/lumberjack/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Nate Finch + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/lumberjack/chown.go b/lumberjack/chown.go new file mode 100755 index 0000000..0da7022 --- /dev/null +++ b/lumberjack/chown.go @@ -0,0 +1,11 @@ +// +build !linux + +package lumberjack + +import ( + "os" +) + +func chown(_ string, _ os.FileInfo) error { + return nil +} \ No newline at end of file diff --git a/lumberjack/chown_linux.go b/lumberjack/chown_linux.go new file mode 100755 index 0000000..fc29e34 --- /dev/null +++ b/lumberjack/chown_linux.go @@ -0,0 +1,19 @@ +package lumberjack + +import ( + "os" + "syscall" +) + +// os_Chown is a var so we can mock it out during tests. +var os_Chown = os.Chown + +func chown(name string, info os.FileInfo) error { + f, err := os.OpenFile(name, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, info.Mode()) + if err != nil { + return err + } + f.Close() + stat := info.Sys().(*syscall.Stat_t) + return os_Chown(name, int(stat.Uid), int(stat.Gid)) +} \ No newline at end of file diff --git a/lumberjack/lumberjack.go b/lumberjack/lumberjack.go new file mode 100755 index 0000000..438b76f --- /dev/null +++ b/lumberjack/lumberjack.go @@ -0,0 +1,543 @@ +// Package lumberjack provides a rolling logger. +// +// Note that this is v2.0 of lumberjack, and should be imported using gopkg.in +// thusly: +// +// import "gopkg.in/natefinch/lumberjack.v2" +// +// The package name remains simply lumberjack, and the code resides at +// https://github.com/natefinch/lumberjack under the v2.0 branch. +// +// Lumberjack is intended to be one part of a logging infrastructure. +// It is not an all-in-one solution, but instead is a pluggable +// component at the bottom of the logging stack that simply controls the files +// to which logs are written. +// +// Lumberjack plays well with any logging package that can write to an +// io.Writer, including the standard library's log package. +// +// Lumberjack assumes that only one process is writing to the output files. +// Using the same lumberjack configuration from multiple processes on the same +// machine will result in improper behavior. +package lumberjack + +import ( + "compress/gzip" + "errors" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "sort" + "strings" + "sync" + "time" +) + +const ( + backupTimeFormat = "2006-01-02T15-04-05.000" + compressSuffix = ".gz" + defaultMaxSize = 100 +) + +// ensure we always implement io.WriteCloser +var _ io.WriteCloser = (*Logger)(nil) + +// Logger is an io.WriteCloser that writes to the specified filename. +// +// Logger opens or creates the logfile on first Write. If the file exists and +// is less than MaxSize megabytes, lumberjack will open and append to that file. +// If the file exists and its size is >= MaxSize megabytes, the file is renamed +// by putting the current time in a timestamp in the name immediately before the +// file's extension (or the end of the filename if there's no extension). A new +// log file is then created using original filename. +// +// Whenever a write would cause the current log file exceed MaxSize megabytes, +// the current file is closed, renamed, and a new log file created with the +// original name. Thus, the filename you give Logger is always the "current" log +// file. +// +// Backups use the log file name given to Logger, in the form +// `name-timestamp.ext` where name is the filename without the extension, +// timestamp is the time at which the log was rotated formatted with the +// time.Time format of `2006-01-02T15-04-05.000` and the extension is the +// original extension. For example, if your Logger.Filename is +// `/var/log/foo/server.log`, a backup created at 6:30pm on Nov 11 2016 would +// use the filename `/var/log/foo/server-2016-11-04T18-30-00.000.log` +// +// Cleaning Up Old Log Files +// +// Whenever a new logfile gets created, old log files may be deleted. The most +// recent files according to the encoded timestamp will be retained, up to a +// number equal to MaxBackups (or all of them if MaxBackups is 0). Any files +// with an encoded timestamp older than MaxAge days are deleted, regardless of +// MaxBackups. Note that the time encoded in the timestamp is the rotation +// time, which may differ from the last time that file was written to. +// +// If MaxBackups and MaxAge are both 0, no old log files will be deleted. +type Logger struct { + // Filename is the file to write logs to. Backup log files will be retained + // in the same directory. It uses -lumberjack.log in + // os.TempDir() if empty. + Filename string `json:"filename" yaml:"filename"` + + // MaxSize is the maximum size in megabytes of the log file before it gets + // rotated. It defaults to 100 megabytes. + MaxSize int `json:"maxsize" yaml:"maxsize"` + + // MaxAge is the maximum number of days to retain old log files based on the + // timestamp encoded in their filename. Note that a day is defined as 24 + // hours and may not exactly correspond to calendar days due to daylight + // savings, leap seconds, etc. The default is not to remove old log files + // based on age. + MaxAge int `json:"maxage" yaml:"maxage"` + + // MaxBackups is the maximum number of old log files to retain. The default + // is to retain all old log files (though MaxAge may still cause them to get + // deleted.) + MaxBackups int `json:"maxbackups" yaml:"maxbackups"` + + // LocalTime determines if the time used for formatting the timestamps in + // backup files is the computer's local time. The default is to use UTC + // time. + LocalTime bool `json:"localtime" yaml:"localtime"` + + // Compress determines if the rotated log files should be compressed + // using gzip. The default is not to perform compression. + Compress bool `json:"compress" yaml:"compress"` + + size int64 + file *os.File + mu sync.Mutex + + millCh chan bool + startMill sync.Once +} + +var ( + // currentTime exists so it can be mocked out by tests. + currentTime = time.Now + + // os_Stat exists so it can be mocked out by tests. + os_Stat = os.Stat + + // megabyte is the conversion factor between MaxSize and bytes. It is a + // variable so tests can mock it out and not need to write megabytes of data + // to disk. + megabyte = 1024 * 1024 +) + +// Write implements io.Writer. If a write would cause the log file to be larger +// than MaxSize, the file is closed, renamed to include a timestamp of the +// current time, and a new log file is created using the original log file name. +// If the length of the write is greater than MaxSize, an error is returned. +func (l *Logger) Write(p []byte) (n int, err error) { + l.mu.Lock() + defer l.mu.Unlock() + + writeLen := int64(len(p)) + if writeLen > l.max() { + return 0, fmt.Errorf( + "write length %d exceeds maximum file size %d", writeLen, l.max(), + ) + } + + if l.file == nil { + if err = l.openExistingOrNew(len(p)); err != nil { + return 0, err + } + } + + if l.size+writeLen > l.max() { + if err := l.rotate(); err != nil { + return 0, err + } + } + + n, err = os.Stderr.Write(p) + + n, err = l.file.Write(p) + l.size += int64(n) + + return n, err +} + +// Close implements io.Closer, and closes the current logfile. +func (l *Logger) Close() error { + l.mu.Lock() + defer l.mu.Unlock() + return l.close() +} + +// close closes the file if it is open. +func (l *Logger) close() error { + if l.file == nil { + return nil + } + err := l.file.Close() + l.file = nil + return err +} + +// Rotate causes Logger to close the existing log file and immediately create a +// new one. This is a helper function for applications that want to initiate +// rotations outside of the normal rotation rules, such as in response to +// SIGHUP. After rotating, this initiates compression and removal of old log +// files according to the configuration. +func (l *Logger) Rotate() error { + l.mu.Lock() + defer l.mu.Unlock() + return l.rotate() +} + +// rotate closes the current file, moves it aside with a timestamp in the name, +// (if it exists), opens a new file with the original filename, and then runs +// post-rotation processing and removal. +func (l *Logger) rotate() error { + if err := l.close(); err != nil { + return err + } + if err := l.openNew(); err != nil { + return err + } + l.mill() + return nil +} + +// openNew opens a new log file for writing, moving any old log file out of the +// way. This methods assumes the file has already been closed. +func (l *Logger) openNew() error { + err := os.MkdirAll(l.dir(), 0744) + if err != nil { + return fmt.Errorf("can't make directories for new logfile: %s", err) + } + + name := l.filename() + mode := os.FileMode(0644) + info, err := os_Stat(name) + if err == nil { + // Copy the mode off the old logfile. + mode = info.Mode() + // move the existing file + newname := backupName(name, l.LocalTime) + if err := os.Rename(name, newname); err != nil { + return fmt.Errorf("can't rename log file: %s", err) + } + + // this is a no-op anywhere but linux + if err := chown(name, info); err != nil { + return err + } + } + + // we use truncate here because this should only get called when we've moved + // the file ourselves. if someone else creates the file in the meantime, + // just wipe out the contents. + f, err := os.OpenFile(name, os.O_CREATE|os.O_WRONLY|os.O_TRUNC, mode) + if err != nil { + return fmt.Errorf("can't open new logfile: %s", err) + } + l.file = f + l.size = 0 + return nil +} + +// backupName creates a new filename from the given name, inserting a timestamp +// between the filename and the extension, using the local time if requested +// (otherwise UTC). +func backupName(name string, local bool) string { + dir := filepath.Dir(name) + filename := filepath.Base(name) + ext := filepath.Ext(filename) + prefix := filename[:len(filename)-len(ext)] + t := currentTime() + if !local { + t = t.UTC() + } + + timestamp := t.Format(backupTimeFormat) + return filepath.Join(dir, fmt.Sprintf("%s-%s%s", prefix, timestamp, ext)) +} + +// openExistingOrNew opens the logfile if it exists and if the current write +// would not put it over MaxSize. If there is no such file or the write would +// put it over the MaxSize, a new file is created. +func (l *Logger) openExistingOrNew(writeLen int) error { + l.mill() + + filename := l.filename() + info, err := os_Stat(filename) + if os.IsNotExist(err) { + return l.openNew() + } + if err != nil { + return fmt.Errorf("error getting log file info: %s", err) + } + + if info.Size()+int64(writeLen) >= l.max() { + return l.rotate() + } + + file, err := os.OpenFile(filename, os.O_APPEND|os.O_WRONLY, 0644) + if err != nil { + // if we fail to open the old log file for some reason, just ignore + // it and open a new log file. + return l.openNew() + } + l.file = file + l.size = info.Size() + return nil +} + +// genFilename generates the name of the logfile from the current time. +func (l *Logger) filename() string { + if l.Filename != "" { + return l.Filename + } + name := filepath.Base(os.Args[0]) + "-lumberjack.log" + return filepath.Join(os.TempDir(), name) +} + +// millRunOnce performs compression and removal of stale log files. +// Log files are compressed if enabled via configuration and old log +// files are removed, keeping at most l.MaxBackups files, as long as +// none of them are older than MaxAge. +func (l *Logger) millRunOnce() error { + if l.MaxBackups == 0 && l.MaxAge == 0 && !l.Compress { + return nil + } + + files, err := l.oldLogFiles() + if err != nil { + return err + } + + var compress, remove []logInfo + + if l.MaxBackups > 0 && l.MaxBackups < len(files) { + preserved := make(map[string]bool) + var remaining []logInfo + for _, f := range files { + // Only count the uncompressed log file or the + // compressed log file, not both. + fn := f.Name() + if strings.HasSuffix(fn, compressSuffix) { + fn = fn[:len(fn)-len(compressSuffix)] + } + preserved[fn] = true + + if len(preserved) > l.MaxBackups { + remove = append(remove, f) + } else { + remaining = append(remaining, f) + } + } + files = remaining + } + if l.MaxAge > 0 { + diff := time.Duration(int64(24*time.Hour) * int64(l.MaxAge)) + cutoff := currentTime().Add(-1 * diff) + + var remaining []logInfo + for _, f := range files { + if f.timestamp.Before(cutoff) { + remove = append(remove, f) + } else { + remaining = append(remaining, f) + } + } + files = remaining + } + + if l.Compress { + for _, f := range files { + if !strings.HasSuffix(f.Name(), compressSuffix) { + compress = append(compress, f) + } + } + } + + for _, f := range remove { + errRemove := os.Remove(filepath.Join(l.dir(), f.Name())) + if err == nil && errRemove != nil { + err = errRemove + } + } + for _, f := range compress { + fn := filepath.Join(l.dir(), f.Name()) + errCompress := compressLogFile(fn, fn+compressSuffix) + if err == nil && errCompress != nil { + err = errCompress + } + } + + return err +} + +// millRun runs in a goroutine to manage post-rotation compression and removal +// of old log files. +func (l *Logger) millRun() { + for _ = range l.millCh { + // what am I going to do, log this? + _ = l.millRunOnce() + } +} + +// mill performs post-rotation compression and removal of stale log files, +// starting the mill goroutine if necessary. +func (l *Logger) mill() { + l.startMill.Do(func() { + l.millCh = make(chan bool, 1) + go l.millRun() + }) + select { + case l.millCh <- true: + default: + } +} + +// oldLogFiles returns the list of backup log files stored in the same +// directory as the current log file, sorted by ModTime +func (l *Logger) oldLogFiles() ([]logInfo, error) { + files, err := ioutil.ReadDir(l.dir()) + if err != nil { + return nil, fmt.Errorf("can't read log file directory: %s", err) + } + logFiles := []logInfo{} + + prefix, ext := l.prefixAndExt() + + for _, f := range files { + if f.IsDir() { + continue + } + if t, err := l.timeFromName(f.Name(), prefix, ext); err == nil { + logFiles = append(logFiles, logInfo{t, f}) + continue + } + if t, err := l.timeFromName(f.Name(), prefix, ext+compressSuffix); err == nil { + logFiles = append(logFiles, logInfo{t, f}) + continue + } + // error parsing means that the suffix at the end was not generated + // by lumberjack, and therefore it's not a backup file. + } + + sort.Sort(byFormatTime(logFiles)) + + return logFiles, nil +} + +// timeFromName extracts the formatted time from the filename by stripping off +// the filename's prefix and extension. This prevents someone's filename from +// confusing time.parse. +func (l *Logger) timeFromName(filename, prefix, ext string) (time.Time, error) { + if !strings.HasPrefix(filename, prefix) { + return time.Time{}, errors.New("mismatched prefix") + } + if !strings.HasSuffix(filename, ext) { + return time.Time{}, errors.New("mismatched extension") + } + ts := filename[len(prefix) : len(filename)-len(ext)] + return time.Parse(backupTimeFormat, ts) +} + +// max returns the maximum size in bytes of log files before rolling. +func (l *Logger) max() int64 { + if l.MaxSize == 0 { + return int64(defaultMaxSize * megabyte) + } + return int64(l.MaxSize) * int64(megabyte) +} + +// dir returns the directory for the current filename. +func (l *Logger) dir() string { + return filepath.Dir(l.filename()) +} + +// prefixAndExt returns the filename part and extension part from the Logger's +// filename. +func (l *Logger) prefixAndExt() (prefix, ext string) { + filename := filepath.Base(l.filename()) + ext = filepath.Ext(filename) + prefix = filename[:len(filename)-len(ext)] + "-" + return prefix, ext +} + +// compressLogFile compresses the given log file, removing the +// uncompressed log file if successful. +func compressLogFile(src, dst string) (err error) { + f, err := os.Open(src) + if err != nil { + return fmt.Errorf("failed to open log file: %v", err) + } + defer f.Close() + + fi, err := os_Stat(src) + if err != nil { + return fmt.Errorf("failed to stat log file: %v", err) + } + + if err := chown(dst, fi); err != nil { + return fmt.Errorf("failed to chown compressed log file: %v", err) + } + + // If this file already exists, we presume it was created by + // a previous attempt to compress the log file. + gzf, err := os.OpenFile(dst, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, fi.Mode()) + if err != nil { + return fmt.Errorf("failed to open compressed log file: %v", err) + } + defer gzf.Close() + + gz := gzip.NewWriter(gzf) + + defer func() { + if err != nil { + os.Remove(dst) + err = fmt.Errorf("failed to compress log file: %v", err) + } + }() + + if _, err := io.Copy(gz, f); err != nil { + return err + } + if err := gz.Close(); err != nil { + return err + } + if err := gzf.Close(); err != nil { + return err + } + + if err := f.Close(); err != nil { + return err + } + if err := os.Remove(src); err != nil { + return err + } + + return nil +} + +// logInfo is a convenience struct to return the filename and its embedded +// timestamp. +type logInfo struct { + timestamp time.Time + os.FileInfo +} + +// byFormatTime sorts by newest time formatted in the name. +type byFormatTime []logInfo + +func (b byFormatTime) Less(i, j int) bool { + return b[i].timestamp.After(b[j].timestamp) +} + +func (b byFormatTime) Swap(i, j int) { + b[i], b[j] = b[j], b[i] +} + +func (b byFormatTime) Len() int { + return len(b) +} \ No newline at end of file diff --git a/model/device.go b/model/device.go new file mode 100755 index 0000000..a42839f --- /dev/null +++ b/model/device.go @@ -0,0 +1,247 @@ +/* + Model for standard/IU records +*/ + +package model + +import ( + "bytes" + "encoding/gob" + "encoding/json" + "time" +) + +/* + Standard tags for several properties +*/ +const ( + TAG_TIMESTAMP = 1 + TAG_PRIORITY = 2 + TAG_LONGITUDE = 3 + TAG_LATITUDE = 4 + TAG_ALTITUDE = 5 + TAG_ANGLE = 6 + TAG_SATELITES = 7 + TAG_SPEED = 8 + TAG_HDOP = 9 + TAG_EVENT_SRC = 10 + + DEV_ONLINE = 1 + DEV_OFFLINE = 0 + + CMD_RUP_MODULE = 0 + CMD_RUP_RECORD = 1 + CMD_RUP_RECORD_RESP = 100 + CMD_RUP_CONFIG = 2 + CMD_RUP_CONFIG_RESP = 102 + CMD_RUP_VER = 3 + CMD_RUP_VER_RESP = 103 + CMD_RUP_FIRMW = 4 + CMD_RUP_FIRMW_RESP = 104 + CMD_RUP_SCARD = 5 + CMD_RUP_SCARD_RESP = 107 + CMD_RUP_SCARDZ = 6 + CMD_RUP_SCARDZ_RESP = 107 + CMD_RUP_SMGPRS = 7 + CMD_RUP_SMGPRS_RESP = 108 + CMD_RUP_DIAG = 9 + CMD_RUP_DIAG_RESP = 109 + CMD_RUP_TACHOC = 10 + CMD_RUP_TACHOC_RESP = 110 + CMD_RUP_TACHOD = 11 + CMD_RUP_TACHOD_RESP = 111 + CMD_RUP_TACHOI = 12 + CMD_RUP_TACHOI_RESP = 111 + CMD_RUP_TRCH = 14 + CMD_RUP_TRCH_RESP = 114 + CMD_RUP_GARMR = 30 + CMD_RUP_GARMR_RESP = 130 + CMD_RUP_GARMD = 31 + CMD_RUP_GARMD_RESP = 131 + CMD_RUP_CONN_PARM = 105 + CMD_RUP_ODO = 106 +) + +// Device and standard Tag type +type DevTag uint16 +type StdTag uint16 +type IOMap map[DevTag]StdTag + +type DeviceData struct { + Command byte + Data []byte +} + +// Data structure for Device I/O record (8-bit) +type DeviceIo8 struct { + Tag StdTag + Value int8 +} + +// Data structure for Device I/O record (16-bit) +type DeviceIo16 struct { + Tag StdTag + Value int16 +} + +// Data structure for Device I/O record (32-bit) +type DeviceIo32 struct { + Tag StdTag + Value int32 +} + +// Data structure for Device I/O record (64-bit) +type DeviceIo64 struct { + Tag StdTag + Value int64 +} + +// Data structure for real/double I/O +type DeviceIoReal struct { + Tag StdTag + Value float64 +} + +// Data structure for string I/O +type DeviceIoString struct { + Tag StdTag + Value string +} + +// IO group +type DeviceIo struct { + V8 []DeviceIo8 + V16 []DeviceIo16 + V32 []DeviceIo32 + V64 []DeviceIo64 + VReal []DeviceIoReal + VStr []DeviceIoString +} + +// Data structure for standard IU records +type DeviceRecord struct { + Timestamp time.Time + Priority byte + Longitude float64 + Latitude float64 + Altitude float32 + Angle float32 + Satelites byte + Speed float32 + IO DeviceIo +} + +// Basic device information +type DeviceDescriptor struct { + IMEI uint64 + QoS byte + Id uint64 + Model string +} + +// Collection of data readed from device +type DeviceRecords struct { + TimeReceived time.Time + Descriptor DeviceDescriptor + Records []DeviceRecord +} + +//-------------------------------------------------------------------- +type DeviceIoMapping struct { + Descriptor DeviceDescriptor + IOMapping map[DevTag]StdTag +} + +//-------------------------------------------------------------------- +type DisplayRequest struct { + Timestamp time.Time + IMEI uint64 + PortID byte + Data []byte +} + +//-------------------------------------------------------------------- + +//Parser interface that must be implemented by device +type Parser interface { + GetMaxPacketSize() int + GetMinPacketSize() int + GetBufferSize() int + GetStream() []byte + Payload() []byte + GetError() error + GetCommand() byte +// GetRecords() *DeviceRecords + GetIMEI() uint64 + GetClientResponse() []byte + ExecuteAsync() +} + +//-------------------------------------------------------------------- + +//Convert record to/from stream +type RecordsConverter struct { +} + +/* + Convert records to JSON +*/ +func (self RecordsConverter) ToJson(recs *DeviceRecords) (jstr string, err error) { + bin, err := json.Marshal(recs) + if err != nil { + return "", err + } + + jstr = string(bin) + return jstr, nil +} + +/* + Convert json to records +*/ +func (self RecordsConverter) FromJson(jstr string) (recs *DeviceRecords, err error) { + var devRec DeviceRecords + err = json.Unmarshal([]byte(jstr), &devRec) + if err != nil { + return nil, err + } + + recs = &devRec + return recs, nil +} + +/* + Convert device records to bytes +*/ +func (self RecordsConverter) ToStream(recs *DeviceRecords) (stream []byte, err error) { + var buf bytes.Buffer // Stand-in for byte stream buffer + enc := gob.NewEncoder(&buf) // Will write stream. + + // Encode (send) some values. + err = enc.Encode(recs) + if err != nil { + return nil, err + } + + //Gob bytes + stream = buf.Bytes() + return stream, nil +} + +/* + Convert records from stream +*/ +func (self RecordsConverter) FromStream(stream []byte) (recs *DeviceRecords, err error) { + buf := bytes.NewBuffer(stream) + dec := gob.NewDecoder(buf) // Will read from buffer. + + // Decode (receive) and print the values. + var dpkt DeviceRecords + err = dec.Decode(&dpkt) + if err != nil { + return nil, err + } + recs = &dpkt + + return recs, nil +} diff --git a/model/message.go b/model/message.go new file mode 100755 index 0000000..c69e8e2 --- /dev/null +++ b/model/message.go @@ -0,0 +1,468 @@ +//Message model +/* + Table "public.bcs_list" + Column | Type | Modifiers +----------------+-----------------------------+------------------------------------------------------- + id | bigint | not null default nextval('bcs_list_id_seq'::regclass) + bcs_message_id | bigint | + imei | character varying(25) | + sent_ts | timestamp without time zone | + delivered_ts | timestamp without time zone | +Indexes: + "bcs_list_pkey" PRIMARY KEY, btree (id) +Foreign-key constraints: + "bcs_list_bcs_message_id_fkey" FOREIGN KEY (bcs_message_id) REFERENCES bcs_message(id) + + Table "public.bcs_message" + Column | Type | Modifiers +------------------+-----------------------------+---------------------------------------------------------- + id | bigint | not null default nextval('bcs_message_id_seq'::regclass) + bcs_message_time | timestamp without time zone | + duration | integer | + mbuzzer | integer | + message | text | + expired | timestamp without time zone | + company_id | bigint | +Indexes: + "bcs_message_pkey" PRIMARY KEY, btree (id) +Foreign-key constraints: + "bcs_message_company_id_fkey" FOREIGN KEY (company_id) REFERENCES m_company(id) +Referenced by: + TABLE "bcs_list" CONSTRAINT "bcs_list_bcs_message_id_fkey" FOREIGN KEY (bcs_message_id) REFERENCES bcs_message(id) +*/ + +package model + +import ( + "bytes" + "encoding/json" + "errors" + "fmt" + "io/ioutil" + "log" + "net/http" + "strconv" + "strings" + "sync" + "time" + + "github.com/ipsusila/opt" +) + +//Message status report +const ( + MessageError = -1 + MessageSent = 1 + MessageDelivered = 2 +) + +//ISOTime encapsulate timestamp for JSON parsing +type ISOTime struct { + time.Time +} + +//UserMessage retrieved from GUI +type UserMessage struct { + Vehicles []string `json:"vehicles"` + Duration int `json:"duration"` + NBuzzer int `json:"nbuzzer"` + Message string `json:"message"` + Expired ISOTime `json:"expired"` +} + +//BroadcastMessage holds message information need to be broadcast +type BroadcastMessage struct { + Timestamp ISOTime `json:"ts"` + Duration int `json:"duration"` + NBuzzer int `json:"nbuzzer"` + Message string `json:"message"` + Expired ISOTime `json:"expired"` +} + +//MessageStatus for specific IMEI +type MessageStatus struct { + IMEI string `json:"imei"` + Status string `json:"status"` + Timestamp string `json:"timestamp"` + StatusCode int `json:"-"` +} + +//MessageProvider send/receive message +type MessageProvider interface { + Get(imei uint64) (*BroadcastMessage, error) + Put(message *UserMessage) error + Update(status *MessageStatus) error +} + +type messageSet struct { + sync.RWMutex + messages []*BroadcastMessage + readPos int + writePos int + capacity int + numItems int +} + +//DbMessageProvider provides message with DB storage +type DbMessageProvider struct { + sync.RWMutex + queueMsg map[uint64]*messageSet + sentMsg map[uint64]*messageSet + capacity int + saveToDb bool + loadFromDb bool + messageAPI string + reportAPI string + serviceTimeout time.Duration + appendIMEI bool + serviceClient *http.Client +} + +//------------------------------------------------------------------------------------------------- + +//UnmarshalJSON convert string to timestamp +//Convet from Y-m-d H:M:S +func (tm *ISOTime) UnmarshalJSON(b []byte) (err error) { + //TODO time other than local + s := strings.Trim(string(b), "\"") + tm.Time, err = time.ParseInLocation("2006-01-02 15:04:05", s, time.Local) + if err != nil { + tm.Time = time.Time{} + } + return err +} + +//------------------------------------------------------------------------------------------------- +func newMessageSet(capacity int) *messageSet { + sets := &messageSet{ + capacity: capacity, + numItems: 0, + readPos: 0, + writePos: 0, + messages: make([]*BroadcastMessage, capacity), + } + + return sets +} + +func (q *messageSet) doPut(msg *BroadcastMessage) bool { + //check count (full or not?) + q.Lock() + defer q.Unlock() + + if q.numItems == q.capacity { + return false + } + + msg.Timestamp.Time = time.Now() + pos := q.writePos % q.capacity + q.messages[pos] = msg + q.writePos = pos + 1 + q.numItems++ + + return true +} + +func (q *messageSet) put(msg *BroadcastMessage) bool { + //check message pointer + if msg == nil { + return false + } + + return q.doPut(msg) +} +func (q *messageSet) putUnique(msg *BroadcastMessage) bool { + //check message pointer + if msg == nil || q.contains(msg) { + return false + } + + return q.doPut(msg) +} + +func (q *messageSet) take() *BroadcastMessage { + q.Lock() + defer q.Unlock() + + //check count (empty or not?) + if q.numItems == 0 { + return nil + } + + pos := q.readPos % q.capacity + msg := q.messages[pos] + q.readPos = pos + 1 + q.numItems-- + + return msg +} + +func (q *messageSet) get() *BroadcastMessage { + q.Lock() + defer q.Unlock() + + //check count (empty or not?) + if q.numItems == 0 { + return nil + } + + pos := q.readPos % q.capacity + return q.messages[pos] +} + +func (q *messageSet) count() int { + q.RLock() + defer q.RUnlock() + + return q.numItems +} + +func (q *messageSet) contains(m *BroadcastMessage) bool { + q.RLock() + defer q.RUnlock() + + beg := q.readPos + end := q.writePos + for { + pos := beg % q.capacity + if pos == end { + break + } + + //check message + m2 := q.messages[pos] + eq := m.EqualTo(m2) + if eq { + return true + } + beg++ + } + + return false +} + +//------------------------------------------------------------------------------------------------- + +//EqualTo return true if message is equal +func (m1 *BroadcastMessage) EqualTo(m2 *BroadcastMessage) bool { + eq := m1.Timestamp == m2.Timestamp && + m1.Duration == m2.Duration && + m1.NBuzzer == m2.NBuzzer && + m1.Expired == m2.Expired && + m1.Message == m2.Message + + return eq +} + +//------------------------------------------------------------------------------------------------- + +//NewDbMessageProvider create new provider +func NewDbMessageProvider(options *opt.Options) (*DbMessageProvider, error) { + //make sure url ends with / + p := &DbMessageProvider{} + + //TODO init + return p, nil +} + +func (p *DbMessageProvider) getFromDb(imei uint64) (*BroadcastMessage, error) { + if !p.loadFromDb { + return nil, nil + } + + //Get message from API + //TODO: can it handle many connections? + msg := &BroadcastMessage{} + + //alamat internal + imeiStr := fmt.Sprintf("%d", imei) + url := p.messageAPI + imeiStr + err := p.getJSON(url, msg) + if err != nil { + return nil, err + } + now := time.Now() + if msg.Expired.Before(now) { + return nil, nil + } + + return msg, nil +} +func (p *DbMessageProvider) putToDb(message *UserMessage) error { + if !p.saveToDb { + return nil + } + + return nil +} + +func (p *DbMessageProvider) updateDb(status *MessageStatus) error { + url := p.reportAPI + if p.appendIMEI { + url += status.IMEI + } + err := p.putJSON(url, status) + if err != nil { + log.Printf("PUT request error: %v\n", err) + return err + } + + return nil +} + +func (p *DbMessageProvider) getJSON(url string, target interface{}) error { + r, err := p.serviceClient.Get(url) + if err != nil { + return err + } + defer r.Body.Close() + + return json.NewDecoder(r.Body).Decode(target) +} + +func (p *DbMessageProvider) putJSON(url string, data interface{}) error { + payload, err := json.Marshal(data) + if err != nil { + return err + } + reader := bytes.NewReader(payload) + client := p.serviceClient + req, err := http.NewRequest("PUT", url, reader) + if err != nil { + return err + } + req.ContentLength = int64(len(payload)) + req.Header.Set("Content-Type", "application/json") + response, err := client.Do(req) + if err != nil { + return err + } + defer response.Body.Close() + + //read content + result, err := ioutil.ReadAll(response.Body) + if err != nil { + return err + } + str := string(result) + if strings.Contains(str, "no") { + return errors.New("Failed to PUT data to service: " + str) + } + + //request code + code := response.StatusCode + if code == http.StatusOK || code == http.StatusCreated { + return nil + } + + status := response.Status + return errors.New("PUT error with status = " + status) +} + +//------------------------------------------------------------------------------------------------- + +//Get return broadcast message for given IMEI +func (p *DbMessageProvider) Get(imei uint64) (*BroadcastMessage, error) { + p.RLock() + defer p.RUnlock() + + //get queue for this imei + queue, ok := p.queueMsg[imei] + if !ok { + return p.getFromDb(imei) + } + + //get message + msg := queue.get() + if msg == nil { + return p.getFromDb(imei) + } + return msg, nil +} + +//Put setup new messages +func (p *DbMessageProvider) Put(message *UserMessage) error { + p.Lock() + defer p.Unlock() + + now := ISOTime{time.Now()} + for _, vid := range message.Vehicles { + imei, err := strconv.ParseUint(vid, 10, 64) + if err != nil { + log.Printf("Parse IMEI (%v) error: %v\n", vid, err) + continue + } + bm := &BroadcastMessage{ + Timestamp: now, + Duration: message.Duration, + NBuzzer: message.NBuzzer, + Message: message.Message, + Expired: message.Expired, + } + queue, ok := p.queueMsg[imei] + if !ok { + queue = newMessageSet(p.capacity) + p.queueMsg[imei] = queue + } + + ok = queue.putUnique(bm) + if !ok { + //log + log.Printf("Put message error-> %v:%v", imei, bm.Message) + } + } + + //save to database + return p.putToDb(message) +} + +//Update message status +func (p *DbMessageProvider) Update(status *MessageStatus) error { + p.Lock() + defer p.Unlock() + + imei, err := strconv.ParseUint(status.IMEI, 10, 64) + if err != nil { + return err + } + + //message delivered + if status.StatusCode == MessageDelivered || status.StatusCode == MessageError { + //get message from "sent message" collection + sets, ok := p.sentMsg[imei] + if !ok { + return errors.New("delivered message not found in sets") + } + msg := sets.take() + + //if status is error, return message to broadcast queue + if msg != nil && status.StatusCode == MessageError { + //return to sets + queue, ok := p.queueMsg[imei] + if !ok { + queue = newMessageSet(p.capacity) + p.queueMsg[imei] = queue + } + queue.putUnique(msg) + } + } else if status.StatusCode == MessageSent { + //message sent, get from queue + queue, ok := p.queueMsg[imei] + if !ok { + return errors.New("message not found in sets") + } + msg := queue.take() + if msg != nil { + //move to "sent message" collection + sets, ok := p.sentMsg[imei] + if !ok { + sets = newMessageSet(p.capacity) + p.sentMsg[imei] = sets + } + sets.put(msg) + } + } + + //update status in database + return p.updateDb(status) +} diff --git a/model/message_test.go b/model/message_test.go new file mode 100755 index 0000000..1459d8c --- /dev/null +++ b/model/message_test.go @@ -0,0 +1,62 @@ +package model + +import ( + "fmt" + "testing" + "time" +) + +func TestQueue(t *testing.T) { + queue := newMessageSet(20) + finish := make(chan bool, 2) + + fnPush := func() { + for k := 0; k < 30; k++ { + msg := &BroadcastMessage{ + Timestamp: ISOTime{time.Now()}, + Message: fmt.Sprintf("Message %02d", k), + } + ok := queue.put(msg) + if !ok { + t.Logf("Push error (#n = %d)\n", queue.count()) + time.Sleep(20) + } + } + finish <- true + } + + fnPop := func() { + for k := 0; k < 50; k++ { + msg := queue.take() + if msg != nil { + t.Logf("#Items %d, msg: %v -> %v", queue.count(), msg.Timestamp, msg.Message) + } else { + t.Logf("#num items %d", queue.count()) + time.Sleep(1) + } + } + finish <- true + close(finish) + } + + go fnPush() + go fnPop() + + for ok := range finish { + t.Logf("Finish %v", ok) + } + + //pointer test + msg1 := &BroadcastMessage{ + Timestamp: ISOTime{time.Now()}, + } + msg2 := msg1 + msg3 := msg1 + + if msg2 == msg3 { + t.Logf("Message is equal") + } else { + t.Logf("Message is not equal") + } + +} diff --git a/model/server.go b/model/server.go new file mode 100755 index 0000000..691c8c3 --- /dev/null +++ b/model/server.go @@ -0,0 +1,78 @@ +/* + Package for server related model +*/ + +package model + +const ( + SERVER_ZMQ = "zmq" + SERVER_NET = "net" + + CMD_START = "start" + CMD_RESTART = "restart" + CMD_STOP = "stop" + + DEV_RUPTELA = "RUPTELA" + DEV_TELTONIKA = "TELTONIKA" + + MAP_SHARD_COUNT = 32 +) + +/* + REQ-REP pattern request. +*/ +type Request struct { + Origin string + Token string + Type string + Data string +} + +type IoMapResponse struct { + Descriptor DeviceDescriptor + DevTags []DevTag + StdTags []StdTag +} + +type ServerConfig struct { + Id int + IP string + Port int + MaxSocket int + Mode string + ChanLimit uint32 + Device string + TimeoutMilis int +} + +/* + Interface for service which provides several information. +*/ +type ServiceProvider interface { + IsRegistered(imei uint64) bool + GetDeviceIoMapping(imei uint64) (iom *DeviceIoMapping, err error) +} + +//Device server interface +type DeviceServer interface { + Start() + Stop() +} + +/* + Get device io mapping +*/ +func GetDeviceIoMapping(imei uint64) (iom *DeviceIoMapping, err error) { + //------------------------------------- + //TODO get mapping from server/cache + iom = new(DeviceIoMapping) + iom.Descriptor.Id = 10 + iom.Descriptor.Model = "Pro3" + iom.Descriptor.QoS = 1 + iom.Descriptor.IMEI = imei + if iom.IOMapping == nil { + iom.IOMapping = make(IOMap) + } + + return iom, nil +} diff --git a/parser/.DS_Store b/parser/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0 %s; %s: %s\n", err.Error(), query, imei, dInHex) + return err + } + id, _ := result.LastInsertId() + nrows, _ := result.RowsAffected() + log.Printf("IMEI: %v, insert-id: %d, nrows: %d\n", imei, id, nrows) + } else { + //if database not defined, display packet in log + log.Printf("IMEI: %v\n Data: %v\n", imei, dInHex) + } + + return nil +} + +func (p *DevicePrsParser) sendToBroker() error { + imei := fmt.Sprintf("%d", p.IMEI) + + //TODO, make packet invalid if IMEI is not registered + procdr := p.procdr + if procdr != nil { + dataJson, err := json.Marshal(p.Records) + if err != nil { + log.Printf("Error parse to JSON (IMEI: %v): %s\n", imei, err) + } + //log.Printf("JSON : %v\n",string(dataJson)) + + log.Printf("Number of records: %d (IMEI: %v)\n", p.Records.NumRec, imei) + + //broker + topic := p.options.BrokerTopic + //producer channel + doneChan := make(chan bool) + go func() { + defer close(doneChan) + for e := range procdr.Events() { + switch ev := e.(type) { + case *kafka.Message: + m := ev + if m.TopicPartition.Error != nil { + log.Printf("Sent failed: %v (IMEI: %v)\n", m.TopicPartition.Error, imei) + } else { + log.Printf("Sent message to topic %s [%d] at offset %v (IMEI: %v)\n", + *m.TopicPartition.Topic, m.TopicPartition.Partition, m.TopicPartition.Offset, imei) + } + return + + default: + log.Printf("Ignored event: %s (IMEI: %v)\n", ev,imei) + } + } + }() + value := string(dataJson) + procdr.ProduceChannel() <- &kafka.Message{ + TopicPartition: kafka.TopicPartition{Topic: &topic, Partition: kafka.PartitionAny}, + Value: []byte(value), + Headers: []kafka.Header{{Key: imei, Value: []byte( p.Records.Tstamp.String() )}}, + } + // wait for delivery report goroutine to finish + _ = <-doneChan + + } else { + //if database not defined, display packet in log + log.Printf("Message Broker not defined, IMEI: %v\n", imei) + } + + return nil +} + +func (p *DevicePrsParser) getJSON(url string, target interface{}) error { + r, err := p.options.serviceClient.Get(url) + if err != nil { + return err + } + defer r.Body.Close() + + return json.NewDecoder(r.Body).Decode(target) +} + +func (p *DevicePrsParser) putJSON(url string, data interface{}) error { + if p.options == nil { + return errors.New("PUT error, options not defined") + } + + payload, err := json.Marshal(data) + if err != nil { + return err + } + reader := bytes.NewReader(payload) + client := p.options.serviceClient + req, err := http.NewRequest("PUT", url, reader) + if err != nil { + return err + } + req.ContentLength = int64(len(payload)) + req.Header.Set("Content-Type", "application/json") + response, err := client.Do(req) + if err != nil { + return err + } + defer response.Body.Close() + + //read content + result, err := ioutil.ReadAll(response.Body) + if err != nil { + return err + } + str := string(result) + if strings.Contains(str, "no") { + return errors.New("Failed to update message status: " + str) + } + + //request code + code := response.StatusCode + if code == http.StatusOK || code == http.StatusCreated { + return nil + } + + status := response.Status + return errors.New("PUT error with status = " + status) +} + +func (p *DevicePrsParser) askForBroadcastMessage() (string, error) { + if p.options == nil { + return "", errors.New("GET error, options not defined") + } + //Get message from API + //TODO: can it handle many connections? + msg := &BroadcastMessage{} + + //alamat internal + imei := fmt.Sprintf("%d", p.IMEI) + url := p.options.messageAPI + imei + err := p.getJSON(url, msg) + if err != nil { + return "", err + } + now := time.Now() + if msg.Expired.Before(now) { + return "", nil + } + + //get buzzer count + nbeep := msg.NBuzzer + if nbeep <= 0 { + nbeep = 1 + } else if nbeep > 9 { + nbeep = 9 + } + + dispSec := msg.Duration + if dispSec <= 0 { + dispSec = 1 + } else if dispSec > 999 { + dispSec = 999 + } + + escapedMsg := sReplacer.Replace(msg.Message) + pesan := fmt.Sprintf(":t%d%03d%v$", nbeep, dispSec, escapedMsg) + + //log message + log.Printf("IMEI = %d, message = %v\n", p.IMEI, pesan) + + //go update broadcast status (mark as "sent") + go p.updateBroadcastStatus(statusSent) + + //return the message + return pesan, nil +} + +//Update broadcast status +func (p *DevicePrsParser) updateBroadcastStatus(status int) error { + now := time.Now() + report := &MessageStatus{ + IMEI: fmt.Sprintf("%d", p.IMEI), + Timestamp: now.Format(timeLayout), + } + switch status { + case statusError: + //Do nothing + log.Printf("IMEI=%d, Message status = Error\n", p.IMEI) + case statusSent: + report.Status = "sent" + case statusDelivered: + report.Status = "delivered" + } + + if len(report.Status) > 0 && p.options != nil { + url := p.options.reportAPI + if p.options.appendIMEI { + url += fmt.Sprintf("%d", p.IMEI) + } + err := p.putJSON(url, report) + if err != nil { + log.Printf("PUT request error: %v\n", err) + return err + } + + log.Printf("IMEI=%v, Message status = %v\n", report.IMEI, report.Status) + } + + return nil +} + +//GetBroadcastMessage return message payload tobe broadcased to client +func (p *DevicePrsParser) GetBroadcastMessage() ([]byte, error) { + pesan, err := p.askForBroadcastMessage() + n := len(pesan) + if err != nil { + return nil, err + } + + //construct message + npacket := n + 4 + data := make([]byte, 8+n) + data[0] = byte(npacket >> 8) + data[1] = byte(npacket) + data[2] = 0x72 + data[3] = 0x01 //PORT 'B' (TODO: configurable) + data[4] = 0x00 + data[5] = 0x00 + + //setup Payload + payload := []byte(pesan) + ptr := data[6:] + copy(ptr, payload) + + //calculate CRC + crc := crc16CCITT(data[2:(n + 6)]) + data[n+6] = byte(crc >> 8) + data[n+7] = byte(crc) + + return data, nil +} + +//GetClientResponse return appropriate response to client according to packet +func (p *DevicePrsParser) GetClientResponse() []byte { + //Get response to client + //TODO other response + switch int(p.Command) { + case model.CMD_RUP_RECORD: + if p.IMEI == 0 || p.Error != nil { + return rNACK + } + return rACK + case model.CMD_RUP_TRCH: + if p.IMEI == 0 || p.Error != nil { + return tEmpty + } + + //parse incoming message + tch, err := parseTchStream(p.Data, p.MinPacketSize, p.MaxPacketSize) + if err != nil { + return tEmpty + } + + //ceck command type + payload := string(tch.Data) + if strings.HasPrefix(payload, "GMn") || + strings.HasPrefix(payload, "GMi") || + strings.HasPrefix(payload, "GMe") { + + //send message if initial, none or error + data, err := p.GetBroadcastMessage() + if err != nil { + p.Error = err + return tEmpty + } + + return data + } else if strings.HasPrefix(payload, "GMo") { + //ok, message delivered + go p.updateBroadcastStatus(statusDelivered) + } + + //empty transparent channel + return tEmpty + } + + //empty + return rEmpty +} + +//GetRecords return parsed records +// func (p *DevicePrsParser) GetRecords() *model.DeviceRecords { +// if p.IMEI == 0 || p.Error != nil { +// return nil +// } + +// //parse stream if not yet done +// if p.Records == nil { +// //Stream already verified when creating parser +// p.Records, p.Error = parseStream(p.Data, p.MinPacketSize, p.MaxPacketSize, true) +// if p.Error != nil { +// return nil +// } +// } + +// return p.Records +// } + +//ExecuteAsync perform task +func (p *DevicePrsParser) ExecuteAsync() bool { + var status bool + status = true + //TODO identify according to command + cmd := p.GetCommand() + switch cmd { + case model.CMD_RUP_RECORD: + err := p.saveToDatabase() + if err != nil { + status = false + p.Error = err + } + + err = p.sendToBroker() + } + + return status +} + +//-------------------------------------------------------------------- + +//NewDevicePrsOptions create options for devicePrs +func NewDevicePrsOptions(options *opt.Options) *DevicePrsOptions { + svcOpt := options.Get(model.DEV_RUPTELA) + + defQuery := `INSERT INTO "GPS_DATA"("IMEI", "DATA_LOG", "FLAG", "DATE_INS", "DESC", "GPS_CODE", "DATA_LEN") + VALUES($1, $2, $3, $4, $5, $6, $7)` + insertQuery := svcOpt.GetString("insertQuery", defQuery) + rupOpt := &DevicePrsOptions{ + messageAPI: svcOpt.GetString("message", ""), + reportAPI: svcOpt.GetString("report", ""), + serviceTimeout: time.Duration(svcOpt.GetInt("serviceTimeout", 10)) * time.Second, + appendIMEI: svcOpt.GetBool("appendIMEI", false), + insertQuery: insertQuery, + tagOption: options.Get("iotag"), + BrokerServer: options.Get("messagebroker").GetString("brokerServer",""), + BrokerTopic: options.Get("messagebroker").GetString("brokerTopic",""), + DeviceName: options.Get("server").GetString("device",""), + } + //create client + rupOpt.serviceClient = &http.Client{Timeout: rupOpt.serviceTimeout} + + return rupOpt +} + +//NewDevicePrs create empty parser +func NewDevicePrs() *DevicePrsParser { + p := &DevicePrsParser{ + MaxPacketSize: 2048, + MinPacketSize: 14, + BufferSize: 2048, + } + + return p +} + +//NewDevicePrsParser create new parser. Maximum packet size is 1KB +func NewDevicePrsParser(options *DevicePrsOptions, db *sql.DB, data []byte, procdr *kafka.Producer) *DevicePrsParser { + //allocate parser with maximum and minimum packet size + p := NewDevicePrs() + p.options = options + p.db = db + p.procdr = procdr + + //verify stream + if data != nil { + p.IMEI, p.Command, p.Records, p.Error = verifyStream(data, p.MinPacketSize, p.MaxPacketSize, options.tagOption) + if p.Error == nil { + p.Data = data + } + } else { + p.Error = fmt.Errorf("Stream is empty") + } + return p +} + +//NewDevicePrsStringParser create new parser which accept HEX string. +//Maximum packet size is 1KB i.e. maximum string length is 2KB +func NewDevicePrsStringParser(options *DevicePrsOptions, db *sql.DB, data string, procdr *kafka.Producer) *DevicePrsParser { + stream, err := hex.DecodeString(data) + p := NewDevicePrsParser(options, db, stream,procdr) + if err != nil { + p.Error = err + } + return p +} + +//-------------------------------------------------------------------- diff --git a/parser/devicePrsInternal.go b/parser/devicePrsInternal.go new file mode 100755 index 0000000..4f131a0 --- /dev/null +++ b/parser/devicePrsInternal.go @@ -0,0 +1,445 @@ +/* + Package for parsing devicePrs byte stream to struct. +*/ + +package parser + +import ( + "bytes" + "encoding/binary" + "fmt" + "time" + //"encoding/hex" + "strconv" + "sort" + "github.com/ipsusila/opt" + + "../model" +) + +type ruptelaTchHeader struct { + Length uint16 + IMEI uint64 + CommandID byte + PortID byte + Reserved uint16 + Timestamp uint32 +} + +type DeviceRecordHeader struct { + Imei uint64 + Tstamp time.Time + NumRec uint16 + DeviceRecords []DeviceRecord +} + +type DeviceRecord struct { + Tstamp time.Time + TstampInt int64 + Imei uint64 + Longitude float64 + Latitude float64 + Altitude uint16 + Angle uint16 + Satelites uint16 + Speed uint16 + TagDevices map[string]TagDevice +} + +type TagDevice struct { + TagName string + TagId string + TagDataType string + TagVal string +} + +// ByTstamp implements sort.Interface for []DeviceRecord based on +// the TstampInt field. +type ByTstamp []DeviceRecord + +func (a ByTstamp) Len() int { return len(a) } +func (a ByTstamp) Swap(i, j int) { a[i], a[j] = a[j], a[i] } +func (a ByTstamp) Less(i, j int) bool { return a[i].TstampInt < a[j].TstampInt } + +/* + Verify that content of the byte stream match defined format +*/ +func verifyStream(data []byte, minSize int, maxSize int, tagOption *opt.Options) (imei uint64, cmd byte, rec DeviceRecordHeader, err error) { + dlen := len(data) + if dlen < minSize { + return 0, 0,rec, fmt.Errorf("Packet size is too small (< %d)", dlen) + } else if dlen > maxSize { + return 0, 0,rec, fmt.Errorf("Packet size is greater than maximum allowed size (%d)", dlen) + } + + //Extract packet size + sz := int(binary.BigEndian.Uint16(data[:2])) + if sz != (dlen - 4) { + return 0, 0,rec, fmt.Errorf("Size field mismatched (!%d)", dlen) + } + + //extract IMEI + imei = binary.BigEndian.Uint64(data[2:10]) + + //extract and verify CRC + crc := binary.BigEndian.Uint16(data[dlen-2:]) + ccrc := crc16CCITT(data[2 : dlen-2]) + if crc != ccrc { + return 0, 0,rec, fmt.Errorf("Invalid Ruptela packet (CRC-16 does not match)") + } + + //parse data + rec = parseData(data,imei,tagOption) + + //extract command + cmd = data[10] + + return imei, cmd, rec, nil +} + +/* + Parse byte stream and convert to standard record format +*/ +func parseData(data []byte, imei uint64, tagOption *opt.Options) (rec DeviceRecordHeader) { + //allocate records + rec.Tstamp = time.Now() + rec.Imei = imei + + tagOption_ := tagOption.GetObjectArray("tags") + lengthTags := len(tagOption_) + tags := make(map[string]TagDevice) + for i:=0; i maxSize { + return rec, fmt.Errorf("Packet size is greater than maximum allowed size (%d)", dataLen) + } + + //create buffer + buf := bytes.NewBuffer(data) + + //read packet header part + pktHdr := &ruptelaTchHeader{} + err := binary.Read(buf, binary.BigEndian, pktHdr) + if err != nil { + return rec, fmt.Errorf("Failed to read packet header (%v)", err) + } + //2+8+1+1+2+4 (len, imei, cmd, port, reserved, timestamp) + idx := 2 + 8 + 1 + 1 + 2 + 4 + + rec.IMEI = pktHdr.IMEI + rec.PortID = pktHdr.PortID + rec.Timestamp = time.Unix(int64(pktHdr.Timestamp), 0) + rec.Data = data[idx:(dataLen - 2)] + + return rec, nil +} + +// Calculate CRC16 with CCITT algorithm +// Based on C/C++ code in DevicePrs protocol documents +// CRC calculation omits Length(2-bytes) and CRC itself (2-bytes) +func crc16CCITT(data []byte) uint16 { + //-------------------------------------------------------------------- + var ucBit, ucCarry uint16 + //-------------------------------------------------------------------- + var usPoly uint16 = 0x8408 //reversed 0x1021 + var usCRC uint16 //initialized as zero + //-------------------------------------------------------------------- + for _, d := range data { + usCRC ^= uint16(d) + for ucBit = 0; ucBit < 8; ucBit++ { + ucCarry = usCRC & 1 + usCRC >>= 1 + if ucCarry != 0 { + usCRC ^= usPoly + } + } + } + //-------------------------------------------------------------------- + return usCRC + //-------------------------------------------------------------------- +} diff --git a/parser/devicePrs_test.go b/parser/devicePrs_test.go new file mode 100755 index 0000000..05c706f --- /dev/null +++ b/parser/devicePrs_test.go @@ -0,0 +1,409 @@ +package parser + +import ( + "bytes" + "encoding/binary" + "encoding/gob" + "encoding/hex" + "encoding/json" + "fmt" + "net/http" + "testing" + + "github.com/ipsusila/opt" + + "time" + + "../model" +) + +func TestCRC2(t *testing.T) { + pesan := ":t2005Custom Message\\: Hello Server$" + n := len(pesan) + npacket := n + 4 + data := make([]byte, 8+n) + data[0] = byte(npacket >> 8) + data[1] = byte(npacket) + data[2] = 0x72 + data[3] = 0x01 //PORT 'B' + data[4] = 0x00 + data[5] = 0x00 + + payload := []byte(pesan) + p := data[6:] + copy(p, payload) + + crc := crc16CCITT(data[2:(n + 6)]) + data[n+6] = byte(crc >> 8) + data[n+7] = byte(crc) + + fmt.Printf("Data: %X", data) +} + +func TestCRC(t *testing.T) { + //data := []byte{0x00, 0x02, 0x64, 0x01, 0x13, 0xBC} + data := []byte{0x00, 0x05, 0x72, 0x01, 0x00, 0x00, 0x66, 0xC5, 0x44} + n1 := len(data) + + //ini OK + d1 := data[2 : n1-2] + fmt.Printf("Data: %X\n", d1) + crc1 := crc16CCITT(d1) + + //salah + d2 := data[0 : n1-2] + fmt.Printf("Data: %X\n", d2) + crc2 := crc16CCITT(d2) + + //salah + d3 := data //[0 : n1-2] + fmt.Printf("Data: %X\n", d3) + crc3 := crc16CCITT(d3) + + fmt.Printf("#ACK CRC=%X, %X %X\n", crc1, byte(crc1>>8), byte(crc1)) + fmt.Printf("#ACK CRC=%X\n", crc2) + fmt.Printf("#ACK CRC=%X\n", crc3) +} + +// func xxTestParser(t *testing.T) { + +// //Parse data from DevicePrs manual +// var p model.Parser = NewDevicePrsStringParser(nil, nil, +// "033500000C076B5C208F01011E5268CEF20000196E3A3A0AEF3E934F3E2D780000000007000000005268CEFD0000196E3A3A0AEF3E934F3"+ +// "E2D780000000007000000005268CF080000196E3A3A0AEF3E934F3E2D780000000007000000005268CF130000196E3A3A0AEF3E934F3E2D7"+ +// "80000000007000000005268CF1E0000196E3A3A0AEF3E934F3E2D780000000007000000005268CF290000196E3A3A0AEF3E934F3E2D78000"+ +// "0000007000000005268CF340000196E3A3A0AEF3E934F3E2D780000000007000000005268CF3F0000196E3A3A0AEF3E934F3E2D780000000"+ +// "007000000005268CF4A0000196E3A3A0AEF3E934F3E2D780000000007000000005268CF550000196E3A3A0AEF3E934F3E2D7800000000070"+ +// "00000005268CF600000196E3A3A0AEF3E934F3E2D780000000007000000005268CF6B0000196E3A3A0AEF3E934F3E2D78000000000700000"+ +// "0005268CF730000196E36630AEF42CE4F6D0BF40400022208000000005268CF7E0000196E36B60AEF42BE4F6D0BF400000000070000000052"+ +// "68CF890000196E36B60AEF42BE4F6D0BF40000000007000000005268CF940000196E36B60AEF42BE4F6D0BF40000000007000000005268CF"+ +// "9F0000196E36B60AEF42BE4F6D0BF40000000007000000005268CFAA0000196E36B60AEF42BE4F6D0BF40000000007000000005268CFB50"+ +// "000196E36B60AEF42BE4F6D0BF40000000007000000005268CFC00000196E36B60AEF42BE4F6D0BF40000000007000000005268CFCB00001"+ +// "96E36B60AEF42BE4F6D0BF40000000007000000005268CFD60000196E36B60AEF42BE4F6D0BF40000000007000000005268CFD70000196E"+ +// "3C710AEF5EFF4F690BF40400011708000000005268CFE20000196E3B980AEF601A4F690BF40000000007000000005268CFED0000196E3B980"+ +// "AEF601A4F690BF40000000007000000005268CFF80000196E3B980AEF601A4F690BF40000000007000000005268D0030000196E3B980AEF60"+ +// "1A4F690BF40000000007000000005268D00E0000196E3B980AEF601A4F690BF40000000007000000005268D0190000196E3B980AEF601A4F6"+ +// "90BF40000000007000000005268D0240000196E3B980AEF601A4F690BF400000000070000000046E2") + +// //convert string to binary HEX +// if p.GetError() != nil { +// t.Fatal(p.GetError()) +// } +// pkt := p.GetRecords() + +// //display packet as JSON +// b, err := json.Marshal(pkt) +// if err != nil { +// t.Fatal(err) +// } +// fmt.Println(string(b)) +// // --------------------------------------------------------- + +// data2, err2 := hex.DecodeString( +// "007900000b1a2a5585c30100024e9c036900000f101733208ff45e07b31b570a001009090605011b1a020003001c01ad01021d338e1600000" + +// "2960000601a41014bc16d004e9c038400000f104fdf20900d20075103b00a001308090605011b1a020003001c01ad01021d33b11600000296" + +// "0000601a41014bc1ea0028f9") + +// //convert string to binary HEX +// if err2 != nil { +// t.Fatal(err2) +// } +// p = NewDevicePrsParser(nil, nil, data2) +// if p.GetError() != nil { +// t.Fatal(p.GetError()) +// } +// pkt = p.GetRecords() + +// //get response CRC +// rep := p.GetClientResponse() +// crc := crc16CCITT(rep[2 : len(rep)-2]) +// fmt.Println("#ACK CRC=", crc) + +// //display packet as JSON +// b, err = json.Marshal(pkt) +// if err != nil { +// t.Fatal(err) +// } +// origPkt := string(b) +// fmt.Println(origPkt) + +// //test for map +// m := make(map[byte]int) +// m[0] = 10 +// m[11] = 20 +// m[2] = 30 + +// fmt.Println(m) + +// ioM := new(model.IoMapResponse) +// ioM.Descriptor.IMEI = 10 +// ioM.Descriptor.Id = 11 +// ioM.Descriptor.Model = "ABC" +// ioM.Descriptor.QoS = 4 +// ioM.DevTags = []model.DevTag{0, 1, 2, 3} +// ioM.StdTags = []model.StdTag{10, 11, 2, 4} + +// b, err = json.Marshal(ioM) +// if err != nil { +// t.Fatal(err) +// } +// jstr := string(b) +// fmt.Println(jstr) + +// var io2 model.IoMapResponse +// err = json.Unmarshal([]byte(jstr), &io2) +// fmt.Println(io2) + +// var b1 byte = 200 +// x := int8(b1) +// y := byte(x) +// fmt.Printf("%d -> %d -> %d\n", b1, x, y) + +// by := data2[len(data2)-2:] +// fmt.Printf("Byte = %+v, %d\n", by, binary.BigEndian.Uint16(by)) + +// p = NewDevicePrsParser(nil, nil, []byte{}) +// fmt.Println("Parser ", p) + +// p = NewDevicePrsParser(nil, nil, nil) +// fmt.Println("Parser ", p) +// if p.GetError() != nil { +// fmt.Println(p.GetError()) +// } + +// rep = p.GetClientResponse() +// crc = crc16CCITT(rep[2 : len(rep)-2]) +// fmt.Println("#NACK CRC=", crc) + +// imei, cmd, _ := verifyStream(data2, p.GetMinPacketSize(), p.GetMaxPacketSize()) +// fmt.Printf("IMEI = %X, cmd = %d\n", imei, cmd) + +// //test encoding/decoding +// var network bytes.Buffer // Stand-in for a network connection +// enc := gob.NewEncoder(&network) // Will write to network. +// dec := gob.NewDecoder(&network) // Will read from network. + +// // Encode (send) some values. +// err = enc.Encode(pkt) +// if err != nil { +// t.Fatal("encode error:", err) +// } +// //fmt.Printf("Buffer = %+v\n", network) + +// // Decode (receive) and print the values. +// var dpkt model.DeviceRecords +// err = dec.Decode(&dpkt) +// if err != nil { +// t.Fatal("decode error 1:", err) +// } +// b, err = json.Marshal(&dpkt) +// decPkt := string(b) +// fmt.Printf("%+v\n", decPkt) + +// if origPkt != decPkt { +// t.Fatal("Encode/Decode records doesnot match.") +// } + +// //test original converter +// conv := model.RecordsConverter{} +// stream, err := conv.ToStream(pkt) +// if err != nil { +// t.Fatal("To stream error: ", err) +// } +// fmt.Printf("Stream length = %d bytes, orig = %d, json = %d\n", +// len(stream), len(data2), len(origPkt)) +// //fmt.Printf("Stream = %+v\n", string(stream)) + +// pkt2, err := conv.FromStream(stream) +// if err != nil { +// t.Fatal("From stream error: ", err) +// } + +// b, err = json.Marshal(&pkt2) +// decPkt2 := string(b) +// if origPkt != decPkt2 { +// t.Fatal("Encode/Decode records doesnot match.") +// } +// fmt.Printf("%+v\n", decPkt2) + +// nack := []byte{0x00, 0x02, 0x64, 0x00, 0x02, 0x35} +// crc1 := crc16CCITT(nack[2 : len(nack)-2]) +// fmt.Printf("CRC = %x\n", crc1) + +// tsch := []byte{0x00, 0x05, 0x72, 0x01, 0x00, 0x00, 0x66, 0x19, 0xF0} +// crc1 = crc16CCITT(tsch[2 : len(tsch)-2]) +// fmt.Printf("CRC = %x\n", crc1) + +// str := hex.EncodeToString(tsch) +// fmt.Printf("Hex = %+v\n", str) + +// data3, _ := hex.DecodeString( +// "0011000315A07F44865A0E01000053EA01DF65AD6D") +// crc1 = crc16CCITT(data3[2 : len(data3)-2]) +// fmt.Printf("CRC = %x, %d, %d\n", crc1, len(data3), len(data2)) +// } + +func TestTch(t *testing.T) { + str := "0011000315A07F44865A0E01000053EA01DF65AD6D" + data, err := hex.DecodeString(str) + + crc1 := crc16CCITT(data[2 : len(data)-2]) + t.Logf("CRC = %X", crc1) + + p := NewDevicePrsParser(nil, nil, data) + if p.Error != nil { + t.Errorf("Parser error: %v", p.Error) + t.FailNow() + } + + t.Logf("IMEI=%v, command=%d", p.IMEI, p.Command) + t.Logf("Struct = %+v", p) + + tch, err := parseTchStream(p.Data, p.MinPacketSize, p.MaxPacketSize) + if err != nil { + t.Errorf("Parse TCH error: %v", err) + t.FailNow() + } + + t.Logf("TCH = %+v\n", tch) + t.Logf("Data = %v", string(tch.Data)) + + //test + pesan := "" + n := len(pesan) + + //construct message + npacket := n + 4 + data = make([]byte, 8+n) + data[0] = byte(npacket >> 8) + data[1] = byte(npacket) + data[2] = 0x72 + data[3] = 0x01 //PORT 'B' (TODO: configurable) + data[4] = 0x00 + data[5] = 0x00 + + //setup Payload + payload := []byte(pesan) + ptr := data[6:] + copy(ptr, payload) + + //calculate CRC + crc := crc16CCITT(data[2:(n + 6)]) + data[n+6] = byte(crc >> 8) + data[n+7] = byte(crc) + + t.Logf("Data = %v\n", data) +} + +func getJSON(url string, target interface{}) error { + restClient := &http.Client{Timeout: 10 * time.Second} + r, err := restClient.Get(url) + if err != nil { + return err + } + defer r.Body.Close() + + return json.NewDecoder(r.Body).Decode(target) +} + +func TestJSON(t *testing.T) { + msg := &BroadcastMessage{} + imei := "868324028509698" + url := "http://202.47.70.196/oslog/api/BroadcastPrivate/getbroadcastmessage/" + imei + err := getJSON(url, msg) + if err != nil { + t.Errorf("Error get JSON: %v", err) + t.FailNow() + } + + t.Logf("JSON = %+v", msg) +} + +func TestOptions(t *testing.T) { + cfgText := ` + { + server: { + id: conoco01 + listenAddr: ":8081" + acceptTimeout: 10 # timeout (dalam detik) + writeTimeout: 10 # timeout (dalam detik) + maxReceive: 50 + maxSend: 50 + device: ruptela + } + + ruptela: { + message: "http://localhost:8081/api/" + report: "http://localhost:8081/reportAPI" + appendIMEI: false + serviceTimeout: 10 # REST Service timeout (dalam detik) + } + + gpsdata: { + storage: sql + sql: { + driver: postgres + connection: "user=isi-user password=isi-password dbname=OSLOGREC_MTRACK host=127.0.0.1 port=5432 connect_timeout=30 sslmode=disable" + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + insertQuery: INSERT INTO "GPS_DATA"("IMEI", "DATA_LOG", "FLAG", "DATE_INS", "DESC", "GPS_CODE", "DATA_LEN") VALUES($1, $2, $3, $4, $5, $6, $7) + } + } + + log: { + #Known types: console, file, sql + type: console, file, sql + console: { + # use default options + } + + + #for file (uncomment type) + # type: file + file: { + name: ./applog.log + append: true + } + + #for sql (uncomment type) + # SQLite -> driver: sqlite3 + # PostgreSQL -> driver: postgres + # type: sql + sql: { + driver: sqlite3 + connection: ./applog.sqlite + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + createQuery: CREATE TABLE applog(id INTEGER PRIMARY KEY AUTOINCREMENT, ts DATETIME, app VARCHAR(100), content TEXT) + insertQuery: INSERT INTO applog(ts, app, content) VALUES(?, ?, ?) + } + } + } + ` + + options, err := opt.FromText(cfgText, "hjson") + if err != nil { + t.Error(err) + t.FailNow() + } + + t.Logf("%+v", options) + + now := time.Now().Format(timeLayout) + nowLocal := time.Now().Local().Format(timeLayout) + t.Logf("Now= %v, local= %v\n", now, nowLocal) + + //test container + /* + c1, key := options.GetContainer("server") + t.Logf("Key = %s, Server = %+v", key, c1) + + c2, key := options.GetContainer("server.id") + t.Logf("Key = %s, Server.id = %+v", key, c2) + + c3, key := options.GetContainer("log.sql") + t.Logf("Key = %s, Log.sql = %+v", key, c3) + */ +} diff --git a/server/.DS_Store b/server/.DS_Store new file mode 100755 index 0000000000000000000000000000000000000000..aadeead8249d5b7488948a99e9193f8d3ca397c6 GIT binary patch literal 6148 zcmeHK%}T>S5Z<*_Hx#i4p&s|*t%o*f^&*5?58i}`9#qpQRquM&4!|OBp%ZMnT<68nz z8gvX68o>j?bt<4v<>raObvleo6XzH#H0pH5)ygoBS$Xz&;c9glmnxibM 0 { + // c.AsyncWritePacket(NewRuptelaServerPacket(msg), cb.writeTimeout) + // } else if err != nil { + // log.Printf("Get message error(client: %v, IMEI: %v) = %v\n", addr, par.IMEI,err) + // } + //} + + //run parallel processing to handle packet parsing + //go par.ExecuteAsync() + return true +} + +//OnClose is called when connection being closed +func (cb *DevicePrsServerCallback) OnClose(c *gotcp.Conn) { + addr := c.GetRawConn().RemoteAddr() + connectionDevice := connectionDevices.Value(addr.String()) + duration := time.Since(connectionDevice.timeProcess) + + connectionDevices.Del(addr.String()) + log.Printf("%v Close connection (client: %v, IMEI: %v) with duration %v s\n", serverId ,c.GetExtraData(),connectionDevice.imei,math.Round(duration.Seconds()*100)/100) +} + +//------------------------------------------------------------------- + +//DevicePrsServerProtocol holds parser +type DevicePrsServerProtocol struct { + maxPacketSize int +} + +//ReadPacket called everytime data is available +func (p *DevicePrsServerProtocol) ReadPacket(conn *net.TCPConn) (gotcp.Packet, error) { + var ( + lengthBytes = make([]byte, 2) + length uint16 + ) + + //TODO handle packet other than Device Record + //OK + + // read length + if _, err := io.ReadFull(conn, lengthBytes); err != nil { + return nil, err + } + Limit := uint16(p.maxPacketSize) + if length = binary.BigEndian.Uint16(lengthBytes); length > Limit { + return nil, errors.New("The size of packet is larger than the limit") + } + + log.Printf("data packet length(client: %v) : %d", conn.RemoteAddr(), length) + + //Packet structure + //LEN + DATA + CRC16 + buff := make([]byte, 2+length+2) + copy(buff[0:2], lengthBytes) + + // read body ( buff = lengthBytes + body ) + if _, err := io.ReadFull(conn, buff[2:]); err != nil { + return nil, err + } + + return NewDevicePrsServerPacket(buff), nil +} diff --git a/server/exe/.DS_Store b/server/exe/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..5008ddfcf53c02e82d7eee2e57c38e5672ef89f6 GIT binary patch literal 6148 zcmeH~Jr2S!425mzP>H1@V-^m;4Wg<&0T*E43hX&L&p$$qDprKhvt+--jT7}7np#A3 zem<@ulZcFPQ@L2!n>{z**++&mCkOWA81W14cNZlEfg7;MkzE(HCqgga^y>{tEnwC%0;vJ&^%eQ zLs35+`xjp>T0[::1]:8081: read: connection reset by peer +2018/05/04 17:00:33 ruptelaNet.go:197: Get message error = Get http://localhost:8081/api/12207007303107: read tcp [::1]:57986->[::1]:8081: read: connection reset by peer +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58070) +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58069) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58069) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58070) +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58071) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58071) +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58073) +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58072) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58072) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58073) +2018/05/04 17:02:39 ruptelaNet.go:162: New connection(client: [::1]:58074) +2018/05/04 17:02:39 ruptelaNet.go:208: Close connection(client: [::1]:58074) +2018/05/04 17:02:41 ruptelaNet.go:162: New connection(client: [::1]:58083) +2018/05/04 17:02:41 ruptelaNet.go:162: New connection(client: [::1]:58084) +2018/05/04 17:02:41 ruptelaNet.go:208: Close connection(client: [::1]:58083) +2018/05/04 17:02:41 ruptelaNet.go:208: Close connection(client: [::1]:58084) +2018/05/04 17:02:41 ruptelaNet.go:162: New connection(client: [::1]:58085) +2018/05/04 17:02:41 ruptelaNet.go:208: Close connection(client: [::1]:58085) +2018/05/04 17:02:46 ruptelaNet.go:162: New connection(client: [::1]:58092) +2018/05/04 17:02:46 ruptelaNet.go:162: New connection(client: [::1]:58091) +2018/05/04 17:02:46 ruptelaNet.go:208: Close connection(client: [::1]:58091) +2018/05/04 17:02:46 ruptelaNet.go:208: Close connection(client: [::1]:58092) +2018/05/04 17:02:46 ruptelaNet.go:162: New connection(client: [::1]:58093) +2018/05/04 17:02:46 ruptelaNet.go:208: Close connection(client: [::1]:58093) +2018/05/04 17:02:51 ruptelaNet.go:162: New connection(client: [::1]:58105) +2018/05/04 17:02:51 ruptelaNet.go:162: New connection(client: [::1]:58104) +2018/05/04 17:02:51 ruptelaNet.go:208: Close connection(client: [::1]:58104) +2018/05/04 17:02:51 ruptelaNet.go:208: Close connection(client: [::1]:58105) +2018/05/04 17:02:51 ruptelaNet.go:162: New connection(client: [::1]:58106) +2018/05/04 17:02:51 ruptelaNet.go:208: Close connection(client: [::1]:58106) +2018/05/04 17:02:53 ruptelaNet.go:162: New connection(client: [::1]:58107) +2018/05/04 17:02:53 ruptelaNet.go:162: New connection(client: [::1]:58108) +2018/05/04 17:02:53 ruptelaNet.go:208: Close connection(client: [::1]:58107) +2018/05/04 17:02:53 ruptelaNet.go:208: Close connection(client: [::1]:58108) +2018/05/04 17:02:53 ruptelaNet.go:162: New connection(client: [::1]:58109) +2018/05/04 17:02:53 ruptelaNet.go:208: Close connection(client: [::1]:58109) +2018/05/04 17:03:23 ruptelaNet.go:162: New connection(client: [::1]:58132) +2018/05/04 17:03:23 ruptelaNet.go:162: New connection(client: [::1]:58131) +2018/05/04 17:03:23 ruptelaNet.go:208: Close connection(client: [::1]:58131) +2018/05/04 17:03:23 ruptelaNet.go:208: Close connection(client: [::1]:58132) +2018/05/04 17:03:23 ruptelaNet.go:162: New connection(client: [::1]:58139) +2018/05/04 17:03:23 ruptelaNet.go:208: Close connection(client: [::1]:58139) +2018/05/04 17:03:49 ruptelaNet.go:162: New connection(client: [::1]:58175) +2018/05/04 17:03:49 ruptelaNet.go:162: New connection(client: [::1]:58174) +2018/05/04 17:03:49 ruptelaNet.go:208: Close connection(client: [::1]:58174) +2018/05/04 17:03:49 ruptelaNet.go:208: Close connection(client: [::1]:58175) +2018/05/04 17:03:49 ruptelaNet.go:162: New connection(client: [::1]:58178) +2018/05/04 17:03:49 ruptelaNet.go:208: Close connection(client: [::1]:58178) +2018/05/04 17:03:50 ruptelaNet.go:162: New connection(client: [::1]:58180) +2018/05/04 17:03:50 ruptelaNet.go:162: New connection(client: [::1]:58179) +2018/05/04 17:03:50 ruptelaNet.go:208: Close connection(client: [::1]:58179) +2018/05/04 17:03:50 ruptelaNet.go:208: Close connection(client: [::1]:58180) +2018/05/04 17:03:50 ruptelaNet.go:162: New connection(client: [::1]:58181) +2018/05/04 17:03:50 ruptelaNet.go:208: Close connection(client: [::1]:58181) +2018/05/04 17:03:52 ruptelaNet.go:162: New connection(client: [::1]:58188) +2018/05/04 17:03:52 ruptelaNet.go:162: New connection(client: [::1]:58187) +2018/05/04 17:03:52 ruptelaNet.go:208: Close connection(client: [::1]:58187) +2018/05/04 17:03:52 ruptelaNet.go:208: Close connection(client: [::1]:58188) +2018/05/04 17:03:52 ruptelaNet.go:162: New connection(client: [::1]:58189) +2018/05/04 17:03:52 ruptelaNet.go:208: Close connection(client: [::1]:58189) +2018/05/04 17:03:57 ruptelaNet.go:162: New connection(client: [::1]:58196) +2018/05/04 17:03:57 ruptelaNet.go:162: New connection(client: [::1]:58195) +2018/05/04 17:03:57 ruptelaNet.go:208: Close connection(client: [::1]:58195) +2018/05/04 17:03:57 ruptelaNet.go:208: Close connection(client: [::1]:58196) +2018/05/04 17:03:57 ruptelaNet.go:162: New connection(client: [::1]:58197) +2018/05/04 17:03:57 ruptelaNet.go:208: Close connection(client: [::1]:58197) +2018/05/04 17:04:27 ruptelaNet.go:162: New connection(client: [::1]:58215) +2018/05/04 17:04:27 ruptelaNet.go:162: New connection(client: [::1]:58214) +2018/05/04 17:04:27 ruptelaNet.go:208: Close connection(client: [::1]:58214) +2018/05/04 17:04:27 ruptelaNet.go:208: Close connection(client: [::1]:58215) +2018/05/04 17:04:27 ruptelaNet.go:162: New connection(client: [::1]:58221) +2018/05/04 17:04:27 ruptelaNet.go:208: Close connection(client: [::1]:58221) +2018/05/04 17:05:50 ruptelaNet.go:162: New connection(client: [::1]:58451) +2018/05/04 17:05:50 ruptelaNet.go:162: New connection(client: [::1]:58450) +2018/05/04 17:05:50 ruptelaNet.go:208: Close connection(client: [::1]:58450) +2018/05/04 17:05:50 ruptelaNet.go:208: Close connection(client: [::1]:58451) +2018/05/04 17:05:50 ruptelaNet.go:162: New connection(client: [::1]:58457) +2018/05/04 17:05:50 ruptelaNet.go:208: Close connection(client: [::1]:58457) +2018/05/04 17:12:05 ruptelaNet.go:162: New connection(client: [::1]:59065) +2018/05/04 17:12:05 ruptelaNet.go:162: New connection(client: [::1]:59064) +2018/05/04 17:12:06 ruptelaNet.go:208: Close connection(client: [::1]:59064) +2018/05/04 17:12:06 ruptelaNet.go:208: Close connection(client: [::1]:59065) +2018/05/04 17:12:06 ruptelaNet.go:162: New connection(client: [::1]:59066) +2018/05/04 17:12:06 ruptelaNet.go:208: Close connection(client: [::1]:59066) +2018/05/04 17:12:08 ruptelaNet.go:162: New connection(client: [::1]:59073) +2018/05/04 17:12:08 ruptelaNet.go:162: New connection(client: [::1]:59072) +2018/05/04 17:12:08 ruptelaNet.go:208: Close connection(client: [::1]:59072) +2018/05/04 17:12:08 ruptelaNet.go:208: Close connection(client: [::1]:59073) +2018/05/04 17:12:08 ruptelaNet.go:162: New connection(client: [::1]:59074) +2018/05/04 17:12:08 ruptelaNet.go:208: Close connection(client: [::1]:59074) +2018/05/04 17:12:19 ruptelaNet.go:162: New connection(client: [::1]:59102) +2018/05/04 17:12:19 ruptelaNet.go:162: New connection(client: [::1]:59101) +2018/05/04 17:12:19 ruptelaNet.go:208: Close connection(client: [::1]:59101) +2018/05/04 17:12:19 ruptelaNet.go:208: Close connection(client: [::1]:59102) +2018/05/04 17:12:19 ruptelaNet.go:162: New connection(client: [::1]:59103) +2018/05/04 17:12:19 ruptelaNet.go:208: Close connection(client: [::1]:59103) +2018/05/04 17:12:20 ruptelaNet.go:162: New connection(client: [::1]:59104) +2018/05/04 17:12:20 ruptelaNet.go:162: New connection(client: [::1]:59105) +2018/05/04 17:12:20 ruptelaNet.go:208: Close connection(client: [::1]:59104) +2018/05/04 17:12:20 ruptelaNet.go:208: Close connection(client: [::1]:59105) +2018/05/04 17:12:20 ruptelaNet.go:162: New connection(client: [::1]:59106) +2018/05/04 17:12:20 ruptelaNet.go:208: Close connection(client: [::1]:59106) +2018/05/04 17:12:21 ruptelaNet.go:162: New connection(client: [::1]:59107) +2018/05/04 17:12:21 ruptelaNet.go:162: New connection(client: [::1]:59108) +2018/05/04 17:12:21 ruptelaNet.go:208: Close connection(client: [::1]:59107) +2018/05/04 17:12:21 ruptelaNet.go:208: Close connection(client: [::1]:59108) +2018/05/04 17:12:21 ruptelaNet.go:162: New connection(client: [::1]:59109) +2018/05/04 17:12:21 ruptelaNet.go:208: Close connection(client: [::1]:59109) +2018/05/04 17:12:54 ruptelaNet.go:162: New connection(client: [::1]:59153) +2018/05/04 17:12:54 ruptelaNet.go:162: New connection(client: [::1]:59154) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59153) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59154) +2018/05/04 17:12:55 ruptelaNet.go:162: New connection(client: [::1]:59155) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59155) +2018/05/04 17:12:55 ruptelaNet.go:162: New connection(client: [::1]:59158) +2018/05/04 17:12:55 ruptelaNet.go:162: New connection(client: [::1]:59157) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59157) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59158) +2018/05/04 17:12:55 ruptelaNet.go:162: New connection(client: [::1]:59159) +2018/05/04 17:12:55 ruptelaNet.go:208: Close connection(client: [::1]:59159) +2018/05/04 17:12:58 ruptelaNet.go:162: New connection(client: [::1]:59166) +2018/05/04 17:12:58 ruptelaNet.go:162: New connection(client: [::1]:59165) +2018/05/04 17:12:58 ruptelaNet.go:208: Close connection(client: [::1]:59165) +2018/05/04 17:12:58 ruptelaNet.go:208: Close connection(client: [::1]:59166) +2018/05/04 17:12:58 ruptelaNet.go:162: New connection(client: [::1]:59167) +2018/05/04 17:12:58 ruptelaNet.go:208: Close connection(client: [::1]:59167) +2018/05/04 17:13:01 ruptelaNet.go:162: New connection(client: [::1]:59168) +2018/05/04 17:13:01 ruptelaNet.go:162: New connection(client: [::1]:59169) +2018/05/04 17:13:01 ruptelaNet.go:208: Close connection(client: [::1]:59168) +2018/05/04 17:13:01 ruptelaNet.go:208: Close connection(client: [::1]:59169) +2018/05/04 17:13:01 ruptelaNet.go:162: New connection(client: [::1]:59170) +2018/05/04 17:13:01 ruptelaNet.go:208: Close connection(client: [::1]:59170) +2018/05/04 17:13:06 ruptelaNet.go:162: New connection(client: [::1]:59177) +2018/05/04 17:13:06 ruptelaNet.go:162: New connection(client: [::1]:59176) +2018/05/04 17:13:06 ruptelaNet.go:208: Close connection(client: [::1]:59176) +2018/05/04 17:13:06 ruptelaNet.go:208: Close connection(client: [::1]:59177) +2018/05/04 17:13:06 ruptelaNet.go:162: New connection(client: [::1]:59178) +2018/05/04 17:13:06 ruptelaNet.go:208: Close connection(client: [::1]:59178) +2018/05/04 17:13:13 ruptelaNet.go:162: New connection(client: [::1]:59195) +2018/05/04 17:13:13 ruptelaNet.go:162: New connection(client: [::1]:59194) +2018/05/04 17:13:13 ruptelaNet.go:208: Close connection(client: [::1]:59194) +2018/05/04 17:13:13 ruptelaNet.go:208: Close connection(client: [::1]:59195) +2018/05/04 17:13:13 ruptelaNet.go:162: New connection(client: [::1]:59196) +2018/05/04 17:13:13 ruptelaNet.go:208: Close connection(client: [::1]:59196) +2018/05/04 17:13:43 ruptelaNet.go:162: New connection(client: [::1]:59226) +2018/05/04 17:13:43 ruptelaNet.go:162: New connection(client: [::1]:59225) +2018/05/04 17:13:43 ruptelaNet.go:208: Close connection(client: [::1]:59225) +2018/05/04 17:13:43 ruptelaNet.go:208: Close connection(client: [::1]:59226) +2018/05/04 17:13:43 ruptelaNet.go:162: New connection(client: [::1]:59227) +2018/05/04 17:13:43 ruptelaNet.go:208: Close connection(client: [::1]:59227) +2018/05/04 17:14:43 ruptelaNet.go:162: New connection(client: [::1]:59255) +2018/05/04 17:14:43 ruptelaNet.go:162: New connection(client: [::1]:59254) +2018/05/04 17:14:43 ruptelaNet.go:208: Close connection(client: [::1]:59254) +2018/05/04 17:14:43 ruptelaNet.go:208: Close connection(client: [::1]:59255) +2018/05/04 17:14:43 ruptelaNet.go:162: New connection(client: [::1]:59261) +2018/05/04 17:14:43 ruptelaNet.go:208: Close connection(client: [::1]:59261) +2018/05/04 17:19:43 ruptelaNet.go:162: New connection(client: [::1]:59410) +2018/05/04 17:19:43 ruptelaNet.go:162: New connection(client: [::1]:59411) +2018/05/04 17:19:43 ruptelaNet.go:208: Close connection(client: [::1]:59410) +2018/05/04 17:19:43 ruptelaNet.go:208: Close connection(client: [::1]:59411) +2018/05/04 17:19:43 ruptelaNet.go:162: New connection(client: [::1]:59412) +2018/05/04 17:19:43 ruptelaNet.go:208: Close connection(client: [::1]:59412) +2018/05/04 17:58:59 ruptelaNet.go:143: Signal: terminated +2018/05/05 13:24:32 ruptelaNet.go:137: listening: [::]:8081 +2018/05/05 13:27:04 ruptelaNet.go:143: Signal: interrupt +2018/05/05 13:27:17 ruptelaNet.go:137: listening: [::]:8081 +2018/05/05 13:27:31 ruptelaNet.go:143: Signal: interrupt +2018/05/05 13:34:27 ruptelaNet.go:137: listening: [::]:8081 +2018/05/05 13:39:02 ruptelaNet.go:162: New connection(client: 127.0.0.1:51133) +2018/05/05 13:39:02 ruptelaNet.go:162: New connection(client: 127.0.0.1:51135) +2018/05/05 13:39:02 ruptelaNet.go:182: Data received(client: 127.0.0.1:51133, IMEI: 868204004279898) +2018/05/05 13:39:02 ruptelaNet.go:162: New connection(client: 127.0.0.1:51134) +2018/05/05 13:39:02 ruptelaNet.go:182: Data received(client: 127.0.0.1:51135, IMEI: 13226005504143) +2018/05/05 13:39:02 ruptelaNet.go:208: Close connection(client: 127.0.0.1:51133) +2018/05/05 13:39:02 ruptelaNet.go:182: Data received(client: 127.0.0.1:51134, IMEI: 12207007303107) +2018/05/05 13:39:02 ruptela.go:183: IMEI: 13226005504143, insert-id: 0, nrows: 1 +2018/05/05 13:39:02 ruptela.go:183: IMEI: 12207007303107, insert-id: 0, nrows: 1 +2018/05/05 13:39:02 ruptelaNet.go:208: Close connection(client: 127.0.0.1:51135) +2018/05/05 13:39:02 ruptelaNet.go:208: Close connection(client: 127.0.0.1:51134) +2018/05/05 13:39:02 ruptelaNet.go:162: New connection(client: [::1]:51138) +2018/05/05 13:39:02 ruptelaNet.go:162: New connection(client: [::1]:51139) +2018/05/05 13:39:02 ruptelaNet.go:208: Close connection(client: [::1]:51138) +2018/05/05 13:39:02 ruptelaNet.go:197: Get message error = Get http://localhost:8081/api/13226005504143: read tcp [::1]:51138->[::1]:8081: read: connection reset by peer +2018/05/05 13:39:02 ruptelaNet.go:208: Close connection(client: [::1]:51139) +2018/05/05 13:39:02 ruptelaNet.go:197: Get message error = Get http://localhost:8081/api/12207007303107: read tcp [::1]:51139->[::1]:8081: read: connection reset by peer +2018/05/05 13:42:17 ruptelaNet.go:143: Signal: terminated +2018/07/16 17:35:12 ruptelaNet.go:108: DB connection error: pq: password authentication failed for user "postgres" +2018/08/10 15:10:49 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:10:54 ruptelaNet.go:162: New connection(client: [::1]:49770) +2018/08/10 15:11:27 ruptelaNet.go:208: Close connection(client: [::1]:49770) +2018/08/10 15:11:30 ruptelaNet.go:162: New connection(client: [::1]:49771) +2018/08/10 15:12:04 ruptelaNet.go:208: Close connection(client: [::1]:49771) +2018/08/10 15:12:07 ruptelaNet.go:162: New connection(client: [::1]:49774) +2018/08/10 15:12:38 ruptelaNet.go:208: Close connection(client: [::1]:49774) +2018/08/10 15:12:44 ruptelaNet.go:162: New connection(client: [::1]:49775) +2018/08/10 15:13:14 ruptelaNet.go:208: Close connection(client: [::1]:49775) +2018/08/10 15:13:19 ruptelaNet.go:162: New connection(client: [::1]:49777) +2018/08/10 15:13:50 ruptelaNet.go:208: Close connection(client: [::1]:49777) +2018/08/10 15:13:55 ruptelaNet.go:162: New connection(client: [::1]:49779) +2018/08/10 15:14:26 ruptelaNet.go:208: Close connection(client: [::1]:49779) +2018/08/10 15:14:30 ruptelaNet.go:162: New connection(client: [::1]:49781) +2018/08/10 15:15:02 ruptelaNet.go:208: Close connection(client: [::1]:49781) +2018/08/10 15:15:07 ruptelaNet.go:162: New connection(client: [::1]:49783) +2018/08/10 15:15:38 ruptelaNet.go:208: Close connection(client: [::1]:49783) +2018/08/10 15:15:44 ruptelaNet.go:162: New connection(client: [::1]:49785) +2018/08/10 15:16:15 ruptelaNet.go:208: Close connection(client: [::1]:49785) +2018/08/10 15:16:20 ruptelaNet.go:162: New connection(client: [::1]:49786) +2018/08/10 15:16:34 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:16:34 ruptelaNet.go:208: Close connection(client: [::1]:49786) +2018/08/10 15:17:06 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:17:14 ruptelaNet.go:162: New connection(client: [::1]:49801) +2018/08/10 15:17:18 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:17:18 ruptelaNet.go:208: Close connection(client: [::1]:49801) +2018/08/10 15:20:27 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:20:29 ruptelaNet.go:162: New connection(client: [::1]:49844) +2018/08/10 15:20:31 ruptelaNet.go:237: error :Uvarint did not consume the byte value +2018/08/10 15:20:31 ruptelaNet.go:239: data packet length : 0 +2018/08/10 15:20:31 ruptelaNet.go:237: error :Uvarint did not consume the byte value +2018/08/10 15:20:31 ruptelaNet.go:239: data packet length : 50 +2018/08/10 15:20:31 ruptelaNet.go:179: Error verifying Ruptela packet: 000f3335 + Err=Packet size is too small (< 4) +2018/08/10 15:20:31 ruptelaNet.go:182: Data received(client: [::1]:49844, IMEI: 0) +2018/08/10 15:20:34 ruptelaNet.go:208: Close connection(client: [::1]:49844) +2018/08/10 15:20:39 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:29:47 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:30:06 ruptelaNet.go:162: New connection(client: [::1]:49954) +2018/08/10 15:30:07 ruptelaNet.go:236: data packet length : 3840 +2018/08/10 15:30:07 ruptelaNet.go:208: Close connection(client: [::1]:49954) +2018/08/10 15:30:16 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:31:20 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:31:30 ruptelaNet.go:162: New connection(client: [::1]:49968) +2018/08/10 15:31:31 ruptelaNet.go:236: data packet length : 15 +2018/08/10 15:32:02 ruptelaNet.go:208: Close connection(client: [::1]:49968) +2018/08/10 15:32:05 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:32:06 ruptelaNet.go:162: New connection(client: [::1]:49970) +2018/08/10 15:32:06 ruptelaNet.go:208: Close connection(client: [::1]:49970) +2018/08/10 15:38:45 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:38:46 ruptelaNet.go:162: New connection(client: [::1]:50024) +2018/08/10 15:38:47 ruptelaNet.go:237: data packet length : 15 +2018/08/10 15:38:47 ruptelaNet.go:180: Error verifying Ruptela packet: 000f333532303934303837393832363731 + Err=Size field mismatched (!17) +2018/08/10 15:38:47 ruptelaNet.go:183: Data received(client: [::1]:50024, IMEI: 0) +2018/08/10 15:38:49 ruptelaNet.go:209: Close connection(client: [::1]:50024) +2018/08/10 15:39:01 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:40:40 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:40:55 ruptelaNet.go:162: New connection(client: [::1]:50043) +2018/08/10 15:40:56 ruptelaNet.go:237: data packet length : 15 +2018/08/10 15:40:56 ruptelaNet.go:180: Error verifying Ruptela packet: 000f333532303934303837393832363731 + Err=Size field mismatched (!17) +2018/08/10 15:40:56 ruptelaNet.go:183: Data received(client: [::1]:50043, IMEI: 0) +2018/08/10 15:40:58 ruptelaNet.go:209: Close connection(client: [::1]:50043) +2018/08/10 15:41:00 ruptelaNet.go:143: Signal: interrupt +2018/08/10 15:41:30 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 15:42:24 ruptelaNet.go:162: New connection(client: [::1]:50049) +2018/08/10 15:42:25 ruptelaNet.go:237: data packet length : 15 +2018/08/10 15:42:25 ruptelaNet.go:180: Error verifying Ruptela packet: 000f333532303934303837393832363731 + Err=Invalid Ruptela packet (CRC-16 does not match) +2018/08/10 15:42:25 ruptelaNet.go:183: Data received(client: [::1]:50049, IMEI: 0) +2018/08/10 15:42:28 ruptelaNet.go:209: Close connection(client: [::1]:50049) +2018/08/10 15:42:31 ruptelaNet.go:143: Signal: interrupt +2018/08/10 16:17:15 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 16:17:23 ruptelaNet.go:162: New connection(client: [::1]:50229) +2018/08/10 16:17:24 ruptelaNet.go:237: data packet length : 15 +2018/08/10 16:17:24 ruptelaNet.go:183: Data received(client: [::1]:50229, IMEI: 3335323039343038) +2018/08/10 16:17:26 ruptelaNet.go:209: Close connection(client: [::1]:50229) +2018/08/10 16:17:30 ruptelaNet.go:143: Signal: interrupt +2018/08/10 16:25:56 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 16:28:11 ruptelaNet.go:162: New connection(client: [::1]:50256) +2018/08/10 16:28:13 ruptelaNet.go:237: data packet length : 15 +2018/08/10 16:28:13 ruptelaNet.go:183: Data received(client: [::1]:50256, IMEI: 352094087982671) +2018/08/10 16:28:15 ruptelaNet.go:209: Close connection(client: [::1]:50256) +2018/08/10 16:28:22 ruptelaNet.go:143: Signal: interrupt +2018/08/10 16:55:32 ruptelaNet.go:137: listening: [::]:4000 +2018/08/10 17:00:23 ruptelaNet.go:162: New connection(client: [::1]:50352) +2018/08/10 17:00:23 ruptelaNet.go:237: data packet length : 15 +2018/08/10 17:00:23 ruptelaNet.go:183: Data received(client: [::1]:50352, IMEI: 352094087982671) +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:26 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:26 ruptelaNet.go:183: Data received(client: [::1]:50352, IMEI: 0) +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 462 +2018/08/10 17:00:26 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:26 ruptelaNet.go:183: Data received(client: [::1]:50352, IMEI: 0) +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:26 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:26 ruptelaNet.go:183: Data received(client: [::1]:50352, IMEI: 0) +2018/08/10 17:00:26 ruptelaNet.go:237: data packet length : 16622 +2018/08/10 17:00:26 ruptelaNet.go:180: Error verifying Ruptela packet: 01ce080f0000015ebc8a97a8000f1568922092638a00c600c00b00000000000000000000016522c58a40003fa6819efc444d4700ba00bd0600060000000000000000016522c59210003fa6813afc444d7900bc01630600060000000000000000016522ca25f0003fa68ce2fc444f5c005600390d00000000000000000000016522ceb9d0003fa68bb6fc444e41003801541000000000000000000000016522d34db0003fa68bc6fc444f7e0035013b1000000000000000000000016522d7e190003fa68bc6fc444f7e0035013b1100000000000000000000016522dc7570003fa68cc0fc444dcc003000671200000000000000000000016522e10950003fa68d35fc444e20002f00921200000000000000000000016522e59d30003fa68bf8fc444dbc002e01521200000000000000000000016522e7e720003fa68f29fc444d8a002d00241000070000000000000000016522e7eef0003fa68f29fc444dcc002c00081000060000000000000000016522e82d70003fa68dfdfc444bfa002d00c31200001801000118000000000000016522e86420003fa68d99fc444ca0002c01601200031801000118000100000000016522e86808003fa68d99fc444ce3002c015f1200031801000118000300000f + Err=Invalid Imei +2018/08/10 17:00:26 ruptelaNet.go:183: Data received(client: [::1]:50352, IMEI: 0) +2018/08/10 17:00:26 ruptelaNet.go:209: Close connection(client: [::1]:50352) +2018/08/10 17:00:52 ruptelaNet.go:162: New connection(client: [::1]:50353) +2018/08/10 17:00:53 ruptelaNet.go:237: data packet length : 15 +2018/08/10 17:00:53 ruptelaNet.go:183: Data received(client: [::1]:50353, IMEI: 352094087982671) +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:56 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:56 ruptelaNet.go:183: Data received(client: [::1]:50353, IMEI: 0) +2018/08/10 17:00:56 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:56 ruptelaNet.go:183: Data received(client: [::1]:50353, IMEI: 0) +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 462 +2018/08/10 17:00:56 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:00:56 ruptelaNet.go:183: Data received(client: [::1]:50353, IMEI: 0) +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:00:56 ruptelaNet.go:237: data packet length : 16622 +2018/08/10 17:00:56 ruptelaNet.go:180: Error verifying Ruptela packet: 01ce080f0000015ebc8a97a8000f1568922092638a00c600c00b00000000000000000000016522c58a40003fa6819efc444d4700ba00bd0600060000000000000000016522c59210003fa6813afc444d7900bc01630600060000000000000000016522ca25f0003fa68ce2fc444f5c005600390d00000000000000000000016522ceb9d0003fa68bb6fc444e41003801541000000000000000000000016522d34db0003fa68bc6fc444f7e0035013b1000000000000000000000016522d7e190003fa68bc6fc444f7e0035013b1100000000000000000000016522dc7570003fa68cc0fc444dcc003000671200000000000000000000016522e10950003fa68d35fc444e20002f00921200000000000000000000016522e59d30003fa68bf8fc444dbc002e01521200000000000000000000016522e7e720003fa68f29fc444d8a002d00241000070000000000000000016522e7eef0003fa68f29fc444dcc002c00081000060000000000000000016522e82d70003fa68dfdfc444bfa002d00c31200001801000118000000000000016522e86420003fa68d99fc444ca0002c01601200031801000118000100000000016522e86808003fa68d99fc444ce3002c015f1200031801000118000300000f + Err=Invalid Imei +2018/08/10 17:00:56 ruptelaNet.go:183: Data received(client: [::1]:50353, IMEI: 0) +2018/08/10 17:00:56 ruptelaNet.go:209: Close connection(client: [::1]:50353) +2018/08/10 17:01:05 ruptelaNet.go:162: New connection(client: [::1]:50354) +2018/08/10 17:01:05 ruptelaNet.go:237: data packet length : 1281 +2018/08/10 17:01:05 ruptelaNet.go:209: Close connection(client: [::1]:50354) +2018/08/10 17:01:07 ruptelaNet.go:162: New connection(client: [::1]:50355) +2018/08/10 17:01:07 ruptelaNet.go:237: data packet length : 1025 +2018/08/10 17:01:07 ruptelaNet.go:209: Close connection(client: [::1]:50355) +2018/08/10 17:01:25 ruptelaNet.go:162: New connection(client: [::1]:50357) +2018/08/10 17:01:26 ruptelaNet.go:237: data packet length : 15 +2018/08/10 17:01:26 ruptelaNet.go:183: Data received(client: [::1]:50357, IMEI: 352094087982671) +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 462 +2018/08/10 17:01:30 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:01:30 ruptelaNet.go:183: Data received(client: [::1]:50357, IMEI: 0) +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:01:30 ruptelaNet.go:237: data packet length : 16622 +2018/08/10 17:01:30 ruptelaNet.go:209: Close connection(client: [::1]:50357) +2018/08/10 17:01:30 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:01:30 ruptelaNet.go:183: Data received(client: [::1]:50357, IMEI: 0) +2018/08/10 17:01:57 ruptelaNet.go:162: New connection(client: [::1]:50361) +2018/08/10 17:01:58 ruptelaNet.go:237: data packet length : 15 +2018/08/10 17:01:58 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 352094087982671) +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:02 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:02 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 0) +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 462 +2018/08/10 17:02:02 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:02 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 0) +2018/08/10 17:02:02 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:02 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 0) +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:02 ruptelaNet.go:180: Error verifying Ruptela packet: 01ce080f0000015ebc8a97a8000f1568922092638a00c600c00b00000000000000000000016522c58a40003fa6819efc444d4700ba00bd0600060000000000000000016522c59210003fa6813afc444d7900bc01630600060000000000000000016522ca25f0003fa68ce2fc444f5c005600390d00000000000000000000016522ceb9d0003fa68bb6fc444e41003801541000000000000000000000016522d34db0003fa68bc6fc444f7e0035013b1000000000000000000000016522d7e190003fa68bc6fc444f7e0035013b1100000000000000000000016522dc7570003fa68cc0fc444dcc003000671200000000000000000000016522e10950003fa68d35fc444e20002f00921200000000000000000000016522e59d30003fa68bf8fc444dbc002e01521200000000000000000000016522e7e720003fa68f29fc444d8a002d00241000070000000000000000016522e7eef0003fa68f29fc444dcc002c00081000060000000000000000016522e82d70003fa68dfdfc444bfa002d00c31200001801000118000000000000016522e86420003fa68d99fc444ca0002c01601200031801000118000100000000016522e86808003fa68d99fc444ce3002c015f1200031801000118000300000f + Err=Invalid Imei +2018/08/10 17:02:02 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 0) +2018/08/10 17:02:02 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:02 ruptelaNet.go:183: Data received(client: [::1]:50361, IMEI: 0) +2018/08/10 17:02:02 ruptelaNet.go:237: data packet length : 16622 +2018/08/10 17:02:02 ruptelaNet.go:209: Close connection(client: [::1]:50361) +2018/08/10 17:02:31 ruptelaNet.go:162: New connection(client: [::1]:50362) +2018/08/10 17:02:33 ruptelaNet.go:237: data packet length : 15 +2018/08/10 17:02:33 ruptelaNet.go:183: Data received(client: [::1]:50362, IMEI: 352094087982671) +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:36 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:36 ruptelaNet.go:183: Data received(client: [::1]:50362, IMEI: 0) +2018/08/10 17:02:36 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:36 ruptelaNet.go:183: Data received(client: [::1]:50362, IMEI: 0) +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 462 +2018/08/10 17:02:36 ruptelaNet.go:180: Error verifying Ruptela packet: 0000 + Err=Packet size is too small (< 2) +2018/08/10 17:02:36 ruptelaNet.go:183: Data received(client: [::1]:50362, IMEI: 0) +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 0 +2018/08/10 17:02:36 ruptelaNet.go:237: data packet length : 16622 +2018/08/10 17:02:36 ruptelaNet.go:180: Error verifying Ruptela packet: 01ce080f0000015ebc8a97a8000f1568922092638a00c600c00b00000000000000000000016522c58a40003fa6819efc444d4700ba00bd0600060000000000000000016522c59210003fa6813afc444d7900bc01630600060000000000000000016522ca25f0003fa68ce2fc444f5c005600390d00000000000000000000016522ceb9d0003fa68bb6fc444e41003801541000000000000000000000016522d34db0003fa68bc6fc444f7e0035013b1000000000000000000000016522d7e190003fa68bc6fc444f7e0035013b1100000000000000000000016522dc7570003fa68cc0fc444dcc003000671200000000000000000000016522e10950003fa68d35fc444e20002f00921200000000000000000000016522e59d30003fa68bf8fc444dbc002e01521200000000000000000000016522e7e720003fa68f29fc444d8a002d00241000070000000000000000016522e7eef0003fa68f29fc444dcc002c00081000060000000000000000016522e82d70003fa68dfdfc444bfa002d00c31200001801000118000000000000016522e86420003fa68d99fc444ca0002c01601200031801000118000100000000016522e86808003fa68d99fc444ce3002c015f1200031801000118000300000f + Err=Invalid Imei +2018/08/10 17:02:36 ruptelaNet.go:183: Data received(client: [::1]:50362, IMEI: 0) +2018/08/10 17:02:36 ruptelaNet.go:209: Close connection(client: [::1]:50362) +2018/08/10 17:03:02 ruptelaNet.go:162: New connection(client: [::1]:50365) +2018/08/10 17:03:03 ruptelaNet.go:143: Signal: interrupt +2018/08/10 17:03:03 ruptelaNet.go:209: Close connection(client: [::1]:50365) +2018/08/11 14:55:37 ruptelaNet.go:145: listening: [::]:4000 +2018/08/11 14:57:10 ruptelaNet.go:170: New connection(client: [::1]:54452) +2018/08/11 14:57:11 ruptelaNet.go:298: data packet length : 15 +2018/08/11 14:57:11 ruptelaNet.go:215: Data received(client: [::1]:54452, IMEI: 352094087982671) +2018/08/11 14:57:15 ruptelaNet.go:298: data packet length : 462 +2018/08/11 14:57:15 ruptelaNet.go:215: Data received(client: [::1]:54452, IMEI: 0) +2018/08/11 14:57:15 ruptela.go:183: IMEI: 0, insert-id: 0, nrows: 1 +2018/08/11 14:57:18 ruptelaNet.go:237: Close connection(client: [::1]:54452) +2018/08/11 14:57:35 ruptelaNet.go:151: Signal: interrupt +2018/08/11 15:07:13 ruptelaNet.go:145: listening: [::]:4000 +2018/08/11 15:07:28 ruptelaNet.go:170: New connection(client: [::1]:54528) +2018/08/11 15:07:30 ruptelaNet.go:299: data packet length : 15 +2018/08/11 15:07:30 ruptelaNet.go:216: Data received(client: [::1]:54528, IMEI: 352094087982671) +2018/08/11 15:07:33 ruptelaNet.go:299: data packet length : 462 +2018/08/11 15:07:33 ruptelaNet.go:216: Data received(client: [::1]:54528, IMEI: 352094087982671) +2018/08/11 15:07:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:07:36 ruptelaNet.go:238: Close connection(client: [::1]:54528) +2018/08/11 15:07:39 ruptelaNet.go:151: Signal: interrupt +2018/08/11 15:11:07 ruptelaNet.go:145: listening: [::]:4000 +2018/08/11 15:11:08 ruptelaNet.go:170: New connection(client: [::1]:54553) +2018/08/11 15:11:09 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:11:09 ruptelaNet.go:217: Data received(client: [::1]:54553, IMEI: 352094087982671) +2018/08/11 15:11:12 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:11:12 ruptelaNet.go:217: Data received(client: [::1]:54553, IMEI: 352094087982671) +2018/08/11 15:11:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:11:15 ruptelaNet.go:239: Close connection(client: [::1]:54553) +2018/08/11 15:11:17 ruptelaNet.go:151: Signal: interrupt +2018/08/11 15:13:56 ruptelaNet.go:145: listening: [::]:4000 +2018/08/11 15:14:05 ruptelaNet.go:170: New connection(client: [::1]:54575) +2018/08/11 15:14:06 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:14:06 ruptelaNet.go:217: Data received(client: [::1]:54575, IMEI: 352094087982671) +2018/08/11 15:14:09 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:14:09 ruptelaNet.go:217: Data received(client: [::1]:54575, IMEI: 352094087982671) +2018/08/11 15:14:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:14:11 ruptelaNet.go:239: Close connection(client: [::1]:54575) +2018/08/11 15:14:35 ruptelaNet.go:170: New connection(client: [::1]:54577) +2018/08/11 15:14:36 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:14:36 ruptelaNet.go:217: Data received(client: [::1]:54577, IMEI: 352094087982671) +2018/08/11 15:14:39 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:14:39 ruptelaNet.go:217: Data received(client: [::1]:54577, IMEI: 352094087982671) +2018/08/11 15:14:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:14:41 ruptelaNet.go:239: Close connection(client: [::1]:54577) +2018/08/11 15:15:04 ruptelaNet.go:170: New connection(client: [::1]:54578) +2018/08/11 15:15:05 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:15:05 ruptelaNet.go:217: Data received(client: [::1]:54578, IMEI: 352094087982671) +2018/08/11 15:15:09 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:15:09 ruptelaNet.go:217: Data received(client: [::1]:54578, IMEI: 352094087982671) +2018/08/11 15:15:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:15:11 ruptelaNet.go:239: Close connection(client: [::1]:54578) +2018/08/11 15:15:33 ruptelaNet.go:170: New connection(client: [::1]:54580) +2018/08/11 15:15:35 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:15:35 ruptelaNet.go:217: Data received(client: [::1]:54580, IMEI: 352094087982671) +2018/08/11 15:15:39 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:15:39 ruptelaNet.go:217: Data received(client: [::1]:54580, IMEI: 352094087982671) +2018/08/11 15:15:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:15:41 ruptelaNet.go:239: Close connection(client: [::1]:54580) +2018/08/11 15:16:04 ruptelaNet.go:170: New connection(client: [::1]:54581) +2018/08/11 15:16:05 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:16:05 ruptelaNet.go:217: Data received(client: [::1]:54581, IMEI: 352094087982671) +2018/08/11 15:16:09 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:16:09 ruptelaNet.go:217: Data received(client: [::1]:54581, IMEI: 352094087982671) +2018/08/11 15:16:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:16:11 ruptelaNet.go:239: Close connection(client: [::1]:54581) +2018/08/11 15:16:33 ruptelaNet.go:170: New connection(client: [::1]:54582) +2018/08/11 15:16:35 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:16:35 ruptelaNet.go:217: Data received(client: [::1]:54582, IMEI: 352094087982671) +2018/08/11 15:16:39 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:16:39 ruptelaNet.go:217: Data received(client: [::1]:54582, IMEI: 352094087982671) +2018/08/11 15:16:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:16:41 ruptelaNet.go:239: Close connection(client: [::1]:54582) +2018/08/11 15:17:05 ruptelaNet.go:170: New connection(client: [::1]:54587) +2018/08/11 15:17:06 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:17:06 ruptelaNet.go:217: Data received(client: [::1]:54587, IMEI: 352094087982671) +2018/08/11 15:17:09 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:17:09 ruptelaNet.go:217: Data received(client: [::1]:54587, IMEI: 352094087982671) +2018/08/11 15:17:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:17:11 ruptelaNet.go:239: Close connection(client: [::1]:54587) +2018/08/11 15:17:33 ruptelaNet.go:170: New connection(client: [::1]:54589) +2018/08/11 15:17:36 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:17:36 ruptelaNet.go:217: Data received(client: [::1]:54589, IMEI: 352094087982671) +2018/08/11 15:17:43 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:17:43 ruptelaNet.go:217: Data received(client: [::1]:54589, IMEI: 352094087982671) +2018/08/11 15:17:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:17:46 ruptelaNet.go:239: Close connection(client: [::1]:54589) +2018/08/11 15:18:08 ruptelaNet.go:170: New connection(client: [::1]:54609) +2018/08/11 15:18:10 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:18:10 ruptelaNet.go:217: Data received(client: [::1]:54609, IMEI: 352094087982671) +2018/08/11 15:18:13 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:18:13 ruptelaNet.go:217: Data received(client: [::1]:54609, IMEI: 352094087982671) +2018/08/11 15:18:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:18:16 ruptelaNet.go:239: Close connection(client: [::1]:54609) +2018/08/11 15:18:38 ruptelaNet.go:170: New connection(client: [::1]:54610) +2018/08/11 15:18:40 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:18:40 ruptelaNet.go:217: Data received(client: [::1]:54610, IMEI: 352094087982671) +2018/08/11 15:18:43 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:18:43 ruptelaNet.go:217: Data received(client: [::1]:54610, IMEI: 352094087982671) +2018/08/11 15:18:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:18:46 ruptelaNet.go:239: Close connection(client: [::1]:54610) +2018/08/11 15:19:09 ruptelaNet.go:170: New connection(client: [::1]:54612) +2018/08/11 15:19:10 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:19:10 ruptelaNet.go:217: Data received(client: [::1]:54612, IMEI: 352094087982671) +2018/08/11 15:19:13 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:19:13 ruptelaNet.go:217: Data received(client: [::1]:54612, IMEI: 352094087982671) +2018/08/11 15:19:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:19:16 ruptelaNet.go:239: Close connection(client: [::1]:54612) +2018/08/11 15:19:38 ruptelaNet.go:170: New connection(client: [::1]:54619) +2018/08/11 15:19:40 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:19:40 ruptelaNet.go:217: Data received(client: [::1]:54619, IMEI: 352094087982671) +2018/08/11 15:19:43 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:19:43 ruptelaNet.go:217: Data received(client: [::1]:54619, IMEI: 352094087982671) +2018/08/11 15:19:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:19:46 ruptelaNet.go:239: Close connection(client: [::1]:54619) +2018/08/11 15:20:09 ruptelaNet.go:170: New connection(client: [::1]:54621) +2018/08/11 15:20:10 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:20:10 ruptelaNet.go:217: Data received(client: [::1]:54621, IMEI: 352094087982671) +2018/08/11 15:20:14 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:20:14 ruptelaNet.go:217: Data received(client: [::1]:54621, IMEI: 352094087982671) +2018/08/11 15:20:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:20:17 ruptelaNet.go:239: Close connection(client: [::1]:54621) +2018/08/11 15:20:40 ruptelaNet.go:170: New connection(client: [::1]:54623) +2018/08/11 15:20:41 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:20:41 ruptelaNet.go:217: Data received(client: [::1]:54623, IMEI: 352094087982671) +2018/08/11 15:20:45 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:20:45 ruptelaNet.go:217: Data received(client: [::1]:54623, IMEI: 352094087982671) +2018/08/11 15:20:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:20:47 ruptelaNet.go:239: Close connection(client: [::1]:54623) +2018/08/11 15:21:09 ruptelaNet.go:170: New connection(client: [::1]:54624) +2018/08/11 15:21:11 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:21:11 ruptelaNet.go:217: Data received(client: [::1]:54624, IMEI: 352094087982671) +2018/08/11 15:21:16 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:21:16 ruptelaNet.go:217: Data received(client: [::1]:54624, IMEI: 352094087982671) +2018/08/11 15:21:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:21:18 ruptelaNet.go:239: Close connection(client: [::1]:54624) +2018/08/11 15:21:41 ruptelaNet.go:170: New connection(client: [::1]:54627) +2018/08/11 15:21:44 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:21:44 ruptelaNet.go:217: Data received(client: [::1]:54627, IMEI: 352094087982671) +2018/08/11 15:21:48 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:21:48 ruptelaNet.go:217: Data received(client: [::1]:54627, IMEI: 352094087982671) +2018/08/11 15:21:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:21:50 ruptelaNet.go:239: Close connection(client: [::1]:54627) +2018/08/11 15:22:13 ruptelaNet.go:170: New connection(client: [::1]:54629) +2018/08/11 15:22:14 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:22:14 ruptelaNet.go:217: Data received(client: [::1]:54629, IMEI: 352094087982671) +2018/08/11 15:22:17 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:22:17 ruptelaNet.go:217: Data received(client: [::1]:54629, IMEI: 352094087982671) +2018/08/11 15:22:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:22:23 ruptelaNet.go:239: Close connection(client: [::1]:54629) +2018/08/11 15:22:46 ruptelaNet.go:170: New connection(client: [::1]:54676) +2018/08/11 15:22:47 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:22:47 ruptelaNet.go:217: Data received(client: [::1]:54676, IMEI: 352094087982671) +2018/08/11 15:22:50 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:22:50 ruptelaNet.go:217: Data received(client: [::1]:54676, IMEI: 352094087982671) +2018/08/11 15:22:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:22:52 ruptelaNet.go:239: Close connection(client: [::1]:54676) +2018/08/11 15:23:16 ruptelaNet.go:170: New connection(client: [::1]:54687) +2018/08/11 15:23:16 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:23:16 ruptelaNet.go:217: Data received(client: [::1]:54687, IMEI: 352094087982671) +2018/08/11 15:23:19 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:23:19 ruptelaNet.go:217: Data received(client: [::1]:54687, IMEI: 352094087982671) +2018/08/11 15:23:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:23:22 ruptelaNet.go:239: Close connection(client: [::1]:54687) +2018/08/11 15:23:45 ruptelaNet.go:170: New connection(client: [::1]:54694) +2018/08/11 15:23:46 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:23:46 ruptelaNet.go:217: Data received(client: [::1]:54694, IMEI: 352094087982671) +2018/08/11 15:23:49 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:23:49 ruptelaNet.go:217: Data received(client: [::1]:54694, IMEI: 352094087982671) +2018/08/11 15:23:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:23:51 ruptelaNet.go:239: Close connection(client: [::1]:54694) +2018/08/11 15:24:13 ruptelaNet.go:170: New connection(client: [::1]:54696) +2018/08/11 15:24:15 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:24:15 ruptelaNet.go:217: Data received(client: [::1]:54696, IMEI: 352094087982671) +2018/08/11 15:24:19 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:24:19 ruptelaNet.go:217: Data received(client: [::1]:54696, IMEI: 352094087982671) +2018/08/11 15:24:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:24:40 ruptelaNet.go:239: Close connection(client: [::1]:54696) +2018/08/11 15:25:03 ruptelaNet.go:170: New connection(client: [::1]:54697) +2018/08/11 15:25:04 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:25:04 ruptelaNet.go:217: Data received(client: [::1]:54697, IMEI: 352094087982671) +2018/08/11 15:25:07 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:25:07 ruptelaNet.go:217: Data received(client: [::1]:54697, IMEI: 352094087982671) +2018/08/11 15:25:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:25:09 ruptelaNet.go:239: Close connection(client: [::1]:54697) +2018/08/11 15:25:32 ruptelaNet.go:170: New connection(client: [::1]:54702) +2018/08/11 15:25:34 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:25:34 ruptelaNet.go:217: Data received(client: [::1]:54702, IMEI: 352094087982671) +2018/08/11 15:25:37 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:25:37 ruptelaNet.go:217: Data received(client: [::1]:54702, IMEI: 352094087982671) +2018/08/11 15:25:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:25:39 ruptelaNet.go:239: Close connection(client: [::1]:54702) +2018/08/11 15:26:03 ruptelaNet.go:170: New connection(client: [::1]:54703) +2018/08/11 15:26:04 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:26:04 ruptelaNet.go:217: Data received(client: [::1]:54703, IMEI: 352094087982671) +2018/08/11 15:26:07 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:26:07 ruptelaNet.go:217: Data received(client: [::1]:54703, IMEI: 352094087982671) +2018/08/11 15:26:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:26:19 ruptelaNet.go:239: Close connection(client: [::1]:54703) +2018/08/11 15:26:41 ruptelaNet.go:170: New connection(client: [::1]:54705) +2018/08/11 15:26:43 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:26:43 ruptelaNet.go:217: Data received(client: [::1]:54705, IMEI: 352094087982671) +2018/08/11 15:26:46 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:26:46 ruptelaNet.go:217: Data received(client: [::1]:54705, IMEI: 352094087982671) +2018/08/11 15:26:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:26:49 ruptelaNet.go:239: Close connection(client: [::1]:54705) +2018/08/11 15:27:12 ruptelaNet.go:170: New connection(client: [::1]:54736) +2018/08/11 15:27:13 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:27:13 ruptelaNet.go:217: Data received(client: [::1]:54736, IMEI: 352094087982671) +2018/08/11 15:27:16 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:27:16 ruptelaNet.go:217: Data received(client: [::1]:54736, IMEI: 352094087982671) +2018/08/11 15:27:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:27:18 ruptelaNet.go:239: Close connection(client: [::1]:54736) +2018/08/11 15:27:41 ruptelaNet.go:170: New connection(client: [::1]:54739) +2018/08/11 15:27:43 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:27:43 ruptelaNet.go:217: Data received(client: [::1]:54739, IMEI: 352094087982671) +2018/08/11 15:27:47 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:27:47 ruptelaNet.go:217: Data received(client: [::1]:54739, IMEI: 352094087982671) +2018/08/11 15:27:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:27:49 ruptelaNet.go:239: Close connection(client: [::1]:54739) +2018/08/11 15:28:12 ruptelaNet.go:170: New connection(client: [::1]:54740) +2018/08/11 15:28:14 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:28:14 ruptelaNet.go:217: Data received(client: [::1]:54740, IMEI: 352094087982671) +2018/08/11 15:28:17 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:28:17 ruptelaNet.go:217: Data received(client: [::1]:54740, IMEI: 352094087982671) +2018/08/11 15:28:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:28:19 ruptelaNet.go:239: Close connection(client: [::1]:54740) +2018/08/11 15:28:42 ruptelaNet.go:170: New connection(client: [::1]:54742) +2018/08/11 15:28:43 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:28:43 ruptelaNet.go:217: Data received(client: [::1]:54742, IMEI: 352094087982671) +2018/08/11 15:28:46 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:28:46 ruptelaNet.go:217: Data received(client: [::1]:54742, IMEI: 352094087982671) +2018/08/11 15:28:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:28:49 ruptelaNet.go:239: Close connection(client: [::1]:54742) +2018/08/11 15:29:11 ruptelaNet.go:170: New connection(client: [::1]:54745) +2018/08/11 15:29:13 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:29:13 ruptelaNet.go:217: Data received(client: [::1]:54745, IMEI: 352094087982671) +2018/08/11 15:29:17 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:29:17 ruptelaNet.go:217: Data received(client: [::1]:54745, IMEI: 352094087982671) +2018/08/11 15:29:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:29:19 ruptelaNet.go:239: Close connection(client: [::1]:54745) +2018/08/11 15:29:42 ruptelaNet.go:170: New connection(client: [::1]:54746) +2018/08/11 15:29:44 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:29:44 ruptelaNet.go:217: Data received(client: [::1]:54746, IMEI: 352094087982671) +2018/08/11 15:29:47 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:29:47 ruptelaNet.go:217: Data received(client: [::1]:54746, IMEI: 352094087982671) +2018/08/11 15:29:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:29:49 ruptelaNet.go:239: Close connection(client: [::1]:54746) +2018/08/11 15:30:12 ruptelaNet.go:170: New connection(client: [::1]:54748) +2018/08/11 15:30:13 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:30:13 ruptelaNet.go:217: Data received(client: [::1]:54748, IMEI: 352094087982671) +2018/08/11 15:30:16 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:30:16 ruptelaNet.go:217: Data received(client: [::1]:54748, IMEI: 352094087982671) +2018/08/11 15:30:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:30:18 ruptelaNet.go:239: Close connection(client: [::1]:54748) +2018/08/11 15:30:42 ruptelaNet.go:170: New connection(client: [::1]:54749) +2018/08/11 15:30:43 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:30:43 ruptelaNet.go:217: Data received(client: [::1]:54749, IMEI: 352094087982671) +2018/08/11 15:30:46 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:30:46 ruptelaNet.go:217: Data received(client: [::1]:54749, IMEI: 352094087982671) +2018/08/11 15:30:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:30:49 ruptelaNet.go:239: Close connection(client: [::1]:54749) +2018/08/11 15:31:12 ruptelaNet.go:170: New connection(client: [::1]:54750) +2018/08/11 15:31:13 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:31:13 ruptelaNet.go:217: Data received(client: [::1]:54750, IMEI: 352094087982671) +2018/08/11 15:31:16 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:31:16 ruptelaNet.go:217: Data received(client: [::1]:54750, IMEI: 352094087982671) +2018/08/11 15:31:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:31:18 ruptelaNet.go:239: Close connection(client: [::1]:54750) +2018/08/11 15:31:41 ruptelaNet.go:170: New connection(client: [::1]:54752) +2018/08/11 15:31:42 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:31:42 ruptelaNet.go:217: Data received(client: [::1]:54752, IMEI: 352094087982671) +2018/08/11 15:31:45 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:31:45 ruptelaNet.go:217: Data received(client: [::1]:54752, IMEI: 352094087982671) +2018/08/11 15:31:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:31:48 ruptelaNet.go:239: Close connection(client: [::1]:54752) +2018/08/11 15:32:11 ruptelaNet.go:170: New connection(client: [::1]:54753) +2018/08/11 15:32:12 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:32:12 ruptelaNet.go:217: Data received(client: [::1]:54753, IMEI: 352094087982671) +2018/08/11 15:32:16 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:32:16 ruptelaNet.go:217: Data received(client: [::1]:54753, IMEI: 352094087982671) +2018/08/11 15:32:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:32:23 ruptelaNet.go:239: Close connection(client: [::1]:54753) +2018/08/11 15:32:46 ruptelaNet.go:170: New connection(client: [::1]:54755) +2018/08/11 15:32:47 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:32:47 ruptelaNet.go:217: Data received(client: [::1]:54755, IMEI: 352094087982671) +2018/08/11 15:32:51 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:32:51 ruptelaNet.go:217: Data received(client: [::1]:54755, IMEI: 352094087982671) +2018/08/11 15:32:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:32:53 ruptelaNet.go:239: Close connection(client: [::1]:54755) +2018/08/11 15:33:16 ruptelaNet.go:170: New connection(client: [::1]:54757) +2018/08/11 15:33:17 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:33:17 ruptelaNet.go:217: Data received(client: [::1]:54757, IMEI: 352094087982671) +2018/08/11 15:33:21 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:33:21 ruptelaNet.go:217: Data received(client: [::1]:54757, IMEI: 352094087982671) +2018/08/11 15:33:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:33:23 ruptelaNet.go:239: Close connection(client: [::1]:54757) +2018/08/11 15:33:47 ruptelaNet.go:170: New connection(client: [::1]:54764) +2018/08/11 15:33:48 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:33:48 ruptelaNet.go:217: Data received(client: [::1]:54764, IMEI: 352094087982671) +2018/08/11 15:33:52 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:33:52 ruptelaNet.go:217: Data received(client: [::1]:54764, IMEI: 352094087982671) +2018/08/11 15:33:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:33:58 ruptelaNet.go:239: Close connection(client: [::1]:54764) +2018/08/11 15:34:21 ruptelaNet.go:170: New connection(client: [::1]:54908) +2018/08/11 15:34:22 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:34:22 ruptelaNet.go:217: Data received(client: [::1]:54908, IMEI: 352094087982671) +2018/08/11 15:34:26 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:34:26 ruptelaNet.go:217: Data received(client: [::1]:54908, IMEI: 352094087982671) +2018/08/11 15:34:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:34:32 ruptelaNet.go:239: Close connection(client: [::1]:54908) +2018/08/11 15:34:55 ruptelaNet.go:170: New connection(client: [::1]:55104) +2018/08/11 15:34:56 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:34:56 ruptelaNet.go:217: Data received(client: [::1]:55104, IMEI: 352094087982671) +2018/08/11 15:34:59 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:34:59 ruptelaNet.go:217: Data received(client: [::1]:55104, IMEI: 352094087982671) +2018/08/11 15:34:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:35:01 ruptelaNet.go:239: Close connection(client: [::1]:55104) +2018/08/11 15:35:25 ruptelaNet.go:170: New connection(client: [::1]:55263) +2018/08/11 15:35:26 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:35:26 ruptelaNet.go:217: Data received(client: [::1]:55263, IMEI: 352094087982671) +2018/08/11 15:35:29 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:35:29 ruptelaNet.go:217: Data received(client: [::1]:55263, IMEI: 352094087982671) +2018/08/11 15:35:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:35:31 ruptelaNet.go:239: Close connection(client: [::1]:55263) +2018/08/11 15:35:54 ruptelaNet.go:170: New connection(client: [::1]:55411) +2018/08/11 15:35:56 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:35:56 ruptelaNet.go:217: Data received(client: [::1]:55411, IMEI: 352094087982671) +2018/08/11 15:35:59 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:35:59 ruptelaNet.go:217: Data received(client: [::1]:55411, IMEI: 352094087982671) +2018/08/11 15:35:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:36:02 ruptelaNet.go:239: Close connection(client: [::1]:55411) +2018/08/11 15:36:25 ruptelaNet.go:170: New connection(client: [::1]:55570) +2018/08/11 15:36:26 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:36:26 ruptelaNet.go:217: Data received(client: [::1]:55570, IMEI: 352094087982671) +2018/08/11 15:36:29 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:36:29 ruptelaNet.go:217: Data received(client: [::1]:55570, IMEI: 352094087982671) +2018/08/11 15:36:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:36:42 ruptelaNet.go:239: Close connection(client: [::1]:55570) +2018/08/11 15:37:05 ruptelaNet.go:170: New connection(client: [::1]:55694) +2018/08/11 15:37:06 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:37:06 ruptelaNet.go:217: Data received(client: [::1]:55694, IMEI: 352094087982671) +2018/08/11 15:37:10 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:37:10 ruptelaNet.go:217: Data received(client: [::1]:55694, IMEI: 352094087982671) +2018/08/11 15:37:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:37:13 ruptelaNet.go:239: Close connection(client: [::1]:55694) +2018/08/11 15:37:36 ruptelaNet.go:170: New connection(client: [::1]:55777) +2018/08/11 15:37:37 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:37:37 ruptelaNet.go:217: Data received(client: [::1]:55777, IMEI: 352094087982671) +2018/08/11 15:37:41 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:37:41 ruptelaNet.go:217: Data received(client: [::1]:55777, IMEI: 352094087982671) +2018/08/11 15:37:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:37:43 ruptelaNet.go:239: Close connection(client: [::1]:55777) +2018/08/11 15:38:02 ruptelaNet.go:151: Signal: interrupt +2018/08/11 15:38:06 ruptelaNet.go:170: New connection(client: [::1]:55859) +2018/08/11 15:38:06 ruptelaNet.go:239: Close connection(client: [::1]:55859) +2018/08/11 15:43:13 ruptelaNet.go:145: listening: [::]:4000 +2018/08/11 15:43:20 ruptelaNet.go:170: New connection(client: [::1]:56655) +2018/08/11 15:43:21 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:43:21 ruptelaNet.go:217: Data received(client: [::1]:56655, IMEI: 352094087982671) +2018/08/11 15:43:25 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:43:25 ruptelaNet.go:217: Data received(client: [::1]:56655, IMEI: 352094087982671) +2018/08/11 15:43:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:43:27 ruptelaNet.go:239: Close connection(client: [::1]:56655) +2018/08/11 15:43:50 ruptelaNet.go:170: New connection(client: [::1]:56734) +2018/08/11 15:43:51 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:43:51 ruptelaNet.go:217: Data received(client: [::1]:56734, IMEI: 352094087982671) +2018/08/11 15:43:55 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:43:55 ruptelaNet.go:217: Data received(client: [::1]:56734, IMEI: 352094087982671) +2018/08/11 15:43:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:43:57 ruptelaNet.go:239: Close connection(client: [::1]:56734) +2018/08/11 15:44:23 ruptelaNet.go:170: New connection(client: [::1]:56821) +2018/08/11 15:44:23 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:44:23 ruptelaNet.go:217: Data received(client: [::1]:56821, IMEI: 352094087982671) +2018/08/11 15:44:26 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:44:26 ruptelaNet.go:217: Data received(client: [::1]:56821, IMEI: 352094087982671) +2018/08/11 15:44:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:44:28 ruptelaNet.go:239: Close connection(client: [::1]:56821) +2018/08/11 15:46:39 ruptelaNet.go:170: New connection(client: [::1]:56924) +2018/08/11 15:46:40 ruptelaNet.go:300: data packet length : 15 +2018/08/11 15:46:40 ruptelaNet.go:217: Data received(client: [::1]:56924, IMEI: 352094087982671) +2018/08/11 15:46:44 ruptelaNet.go:300: data packet length : 462 +2018/08/11 15:46:44 ruptelaNet.go:217: Data received(client: [::1]:56924, IMEI: 352094087982671) +2018/08/11 15:46:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 15:46:47 ruptelaNet.go:239: Close connection(client: [::1]:56924) +2018/08/11 17:15:46 ruptelaNet.go:170: New connection(client: [::1]:57011) +2018/08/11 17:15:47 ruptelaNet.go:300: data packet length : 15 +2018/08/11 17:15:47 ruptelaNet.go:217: Data received(client: [::1]:57011, IMEI: 352094087982671) +2018/08/11 17:15:51 ruptelaNet.go:300: data packet length : 462 +2018/08/11 17:15:51 ruptelaNet.go:217: Data received(client: [::1]:57011, IMEI: 352094087982671) +2018/08/11 17:15:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/11 17:15:53 ruptelaNet.go:239: Close connection(client: [::1]:57011) +2018/08/11 23:20:02 ruptelaNet.go:170: New connection(client: [::1]:58182) +2018/08/11 23:20:32 ruptelaNet.go:239: Close connection(client: [::1]:58182) +2018/08/11 23:42:51 ruptelaNet.go:170: New connection(client: [::1]:60956) +2018/08/11 23:43:06 ruptelaNet.go:239: Close connection(client: [::1]:60956) +2018/08/11 23:43:07 ruptelaNet.go:170: New connection(client: [::1]:60988) +2018/08/11 23:43:22 ruptelaNet.go:239: Close connection(client: [::1]:60988) +2018/08/11 23:47:52 ruptelaNet.go:170: New connection(client: [::1]:61558) +2018/08/11 23:48:07 ruptelaNet.go:239: Close connection(client: [::1]:61558) +2018/08/11 23:48:08 ruptelaNet.go:170: New connection(client: [::1]:61588) +2018/08/11 23:48:23 ruptelaNet.go:239: Close connection(client: [::1]:61588) +2018/08/11 23:49:51 ruptelaNet.go:170: New connection(client: [::1]:61803) +2018/08/11 23:50:06 ruptelaNet.go:239: Close connection(client: [::1]:61803) +2018/08/11 23:50:07 ruptelaNet.go:170: New connection(client: [::1]:61834) +2018/08/11 23:50:22 ruptelaNet.go:239: Close connection(client: [::1]:61834) +2018/08/11 23:58:54 ruptelaNet.go:170: New connection(client: [::1]:62962) +2018/08/11 23:59:09 ruptelaNet.go:239: Close connection(client: [::1]:62962) +2018/08/11 23:59:10 ruptelaNet.go:170: New connection(client: [::1]:62994) +2018/08/11 23:59:25 ruptelaNet.go:239: Close connection(client: [::1]:62994) +2018/08/12 00:06:46 ruptelaNet.go:170: New connection(client: [::1]:64031) +2018/08/12 00:07:01 ruptelaNet.go:239: Close connection(client: [::1]:64031) +2018/08/12 00:07:01 ruptelaNet.go:170: New connection(client: [::1]:64060) +2018/08/12 00:07:17 ruptelaNet.go:239: Close connection(client: [::1]:64060) +2018/08/12 02:48:01 ruptelaNet.go:170: New connection(client: [::1]:57419) +2018/08/12 02:48:17 ruptelaNet.go:239: Close connection(client: [::1]:57419) +2018/08/12 02:48:17 ruptelaNet.go:170: New connection(client: [::1]:57420) +2018/08/12 02:48:33 ruptelaNet.go:239: Close connection(client: [::1]:57420) +2018/08/12 21:31:47 ruptelaNet.go:170: New connection(client: [::1]:57904) +2018/08/12 21:31:48 ruptelaNet.go:239: Close connection(client: [::1]:57904) +2018/08/12 21:37:36 ruptelaNet.go:170: New connection(client: [::1]:57925) +2018/08/12 21:38:06 ruptelaNet.go:239: Close connection(client: [::1]:57925) +2018/08/12 21:38:06 ruptelaNet.go:170: New connection(client: [::1]:57938) +2018/08/12 21:38:06 ruptelaNet.go:239: Close connection(client: [::1]:57938) +2018/08/13 07:58:33 ruptelaNet.go:151: Signal: interrupt +2018/08/13 11:06:38 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 11:37:23 ruptelaNet.go:170: New connection(client: [::1]:58959) +2018/08/13 11:37:39 ruptelaNet.go:239: Close connection(client: [::1]:58959) +2018/08/13 11:37:39 ruptelaNet.go:170: New connection(client: [::1]:58960) +2018/08/13 11:37:54 ruptelaNet.go:239: Close connection(client: [::1]:58960) +2018/08/13 11:57:45 ruptelaNet.go:151: Signal: interrupt +2018/08/13 11:58:02 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 13:53:09 ruptelaNet.go:151: Signal: interrupt +2018/08/13 13:53:18 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 13:57:12 ruptelaNet.go:170: New connection(client: [::1]:59427) +2018/08/13 13:57:27 ruptelaNet.go:239: Close connection(client: [::1]:59427) +2018/08/13 13:57:28 ruptelaNet.go:170: New connection(client: [::1]:59428) +2018/08/13 13:57:43 ruptelaNet.go:239: Close connection(client: [::1]:59428) +2018/08/13 13:58:21 ruptelaNet.go:151: Signal: interrupt +2018/08/13 13:59:40 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 14:06:01 ruptelaNet.go:170: New connection(client: [::1]:59460) +2018/08/13 14:06:15 ruptelaNet.go:239: Close connection(client: [::1]:59460) +2018/08/13 14:06:16 ruptelaNet.go:170: New connection(client: [::1]:59461) +2018/08/13 14:06:31 ruptelaNet.go:239: Close connection(client: [::1]:59461) +2018/08/13 14:09:11 ruptelaNet.go:170: New connection(client: [::1]:59478) +2018/08/13 14:09:27 ruptelaNet.go:239: Close connection(client: [::1]:59478) +2018/08/13 14:09:27 ruptelaNet.go:170: New connection(client: [::1]:59479) +2018/08/13 14:09:42 ruptelaNet.go:239: Close connection(client: [::1]:59479) +2018/08/13 14:41:13 ruptelaNet.go:151: Signal: interrupt +2018/08/13 14:50:16 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:02:30 ruptelaNet.go:170: New connection(client: [::1]:59708) +2018/08/13 15:02:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:02:30 ruptelaNet.go:217: Data received(client: [::1]:59708, IMEI: 352094087230394) +2018/08/13 15:02:59 ruptelaNet.go:239: Close connection(client: [::1]:59708) +2018/08/13 15:03:29 ruptelaNet.go:170: New connection(client: [::1]:59710) +2018/08/13 15:03:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:03:29 ruptelaNet.go:217: Data received(client: [::1]:59710, IMEI: 352094087230394) +2018/08/13 15:03:59 ruptelaNet.go:239: Close connection(client: [::1]:59710) +2018/08/13 15:04:28 ruptelaNet.go:170: New connection(client: [::1]:59715) +2018/08/13 15:04:28 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:04:28 ruptelaNet.go:217: Data received(client: [::1]:59715, IMEI: 352094087230394) +2018/08/13 15:04:58 ruptelaNet.go:239: Close connection(client: [::1]:59715) +2018/08/13 15:05:28 ruptelaNet.go:170: New connection(client: [::1]:59722) +2018/08/13 15:05:28 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:05:28 ruptelaNet.go:217: Data received(client: [::1]:59722, IMEI: 352094087230394) +2018/08/13 15:05:59 ruptelaNet.go:239: Close connection(client: [::1]:59722) +2018/08/13 15:06:29 ruptelaNet.go:170: New connection(client: [::1]:59727) +2018/08/13 15:06:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:06:29 ruptelaNet.go:217: Data received(client: [::1]:59727, IMEI: 352094087230394) +2018/08/13 15:06:59 ruptelaNet.go:239: Close connection(client: [::1]:59727) +2018/08/13 15:07:28 ruptelaNet.go:170: New connection(client: [::1]:59729) +2018/08/13 15:07:28 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:07:28 ruptelaNet.go:217: Data received(client: [::1]:59729, IMEI: 352094087230394) +2018/08/13 15:07:58 ruptelaNet.go:239: Close connection(client: [::1]:59729) +2018/08/13 15:08:28 ruptelaNet.go:170: New connection(client: [::1]:59732) +2018/08/13 15:08:28 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:08:28 ruptelaNet.go:217: Data received(client: [::1]:59732, IMEI: 352094087230394) +2018/08/13 15:08:58 ruptelaNet.go:239: Close connection(client: [::1]:59732) +2018/08/13 15:09:33 ruptelaNet.go:170: New connection(client: [::1]:59738) +2018/08/13 15:09:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:09:33 ruptelaNet.go:217: Data received(client: [::1]:59738, IMEI: 352094087230394) +2018/08/13 15:10:03 ruptelaNet.go:239: Close connection(client: [::1]:59738) +2018/08/13 15:10:28 ruptelaNet.go:170: New connection(client: [::1]:59741) +2018/08/13 15:10:28 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:10:28 ruptelaNet.go:217: Data received(client: [::1]:59741, IMEI: 352094087230394) +2018/08/13 15:10:37 ruptelaNet.go:151: Signal: interrupt +2018/08/13 15:10:37 ruptelaNet.go:239: Close connection(client: [::1]:59741) +2018/08/13 15:10:45 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:11:29 ruptelaNet.go:170: New connection(client: [::1]:59749) +2018/08/13 15:11:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:11:29 ruptelaNet.go:217: Data received(client: [::1]:59749, IMEI: 352094087230394) +2018/08/13 15:12:01 ruptelaNet.go:239: Close connection(client: [::1]:59749) +2018/08/13 15:12:33 ruptelaNet.go:170: New connection(client: [::1]:59753) +2018/08/13 15:12:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:12:33 ruptelaNet.go:217: Data received(client: [::1]:59753, IMEI: 352094087230394) +2018/08/13 15:13:05 ruptelaNet.go:239: Close connection(client: [::1]:59753) +2018/08/13 15:13:33 ruptelaNet.go:170: New connection(client: [::1]:59756) +2018/08/13 15:13:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:13:33 ruptelaNet.go:217: Data received(client: [::1]:59756, IMEI: 352094087230394) +2018/08/13 15:14:03 ruptelaNet.go:239: Close connection(client: [::1]:59756) +2018/08/13 15:14:09 ruptelaNet.go:151: Signal: interrupt +2018/08/13 15:14:16 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:14:29 ruptelaNet.go:170: New connection(client: [::1]:59763) +2018/08/13 15:14:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:14:29 ruptelaNet.go:217: Data received(client: [::1]:59763, IMEI: 352094087230394) +2018/08/13 15:14:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59763, IMEI: 352094087230394) +2018/08/13 15:14:59 ruptelaNet.go:239: Close connection(client: [::1]:59763) +2018/08/13 15:15:29 ruptelaNet.go:170: New connection(client: [::1]:59764) +2018/08/13 15:15:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:15:29 ruptelaNet.go:217: Data received(client: [::1]:59764, IMEI: 352094087230394) +2018/08/13 15:15:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59764, IMEI: 352094087230394) +2018/08/13 15:15:59 ruptelaNet.go:239: Close connection(client: [::1]:59764) +2018/08/13 15:16:29 ruptelaNet.go:170: New connection(client: [::1]:59776) +2018/08/13 15:16:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:16:29 ruptelaNet.go:217: Data received(client: [::1]:59776, IMEI: 352094087230394) +2018/08/13 15:16:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59776, IMEI: 352094087230394) +2018/08/13 15:16:59 ruptelaNet.go:239: Close connection(client: [::1]:59776) +2018/08/13 15:17:29 ruptelaNet.go:170: New connection(client: [::1]:59780) +2018/08/13 15:17:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:17:29 ruptelaNet.go:217: Data received(client: [::1]:59780, IMEI: 352094087230394) +2018/08/13 15:17:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59780, IMEI: 352094087230394) +2018/08/13 15:17:59 ruptelaNet.go:239: Close connection(client: [::1]:59780) +2018/08/13 15:18:29 ruptelaNet.go:170: New connection(client: [::1]:59792) +2018/08/13 15:18:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:18:29 ruptelaNet.go:217: Data received(client: [::1]:59792, IMEI: 352094087230394) +2018/08/13 15:18:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59792, IMEI: 352094087230394) +2018/08/13 15:18:59 ruptelaNet.go:239: Close connection(client: [::1]:59792) +2018/08/13 15:19:29 ruptelaNet.go:170: New connection(client: [::1]:59795) +2018/08/13 15:19:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:19:30 ruptelaNet.go:217: Data received(client: [::1]:59795, IMEI: 352094087230394) +2018/08/13 15:19:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59795, IMEI: 352094087230394) +2018/08/13 15:20:00 ruptelaNet.go:239: Close connection(client: [::1]:59795) +2018/08/13 15:20:29 ruptelaNet.go:170: New connection(client: [::1]:59796) +2018/08/13 15:20:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:20:29 ruptelaNet.go:217: Data received(client: [::1]:59796, IMEI: 352094087230394) +2018/08/13 15:20:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59796, IMEI: 352094087230394) +2018/08/13 15:20:59 ruptelaNet.go:239: Close connection(client: [::1]:59796) +2018/08/13 15:21:30 ruptelaNet.go:170: New connection(client: [::1]:59801) +2018/08/13 15:21:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:21:30 ruptelaNet.go:217: Data received(client: [::1]:59801, IMEI: 352094087230394) +2018/08/13 15:21:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59801, IMEI: 352094087230394) +2018/08/13 15:22:00 ruptelaNet.go:239: Close connection(client: [::1]:59801) +2018/08/13 15:22:30 ruptelaNet.go:170: New connection(client: [::1]:59803) +2018/08/13 15:22:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:22:30 ruptelaNet.go:217: Data received(client: [::1]:59803, IMEI: 352094087230394) +2018/08/13 15:22:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59803, IMEI: 352094087230394) +2018/08/13 15:23:00 ruptelaNet.go:239: Close connection(client: [::1]:59803) +2018/08/13 15:23:30 ruptelaNet.go:170: New connection(client: [::1]:59806) +2018/08/13 15:23:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:23:30 ruptelaNet.go:217: Data received(client: [::1]:59806, IMEI: 352094087230394) +2018/08/13 15:23:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59806, IMEI: 352094087230394) +2018/08/13 15:24:00 ruptelaNet.go:239: Close connection(client: [::1]:59806) +2018/08/13 15:24:30 ruptelaNet.go:170: New connection(client: [::1]:59809) +2018/08/13 15:24:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:24:30 ruptelaNet.go:217: Data received(client: [::1]:59809, IMEI: 352094087230394) +2018/08/13 15:24:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59809, IMEI: 352094087230394) +2018/08/13 15:25:00 ruptelaNet.go:239: Close connection(client: [::1]:59809) +2018/08/13 15:25:30 ruptelaNet.go:170: New connection(client: [::1]:59819) +2018/08/13 15:25:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:25:30 ruptelaNet.go:217: Data received(client: [::1]:59819, IMEI: 352094087230394) +2018/08/13 15:25:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59819, IMEI: 352094087230394) +2018/08/13 15:26:00 ruptelaNet.go:239: Close connection(client: [::1]:59819) +2018/08/13 15:26:30 ruptelaNet.go:170: New connection(client: [::1]:59821) +2018/08/13 15:26:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:26:30 ruptelaNet.go:217: Data received(client: [::1]:59821, IMEI: 352094087230394) +2018/08/13 15:26:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59821, IMEI: 352094087230394) +2018/08/13 15:27:00 ruptelaNet.go:239: Close connection(client: [::1]:59821) +2018/08/13 15:27:30 ruptelaNet.go:170: New connection(client: [::1]:59825) +2018/08/13 15:27:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:27:30 ruptelaNet.go:217: Data received(client: [::1]:59825, IMEI: 352094087230394) +2018/08/13 15:27:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59825, IMEI: 352094087230394) +2018/08/13 15:28:01 ruptelaNet.go:239: Close connection(client: [::1]:59825) +2018/08/13 15:28:30 ruptelaNet.go:170: New connection(client: [::1]:59829) +2018/08/13 15:28:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:28:31 ruptelaNet.go:217: Data received(client: [::1]:59829, IMEI: 352094087230394) +2018/08/13 15:28:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59829, IMEI: 352094087230394) +2018/08/13 15:29:00 ruptelaNet.go:239: Close connection(client: [::1]:59829) +2018/08/13 15:29:30 ruptelaNet.go:170: New connection(client: [::1]:59884) +2018/08/13 15:29:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:29:31 ruptelaNet.go:217: Data received(client: [::1]:59884, IMEI: 352094087230394) +2018/08/13 15:29:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59884, IMEI: 352094087230394) +2018/08/13 15:30:01 ruptelaNet.go:239: Close connection(client: [::1]:59884) +2018/08/13 15:30:31 ruptelaNet.go:170: New connection(client: [::1]:59890) +2018/08/13 15:30:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:30:31 ruptelaNet.go:217: Data received(client: [::1]:59890, IMEI: 352094087230394) +2018/08/13 15:30:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59890, IMEI: 352094087230394) +2018/08/13 15:31:01 ruptelaNet.go:239: Close connection(client: [::1]:59890) +2018/08/13 15:31:31 ruptelaNet.go:170: New connection(client: [::1]:59900) +2018/08/13 15:31:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:31:31 ruptelaNet.go:217: Data received(client: [::1]:59900, IMEI: 352094087230394) +2018/08/13 15:31:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59900, IMEI: 352094087230394) +2018/08/13 15:32:01 ruptelaNet.go:239: Close connection(client: [::1]:59900) +2018/08/13 15:32:07 ruptelaNet.go:170: New connection(client: [::1]:59901) +2018/08/13 15:32:22 ruptelaNet.go:239: Close connection(client: [::1]:59901) +2018/08/13 15:32:23 ruptelaNet.go:170: New connection(client: [::1]:59902) +2018/08/13 15:32:31 ruptelaNet.go:170: New connection(client: [::1]:59904) +2018/08/13 15:32:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:32:31 ruptelaNet.go:217: Data received(client: [::1]:59904, IMEI: 352094087230394) +2018/08/13 15:32:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59904, IMEI: 352094087230394) +2018/08/13 15:32:38 ruptelaNet.go:239: Close connection(client: [::1]:59902) +2018/08/13 15:33:01 ruptelaNet.go:239: Close connection(client: [::1]:59904) +2018/08/13 15:33:31 ruptelaNet.go:170: New connection(client: [::1]:59914) +2018/08/13 15:33:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:33:31 ruptelaNet.go:217: Data received(client: [::1]:59914, IMEI: 352094087230394) +2018/08/13 15:33:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59914, IMEI: 352094087230394) +2018/08/13 15:34:01 ruptelaNet.go:239: Close connection(client: [::1]:59914) +2018/08/13 15:34:31 ruptelaNet.go:170: New connection(client: [::1]:59919) +2018/08/13 15:34:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:34:31 ruptelaNet.go:217: Data received(client: [::1]:59919, IMEI: 352094087230394) +2018/08/13 15:34:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59919, IMEI: 352094087230394) +2018/08/13 15:35:01 ruptelaNet.go:239: Close connection(client: [::1]:59919) +2018/08/13 15:35:31 ruptelaNet.go:170: New connection(client: [::1]:59923) +2018/08/13 15:35:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:35:31 ruptelaNet.go:217: Data received(client: [::1]:59923, IMEI: 352094087230394) +2018/08/13 15:35:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59923, IMEI: 352094087230394) +2018/08/13 15:36:02 ruptelaNet.go:239: Close connection(client: [::1]:59923) +2018/08/13 15:36:31 ruptelaNet.go:170: New connection(client: [::1]:59927) +2018/08/13 15:36:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:36:31 ruptelaNet.go:217: Data received(client: [::1]:59927, IMEI: 352094087230394) +2018/08/13 15:36:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59927, IMEI: 352094087230394) +2018/08/13 15:37:01 ruptelaNet.go:239: Close connection(client: [::1]:59927) +2018/08/13 15:37:32 ruptelaNet.go:170: New connection(client: [::1]:59930) +2018/08/13 15:37:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:37:32 ruptelaNet.go:217: Data received(client: [::1]:59930, IMEI: 352094087230394) +2018/08/13 15:37:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59930, IMEI: 352094087230394) +2018/08/13 15:38:01 ruptelaNet.go:239: Close connection(client: [::1]:59930) +2018/08/13 15:38:32 ruptelaNet.go:170: New connection(client: [::1]:59945) +2018/08/13 15:38:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:38:32 ruptelaNet.go:217: Data received(client: [::1]:59945, IMEI: 352094087230394) +2018/08/13 15:38:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59945, IMEI: 352094087230394) +2018/08/13 15:39:02 ruptelaNet.go:239: Close connection(client: [::1]:59945) +2018/08/13 15:39:31 ruptelaNet.go:170: New connection(client: [::1]:59946) +2018/08/13 15:39:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:39:31 ruptelaNet.go:217: Data received(client: [::1]:59946, IMEI: 352094087230394) +2018/08/13 15:39:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59946, IMEI: 352094087230394) +2018/08/13 15:40:02 ruptelaNet.go:239: Close connection(client: [::1]:59946) +2018/08/13 15:40:32 ruptelaNet.go:170: New connection(client: [::1]:59951) +2018/08/13 15:40:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:40:32 ruptelaNet.go:217: Data received(client: [::1]:59951, IMEI: 352094087230394) +2018/08/13 15:40:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59951, IMEI: 352094087230394) +2018/08/13 15:41:02 ruptelaNet.go:239: Close connection(client: [::1]:59951) +2018/08/13 15:41:32 ruptelaNet.go:170: New connection(client: [::1]:59955) +2018/08/13 15:41:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:41:32 ruptelaNet.go:217: Data received(client: [::1]:59955, IMEI: 352094087230394) +2018/08/13 15:41:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59955, IMEI: 352094087230394) +2018/08/13 15:42:02 ruptelaNet.go:239: Close connection(client: [::1]:59955) +2018/08/13 15:42:32 ruptelaNet.go:170: New connection(client: [::1]:59956) +2018/08/13 15:42:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:42:32 ruptelaNet.go:217: Data received(client: [::1]:59956, IMEI: 352094087230394) +2018/08/13 15:42:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59956, IMEI: 352094087230394) +2018/08/13 15:43:02 ruptelaNet.go:239: Close connection(client: [::1]:59956) +2018/08/13 15:43:34 ruptelaNet.go:170: New connection(client: [::1]:59963) +2018/08/13 15:43:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:43:34 ruptelaNet.go:217: Data received(client: [::1]:59963, IMEI: 352094087230394) +2018/08/13 15:43:34 ruptelaNet.go:231: Sent ACK (client: [::1]:59963, IMEI: 352094087230394) +2018/08/13 15:44:04 ruptelaNet.go:239: Close connection(client: [::1]:59963) +2018/08/13 15:44:32 ruptelaNet.go:170: New connection(client: [::1]:59964) +2018/08/13 15:44:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:44:32 ruptelaNet.go:217: Data received(client: [::1]:59964, IMEI: 352094087230394) +2018/08/13 15:44:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59964, IMEI: 352094087230394) +2018/08/13 15:45:02 ruptelaNet.go:239: Close connection(client: [::1]:59964) +2018/08/13 15:45:32 ruptelaNet.go:170: New connection(client: [::1]:59973) +2018/08/13 15:45:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:45:32 ruptelaNet.go:217: Data received(client: [::1]:59973, IMEI: 352094087230394) +2018/08/13 15:45:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59973, IMEI: 352094087230394) +2018/08/13 15:46:02 ruptelaNet.go:239: Close connection(client: [::1]:59973) +2018/08/13 15:46:32 ruptelaNet.go:170: New connection(client: [::1]:59976) +2018/08/13 15:46:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:46:32 ruptelaNet.go:217: Data received(client: [::1]:59976, IMEI: 352094087230394) +2018/08/13 15:46:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59976, IMEI: 352094087230394) +2018/08/13 15:47:02 ruptelaNet.go:239: Close connection(client: [::1]:59976) +2018/08/13 15:47:32 ruptelaNet.go:170: New connection(client: [::1]:59982) +2018/08/13 15:47:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:47:32 ruptelaNet.go:217: Data received(client: [::1]:59982, IMEI: 352094087230394) +2018/08/13 15:47:32 ruptelaNet.go:231: Sent ACK (client: [::1]:59982, IMEI: 352094087230394) +2018/08/13 15:48:02 ruptelaNet.go:239: Close connection(client: [::1]:59982) +2018/08/13 15:48:33 ruptelaNet.go:170: New connection(client: [::1]:59987) +2018/08/13 15:48:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:48:33 ruptelaNet.go:217: Data received(client: [::1]:59987, IMEI: 352094087230394) +2018/08/13 15:48:33 ruptelaNet.go:231: Sent ACK (client: [::1]:59987, IMEI: 352094087230394) +2018/08/13 15:48:57 ruptelaNet.go:151: Signal: interrupt +2018/08/13 15:48:57 ruptelaNet.go:239: Close connection(client: [::1]:59987) +2018/08/13 15:49:10 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:49:33 ruptelaNet.go:170: New connection(client: [::1]:59992) +2018/08/13 15:49:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:49:33 ruptelaNet.go:217: Data received(client: [::1]:59992, IMEI: 352094087230394) +2018/08/13 15:49:33 ruptelaNet.go:231: Sent ACK (client: [::1]:59992, IMEI: 352094087230394) +2018/08/13 15:50:03 ruptelaNet.go:239: Close connection(client: [::1]:59992) +2018/08/13 15:50:33 ruptelaNet.go:170: New connection(client: [::1]:59996) +2018/08/13 15:50:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:50:33 ruptelaNet.go:217: Data received(client: [::1]:59996, IMEI: 352094087230394) +2018/08/13 15:50:33 ruptelaNet.go:231: Sent ACK (client: [::1]:59996, IMEI: 352094087230394) +2018/08/13 15:50:53 ruptelaNet.go:151: Signal: interrupt +2018/08/13 15:50:53 ruptelaNet.go:239: Close connection(client: [::1]:59996) +2018/08/13 15:50:57 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:51:33 ruptelaNet.go:170: New connection(client: [::1]:60000) +2018/08/13 15:51:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:51:33 ruptelaNet.go:217: Data received(client: [::1]:60000, IMEI: 352094087230394) +2018/08/13 15:51:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60000, IMEI: 352094087230394) +2018/08/13 15:51:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:51:35 ruptelaNet.go:217: Data received(client: [::1]:60000, IMEI: 352094087230394) +2018/08/13 15:51:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:51:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60000, IMEI: 352094087230394) +2018/08/13 15:51:36 ruptelaNet.go:239: Close connection(client: [::1]:60000) +2018/08/13 15:52:33 ruptelaNet.go:170: New connection(client: [::1]:60001) +2018/08/13 15:52:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:52:33 ruptelaNet.go:217: Data received(client: [::1]:60001, IMEI: 352094087230394) +2018/08/13 15:52:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60001, IMEI: 352094087230394) +2018/08/13 15:52:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:52:35 ruptelaNet.go:217: Data received(client: [::1]:60001, IMEI: 352094087230394) +2018/08/13 15:52:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:52:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60001, IMEI: 352094087230394) +2018/08/13 15:52:37 ruptelaNet.go:239: Close connection(client: [::1]:60001) +2018/08/13 15:53:37 ruptelaNet.go:170: New connection(client: [::1]:60006) +2018/08/13 15:53:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:53:37 ruptelaNet.go:217: Data received(client: [::1]:60006, IMEI: 352094087230394) +2018/08/13 15:53:37 ruptelaNet.go:231: Sent ACK (client: [::1]:60006, IMEI: 352094087230394) +2018/08/13 15:53:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:53:41 ruptelaNet.go:217: Data received(client: [::1]:60006, IMEI: 352094087230394) +2018/08/13 15:53:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:53:41 ruptelaNet.go:231: Sent ACK (client: [::1]:60006, IMEI: 352094087230394) +2018/08/13 15:53:42 ruptelaNet.go:239: Close connection(client: [::1]:60006) +2018/08/13 15:54:33 ruptelaNet.go:170: New connection(client: [::1]:60008) +2018/08/13 15:54:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:54:33 ruptelaNet.go:217: Data received(client: [::1]:60008, IMEI: 352094087230394) +2018/08/13 15:54:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60008, IMEI: 352094087230394) +2018/08/13 15:54:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:54:35 ruptelaNet.go:217: Data received(client: [::1]:60008, IMEI: 352094087230394) +2018/08/13 15:54:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:54:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60008, IMEI: 352094087230394) +2018/08/13 15:54:36 ruptelaNet.go:239: Close connection(client: [::1]:60008) +2018/08/13 15:55:11 ruptelaNet.go:151: Signal: interrupt +2018/08/13 15:56:07 ruptelaNet.go:145: listening: [::]:4000 +2018/08/13 15:56:33 ruptelaNet.go:170: New connection(client: [::1]:60034) +2018/08/13 15:56:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:56:33 ruptelaNet.go:217: Data received(client: [::1]:60034, IMEI: 352094087230394) +2018/08/13 15:56:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60034, IMEI: 352094087230394) +2018/08/13 15:56:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:56:35 ruptelaNet.go:217: Data received(client: [::1]:60034, IMEI: 352094087230394) +2018/08/13 15:56:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:56:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60034, IMEI: 352094087230394) +2018/08/13 15:56:37 ruptelaNet.go:239: Close connection(client: [::1]:60034) +2018/08/13 15:57:33 ruptelaNet.go:170: New connection(client: [::1]:60038) +2018/08/13 15:57:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:57:33 ruptelaNet.go:217: Data received(client: [::1]:60038, IMEI: 352094087230394) +2018/08/13 15:57:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60038, IMEI: 352094087230394) +2018/08/13 15:57:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:57:35 ruptelaNet.go:217: Data received(client: [::1]:60038, IMEI: 352094087230394) +2018/08/13 15:57:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:57:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60038, IMEI: 352094087230394) +2018/08/13 15:57:37 ruptelaNet.go:239: Close connection(client: [::1]:60038) +2018/08/13 15:58:33 ruptelaNet.go:170: New connection(client: [::1]:60046) +2018/08/13 15:58:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:58:33 ruptelaNet.go:217: Data received(client: [::1]:60046, IMEI: 352094087230394) +2018/08/13 15:58:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60046, IMEI: 352094087230394) +2018/08/13 15:58:35 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:58:35 ruptelaNet.go:217: Data received(client: [::1]:60046, IMEI: 352094087230394) +2018/08/13 15:58:35 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:58:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60046, IMEI: 352094087230394) +2018/08/13 15:58:37 ruptelaNet.go:239: Close connection(client: [::1]:60046) +2018/08/13 15:59:33 ruptelaNet.go:170: New connection(client: [::1]:60049) +2018/08/13 15:59:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 15:59:33 ruptelaNet.go:217: Data received(client: [::1]:60049, IMEI: 352094087230394) +2018/08/13 15:59:33 ruptelaNet.go:231: Sent ACK (client: [::1]:60049, IMEI: 352094087230394) +2018/08/13 15:59:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 15:59:36 ruptelaNet.go:217: Data received(client: [::1]:60049, IMEI: 352094087230394) +2018/08/13 15:59:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 15:59:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60049, IMEI: 352094087230394) +2018/08/13 15:59:37 ruptelaNet.go:239: Close connection(client: [::1]:60049) +2018/08/13 16:00:34 ruptelaNet.go:170: New connection(client: [::1]:60052) +2018/08/13 16:00:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:00:34 ruptelaNet.go:217: Data received(client: [::1]:60052, IMEI: 352094087230394) +2018/08/13 16:00:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60052, IMEI: 352094087230394) +2018/08/13 16:00:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:00:36 ruptelaNet.go:217: Data received(client: [::1]:60052, IMEI: 352094087230394) +2018/08/13 16:00:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:00:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60052, IMEI: 352094087230394) +2018/08/13 16:00:37 ruptelaNet.go:239: Close connection(client: [::1]:60052) +2018/08/13 16:01:34 ruptelaNet.go:170: New connection(client: [::1]:60057) +2018/08/13 16:01:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:01:34 ruptelaNet.go:217: Data received(client: [::1]:60057, IMEI: 352094087230394) +2018/08/13 16:01:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60057, IMEI: 352094087230394) +2018/08/13 16:01:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:01:36 ruptelaNet.go:217: Data received(client: [::1]:60057, IMEI: 352094087230394) +2018/08/13 16:01:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:01:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60057, IMEI: 352094087230394) +2018/08/13 16:01:37 ruptelaNet.go:239: Close connection(client: [::1]:60057) +2018/08/13 16:02:12 ruptelaNet.go:170: New connection(client: [::1]:60059) +2018/08/13 16:02:13 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:02:13 ruptelaNet.go:217: Data received(client: [::1]:60059, IMEI: 352094087982671) +2018/08/13 16:02:13 ruptelaNet.go:231: Sent ACK (client: [::1]:60059, IMEI: 352094087982671) +2018/08/13 16:02:17 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:02:17 ruptelaNet.go:217: Data received(client: [::1]:60059, IMEI: 352094087982671) +2018/08/13 16:02:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:02:17 ruptelaNet.go:231: Sent ACK (client: [::1]:60059, IMEI: 352094087982671) +2018/08/13 16:02:19 ruptelaNet.go:239: Close connection(client: [::1]:60059) +2018/08/13 16:02:34 ruptelaNet.go:170: New connection(client: [::1]:60060) +2018/08/13 16:02:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:02:34 ruptelaNet.go:217: Data received(client: [::1]:60060, IMEI: 352094087230394) +2018/08/13 16:02:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60060, IMEI: 352094087230394) +2018/08/13 16:02:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:02:36 ruptelaNet.go:217: Data received(client: [::1]:60060, IMEI: 352094087230394) +2018/08/13 16:02:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:02:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60060, IMEI: 352094087230394) +2018/08/13 16:02:37 ruptelaNet.go:239: Close connection(client: [::1]:60060) +2018/08/13 16:02:42 ruptelaNet.go:170: New connection(client: [::1]:60061) +2018/08/13 16:02:43 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:02:43 ruptelaNet.go:217: Data received(client: [::1]:60061, IMEI: 352094087982671) +2018/08/13 16:02:43 ruptelaNet.go:231: Sent ACK (client: [::1]:60061, IMEI: 352094087982671) +2018/08/13 16:02:47 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:02:47 ruptelaNet.go:217: Data received(client: [::1]:60061, IMEI: 352094087982671) +2018/08/13 16:02:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:02:47 ruptelaNet.go:231: Sent ACK (client: [::1]:60061, IMEI: 352094087982671) +2018/08/13 16:02:49 ruptelaNet.go:239: Close connection(client: [::1]:60061) +2018/08/13 16:03:12 ruptelaNet.go:170: New connection(client: [::1]:60066) +2018/08/13 16:03:14 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:03:14 ruptelaNet.go:217: Data received(client: [::1]:60066, IMEI: 352094087982671) +2018/08/13 16:03:14 ruptelaNet.go:231: Sent ACK (client: [::1]:60066, IMEI: 352094087982671) +2018/08/13 16:03:18 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:03:18 ruptelaNet.go:217: Data received(client: [::1]:60066, IMEI: 352094087982671) +2018/08/13 16:03:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:03:18 ruptelaNet.go:231: Sent ACK (client: [::1]:60066, IMEI: 352094087982671) +2018/08/13 16:03:20 ruptelaNet.go:239: Close connection(client: [::1]:60066) +2018/08/13 16:03:34 ruptelaNet.go:170: New connection(client: [::1]:60069) +2018/08/13 16:03:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:03:34 ruptelaNet.go:217: Data received(client: [::1]:60069, IMEI: 352094087230394) +2018/08/13 16:03:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60069, IMEI: 352094087230394) +2018/08/13 16:03:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:03:36 ruptelaNet.go:217: Data received(client: [::1]:60069, IMEI: 352094087230394) +2018/08/13 16:03:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:03:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60069, IMEI: 352094087230394) +2018/08/13 16:03:37 ruptelaNet.go:239: Close connection(client: [::1]:60069) +2018/08/13 16:03:43 ruptelaNet.go:170: New connection(client: [::1]:60074) +2018/08/13 16:03:44 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:03:44 ruptelaNet.go:217: Data received(client: [::1]:60074, IMEI: 352094087982671) +2018/08/13 16:03:44 ruptelaNet.go:231: Sent ACK (client: [::1]:60074, IMEI: 352094087982671) +2018/08/13 16:03:47 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:03:47 ruptelaNet.go:217: Data received(client: [::1]:60074, IMEI: 352094087982671) +2018/08/13 16:03:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:03:47 ruptelaNet.go:231: Sent ACK (client: [::1]:60074, IMEI: 352094087982671) +2018/08/13 16:03:51 ruptelaNet.go:239: Close connection(client: [::1]:60074) +2018/08/13 16:04:14 ruptelaNet.go:170: New connection(client: [::1]:60079) +2018/08/13 16:04:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:04:15 ruptelaNet.go:217: Data received(client: [::1]:60079, IMEI: 352094087982671) +2018/08/13 16:04:15 ruptelaNet.go:231: Sent ACK (client: [::1]:60079, IMEI: 352094087982671) +2018/08/13 16:04:19 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:04:19 ruptelaNet.go:217: Data received(client: [::1]:60079, IMEI: 352094087982671) +2018/08/13 16:04:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:04:19 ruptelaNet.go:231: Sent ACK (client: [::1]:60079, IMEI: 352094087982671) +2018/08/13 16:04:22 ruptelaNet.go:239: Close connection(client: [::1]:60079) +2018/08/13 16:04:34 ruptelaNet.go:170: New connection(client: [::1]:60080) +2018/08/13 16:04:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:04:34 ruptelaNet.go:217: Data received(client: [::1]:60080, IMEI: 352094087230394) +2018/08/13 16:04:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60080, IMEI: 352094087230394) +2018/08/13 16:04:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:04:36 ruptelaNet.go:217: Data received(client: [::1]:60080, IMEI: 352094087230394) +2018/08/13 16:04:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:04:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60080, IMEI: 352094087230394) +2018/08/13 16:04:40 ruptelaNet.go:239: Close connection(client: [::1]:60080) +2018/08/13 16:04:45 ruptelaNet.go:170: New connection(client: [::1]:60081) +2018/08/13 16:04:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:04:46 ruptelaNet.go:217: Data received(client: [::1]:60081, IMEI: 352094087982671) +2018/08/13 16:04:46 ruptelaNet.go:231: Sent ACK (client: [::1]:60081, IMEI: 352094087982671) +2018/08/13 16:04:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:04:50 ruptelaNet.go:217: Data received(client: [::1]:60081, IMEI: 352094087982671) +2018/08/13 16:04:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:04:50 ruptelaNet.go:231: Sent ACK (client: [::1]:60081, IMEI: 352094087982671) +2018/08/13 16:04:53 ruptelaNet.go:239: Close connection(client: [::1]:60081) +2018/08/13 16:05:17 ruptelaNet.go:170: New connection(client: [::1]:60083) +2018/08/13 16:05:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:05:17 ruptelaNet.go:217: Data received(client: [::1]:60083, IMEI: 352094087982671) +2018/08/13 16:05:17 ruptelaNet.go:231: Sent ACK (client: [::1]:60083, IMEI: 352094087982671) +2018/08/13 16:05:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:05:21 ruptelaNet.go:217: Data received(client: [::1]:60083, IMEI: 352094087982671) +2018/08/13 16:05:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:05:21 ruptelaNet.go:231: Sent ACK (client: [::1]:60083, IMEI: 352094087982671) +2018/08/13 16:05:23 ruptelaNet.go:239: Close connection(client: [::1]:60083) +2018/08/13 16:05:34 ruptelaNet.go:170: New connection(client: [::1]:60084) +2018/08/13 16:05:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:05:34 ruptelaNet.go:217: Data received(client: [::1]:60084, IMEI: 352094087230394) +2018/08/13 16:05:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60084, IMEI: 352094087230394) +2018/08/13 16:05:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:05:36 ruptelaNet.go:217: Data received(client: [::1]:60084, IMEI: 352094087230394) +2018/08/13 16:05:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:05:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60084, IMEI: 352094087230394) +2018/08/13 16:05:37 ruptelaNet.go:239: Close connection(client: [::1]:60084) +2018/08/13 16:05:46 ruptelaNet.go:170: New connection(client: [::1]:60085) +2018/08/13 16:05:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:05:47 ruptelaNet.go:217: Data received(client: [::1]:60085, IMEI: 352094087982671) +2018/08/13 16:05:47 ruptelaNet.go:231: Sent ACK (client: [::1]:60085, IMEI: 352094087982671) +2018/08/13 16:05:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:05:50 ruptelaNet.go:217: Data received(client: [::1]:60085, IMEI: 352094087982671) +2018/08/13 16:05:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:05:50 ruptelaNet.go:231: Sent ACK (client: [::1]:60085, IMEI: 352094087982671) +2018/08/13 16:05:53 ruptelaNet.go:239: Close connection(client: [::1]:60085) +2018/08/13 16:06:16 ruptelaNet.go:170: New connection(client: [::1]:60087) +2018/08/13 16:06:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:06:17 ruptelaNet.go:217: Data received(client: [::1]:60087, IMEI: 352094087982671) +2018/08/13 16:06:17 ruptelaNet.go:231: Sent ACK (client: [::1]:60087, IMEI: 352094087982671) +2018/08/13 16:06:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:06:20 ruptelaNet.go:217: Data received(client: [::1]:60087, IMEI: 352094087982671) +2018/08/13 16:06:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:06:20 ruptelaNet.go:231: Sent ACK (client: [::1]:60087, IMEI: 352094087982671) +2018/08/13 16:06:24 ruptelaNet.go:239: Close connection(client: [::1]:60087) +2018/08/13 16:06:34 ruptelaNet.go:170: New connection(client: [::1]:60091) +2018/08/13 16:06:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:06:34 ruptelaNet.go:217: Data received(client: [::1]:60091, IMEI: 352094087230394) +2018/08/13 16:06:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60091, IMEI: 352094087230394) +2018/08/13 16:06:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:06:36 ruptelaNet.go:217: Data received(client: [::1]:60091, IMEI: 352094087230394) +2018/08/13 16:06:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:06:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60091, IMEI: 352094087230394) +2018/08/13 16:06:37 ruptelaNet.go:239: Close connection(client: [::1]:60091) +2018/08/13 16:06:47 ruptelaNet.go:170: New connection(client: [::1]:60092) +2018/08/13 16:06:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:06:48 ruptelaNet.go:217: Data received(client: [::1]:60092, IMEI: 352094087982671) +2018/08/13 16:06:48 ruptelaNet.go:231: Sent ACK (client: [::1]:60092, IMEI: 352094087982671) +2018/08/13 16:06:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:06:51 ruptelaNet.go:217: Data received(client: [::1]:60092, IMEI: 352094087982671) +2018/08/13 16:06:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:06:51 ruptelaNet.go:231: Sent ACK (client: [::1]:60092, IMEI: 352094087982671) +2018/08/13 16:06:58 ruptelaNet.go:239: Close connection(client: [::1]:60092) +2018/08/13 16:07:21 ruptelaNet.go:170: New connection(client: [::1]:60094) +2018/08/13 16:07:22 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:07:22 ruptelaNet.go:217: Data received(client: [::1]:60094, IMEI: 352094087982671) +2018/08/13 16:07:22 ruptelaNet.go:231: Sent ACK (client: [::1]:60094, IMEI: 352094087982671) +2018/08/13 16:07:26 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:07:26 ruptelaNet.go:217: Data received(client: [::1]:60094, IMEI: 352094087982671) +2018/08/13 16:07:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:07:26 ruptelaNet.go:231: Sent ACK (client: [::1]:60094, IMEI: 352094087982671) +2018/08/13 16:07:29 ruptelaNet.go:239: Close connection(client: [::1]:60094) +2018/08/13 16:07:34 ruptelaNet.go:170: New connection(client: [::1]:60095) +2018/08/13 16:07:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:07:34 ruptelaNet.go:217: Data received(client: [::1]:60095, IMEI: 352094087230394) +2018/08/13 16:07:34 ruptelaNet.go:231: Sent ACK (client: [::1]:60095, IMEI: 352094087230394) +2018/08/13 16:07:36 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:07:36 ruptelaNet.go:217: Data received(client: [::1]:60095, IMEI: 352094087230394) +2018/08/13 16:07:36 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:07:36 ruptelaNet.go:231: Sent ACK (client: [::1]:60095, IMEI: 352094087230394) +2018/08/13 16:07:38 ruptelaNet.go:239: Close connection(client: [::1]:60095) +2018/08/13 16:07:52 ruptelaNet.go:170: New connection(client: [::1]:60103) +2018/08/13 16:07:53 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:07:53 ruptelaNet.go:217: Data received(client: [::1]:60103, IMEI: 352094087982671) +2018/08/13 16:07:53 ruptelaNet.go:231: Sent ACK (client: [::1]:60103, IMEI: 352094087982671) +2018/08/13 16:07:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:07:57 ruptelaNet.go:217: Data received(client: [::1]:60103, IMEI: 352094087982671) +2018/08/13 16:07:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:07:57 ruptelaNet.go:231: Sent ACK (client: [::1]:60103, IMEI: 352094087982671) +2018/08/13 16:08:00 ruptelaNet.go:239: Close connection(client: [::1]:60103) +2018/08/13 16:08:23 ruptelaNet.go:170: New connection(client: [::1]:60113) +2018/08/13 16:08:24 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:08:24 ruptelaNet.go:217: Data received(client: [::1]:60113, IMEI: 352094087982671) +2018/08/13 16:08:24 ruptelaNet.go:231: Sent ACK (client: [::1]:60113, IMEI: 352094087982671) +2018/08/13 16:08:27 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:08:27 ruptelaNet.go:217: Data received(client: [::1]:60113, IMEI: 352094087982671) +2018/08/13 16:08:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:08:28 ruptelaNet.go:231: Sent ACK (client: [::1]:60113, IMEI: 352094087982671) +2018/08/13 16:08:30 ruptelaNet.go:239: Close connection(client: [::1]:60113) +2018/08/13 16:08:35 ruptelaNet.go:170: New connection(client: [::1]:60114) +2018/08/13 16:08:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:08:35 ruptelaNet.go:217: Data received(client: [::1]:60114, IMEI: 352094087230394) +2018/08/13 16:08:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60114, IMEI: 352094087230394) +2018/08/13 16:08:37 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:08:37 ruptelaNet.go:217: Data received(client: [::1]:60114, IMEI: 352094087230394) +2018/08/13 16:08:37 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:08:37 ruptelaNet.go:231: Sent ACK (client: [::1]:60114, IMEI: 352094087230394) +2018/08/13 16:08:38 ruptelaNet.go:239: Close connection(client: [::1]:60114) +2018/08/13 16:08:53 ruptelaNet.go:170: New connection(client: [::1]:60128) +2018/08/13 16:08:54 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:08:54 ruptelaNet.go:217: Data received(client: [::1]:60128, IMEI: 352094087982671) +2018/08/13 16:08:54 ruptelaNet.go:231: Sent ACK (client: [::1]:60128, IMEI: 352094087982671) +2018/08/13 16:08:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:08:57 ruptelaNet.go:217: Data received(client: [::1]:60128, IMEI: 352094087982671) +2018/08/13 16:08:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:08:57 ruptelaNet.go:231: Sent ACK (client: [::1]:60128, IMEI: 352094087982671) +2018/08/13 16:09:01 ruptelaNet.go:239: Close connection(client: [::1]:60128) +2018/08/13 16:09:24 ruptelaNet.go:170: New connection(client: [::1]:60313) +2018/08/13 16:09:25 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:09:25 ruptelaNet.go:217: Data received(client: [::1]:60313, IMEI: 352094087982671) +2018/08/13 16:09:25 ruptelaNet.go:231: Sent ACK (client: [::1]:60313, IMEI: 352094087982671) +2018/08/13 16:09:28 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:09:28 ruptelaNet.go:217: Data received(client: [::1]:60313, IMEI: 352094087982671) +2018/08/13 16:09:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:09:28 ruptelaNet.go:231: Sent ACK (client: [::1]:60313, IMEI: 352094087982671) +2018/08/13 16:09:30 ruptelaNet.go:239: Close connection(client: [::1]:60313) +2018/08/13 16:09:35 ruptelaNet.go:170: New connection(client: [::1]:60370) +2018/08/13 16:09:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:09:35 ruptelaNet.go:217: Data received(client: [::1]:60370, IMEI: 352094087230394) +2018/08/13 16:09:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60370, IMEI: 352094087230394) +2018/08/13 16:09:37 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:09:37 ruptelaNet.go:217: Data received(client: [::1]:60370, IMEI: 352094087230394) +2018/08/13 16:09:37 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:09:37 ruptelaNet.go:231: Sent ACK (client: [::1]:60370, IMEI: 352094087230394) +2018/08/13 16:09:38 ruptelaNet.go:239: Close connection(client: [::1]:60370) +2018/08/13 16:09:53 ruptelaNet.go:170: New connection(client: [::1]:60462) +2018/08/13 16:09:54 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:09:54 ruptelaNet.go:217: Data received(client: [::1]:60462, IMEI: 352094087982671) +2018/08/13 16:09:54 ruptelaNet.go:231: Sent ACK (client: [::1]:60462, IMEI: 352094087982671) +2018/08/13 16:09:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:09:57 ruptelaNet.go:217: Data received(client: [::1]:60462, IMEI: 352094087982671) +2018/08/13 16:09:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:09:57 ruptelaNet.go:231: Sent ACK (client: [::1]:60462, IMEI: 352094087982671) +2018/08/13 16:09:59 ruptelaNet.go:239: Close connection(client: [::1]:60462) +2018/08/13 16:10:23 ruptelaNet.go:170: New connection(client: [::1]:60622) +2018/08/13 16:10:24 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:10:24 ruptelaNet.go:217: Data received(client: [::1]:60622, IMEI: 352094087982671) +2018/08/13 16:10:24 ruptelaNet.go:231: Sent ACK (client: [::1]:60622, IMEI: 352094087982671) +2018/08/13 16:10:28 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:10:28 ruptelaNet.go:217: Data received(client: [::1]:60622, IMEI: 352094087982671) +2018/08/13 16:10:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:10:28 ruptelaNet.go:231: Sent ACK (client: [::1]:60622, IMEI: 352094087982671) +2018/08/13 16:10:30 ruptelaNet.go:239: Close connection(client: [::1]:60622) +2018/08/13 16:10:35 ruptelaNet.go:170: New connection(client: [::1]:60685) +2018/08/13 16:10:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:10:35 ruptelaNet.go:217: Data received(client: [::1]:60685, IMEI: 352094087230394) +2018/08/13 16:10:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60685, IMEI: 352094087230394) +2018/08/13 16:10:37 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:10:37 ruptelaNet.go:217: Data received(client: [::1]:60685, IMEI: 352094087230394) +2018/08/13 16:10:37 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:10:37 ruptelaNet.go:231: Sent ACK (client: [::1]:60685, IMEI: 352094087230394) +2018/08/13 16:10:38 ruptelaNet.go:239: Close connection(client: [::1]:60685) +2018/08/13 16:10:53 ruptelaNet.go:170: New connection(client: [::1]:60777) +2018/08/13 16:10:54 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:10:54 ruptelaNet.go:217: Data received(client: [::1]:60777, IMEI: 352094087982671) +2018/08/13 16:10:54 ruptelaNet.go:231: Sent ACK (client: [::1]:60777, IMEI: 352094087982671) +2018/08/13 16:10:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:10:57 ruptelaNet.go:217: Data received(client: [::1]:60777, IMEI: 352094087982671) +2018/08/13 16:10:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:10:57 ruptelaNet.go:231: Sent ACK (client: [::1]:60777, IMEI: 352094087982671) +2018/08/13 16:10:59 ruptelaNet.go:239: Close connection(client: [::1]:60777) +2018/08/13 16:11:23 ruptelaNet.go:170: New connection(client: [::1]:60930) +2018/08/13 16:11:24 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:11:24 ruptelaNet.go:217: Data received(client: [::1]:60930, IMEI: 352094087982671) +2018/08/13 16:11:24 ruptelaNet.go:231: Sent ACK (client: [::1]:60930, IMEI: 352094087982671) +2018/08/13 16:11:27 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:11:27 ruptelaNet.go:217: Data received(client: [::1]:60930, IMEI: 352094087982671) +2018/08/13 16:11:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:11:27 ruptelaNet.go:231: Sent ACK (client: [::1]:60930, IMEI: 352094087982671) +2018/08/13 16:11:30 ruptelaNet.go:239: Close connection(client: [::1]:60930) +2018/08/13 16:11:35 ruptelaNet.go:170: New connection(client: [::1]:60995) +2018/08/13 16:11:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:11:35 ruptelaNet.go:217: Data received(client: [::1]:60995, IMEI: 352094087230394) +2018/08/13 16:11:35 ruptelaNet.go:231: Sent ACK (client: [::1]:60995, IMEI: 352094087230394) +2018/08/13 16:11:37 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:11:37 ruptelaNet.go:217: Data received(client: [::1]:60995, IMEI: 352094087230394) +2018/08/13 16:11:37 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:11:37 ruptelaNet.go:231: Sent ACK (client: [::1]:60995, IMEI: 352094087230394) +2018/08/13 16:11:40 ruptelaNet.go:239: Close connection(client: [::1]:60995) +2018/08/13 16:11:53 ruptelaNet.go:170: New connection(client: [::1]:61088) +2018/08/13 16:11:54 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:11:54 ruptelaNet.go:217: Data received(client: [::1]:61088, IMEI: 352094087982671) +2018/08/13 16:11:54 ruptelaNet.go:231: Sent ACK (client: [::1]:61088, IMEI: 352094087982671) +2018/08/13 16:11:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:11:57 ruptelaNet.go:217: Data received(client: [::1]:61088, IMEI: 352094087982671) +2018/08/13 16:11:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:11:57 ruptelaNet.go:231: Sent ACK (client: [::1]:61088, IMEI: 352094087982671) +2018/08/13 16:11:59 ruptelaNet.go:239: Close connection(client: [::1]:61088) +2018/08/13 16:12:23 ruptelaNet.go:170: New connection(client: [::1]:61243) +2018/08/13 16:12:25 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:12:25 ruptelaNet.go:217: Data received(client: [::1]:61243, IMEI: 352094087982671) +2018/08/13 16:12:25 ruptelaNet.go:231: Sent ACK (client: [::1]:61243, IMEI: 352094087982671) +2018/08/13 16:12:28 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:12:28 ruptelaNet.go:217: Data received(client: [::1]:61243, IMEI: 352094087982671) +2018/08/13 16:12:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:12:28 ruptelaNet.go:231: Sent ACK (client: [::1]:61243, IMEI: 352094087982671) +2018/08/13 16:12:33 ruptelaNet.go:239: Close connection(client: [::1]:61243) +2018/08/13 16:12:35 ruptelaNet.go:170: New connection(client: [::1]:61308) +2018/08/13 16:12:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:12:35 ruptelaNet.go:217: Data received(client: [::1]:61308, IMEI: 352094087230394) +2018/08/13 16:12:35 ruptelaNet.go:231: Sent ACK (client: [::1]:61308, IMEI: 352094087230394) +2018/08/13 16:12:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:12:38 ruptelaNet.go:217: Data received(client: [::1]:61308, IMEI: 352094087230394) +2018/08/13 16:12:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:12:38 ruptelaNet.go:231: Sent ACK (client: [::1]:61308, IMEI: 352094087230394) +2018/08/13 16:12:38 ruptelaNet.go:239: Close connection(client: [::1]:61308) +2018/08/13 16:12:56 ruptelaNet.go:170: New connection(client: [::1]:61418) +2018/08/13 16:12:57 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:12:57 ruptelaNet.go:217: Data received(client: [::1]:61418, IMEI: 352094087982671) +2018/08/13 16:12:57 ruptelaNet.go:231: Sent ACK (client: [::1]:61418, IMEI: 352094087982671) +2018/08/13 16:13:00 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:13:00 ruptelaNet.go:217: Data received(client: [::1]:61418, IMEI: 352094087982671) +2018/08/13 16:13:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:13:00 ruptelaNet.go:231: Sent ACK (client: [::1]:61418, IMEI: 352094087982671) +2018/08/13 16:13:03 ruptelaNet.go:239: Close connection(client: [::1]:61418) +2018/08/13 16:13:26 ruptelaNet.go:170: New connection(client: [::1]:61574) +2018/08/13 16:13:27 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:13:27 ruptelaNet.go:217: Data received(client: [::1]:61574, IMEI: 352094087982671) +2018/08/13 16:13:27 ruptelaNet.go:231: Sent ACK (client: [::1]:61574, IMEI: 352094087982671) +2018/08/13 16:13:31 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:13:31 ruptelaNet.go:217: Data received(client: [::1]:61574, IMEI: 352094087982671) +2018/08/13 16:13:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:13:31 ruptelaNet.go:231: Sent ACK (client: [::1]:61574, IMEI: 352094087982671) +2018/08/13 16:13:35 ruptelaNet.go:170: New connection(client: [::1]:61622) +2018/08/13 16:13:35 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:13:35 ruptelaNet.go:217: Data received(client: [::1]:61622, IMEI: 352094087230394) +2018/08/13 16:13:35 ruptelaNet.go:231: Sent ACK (client: [::1]:61622, IMEI: 352094087230394) +2018/08/13 16:13:37 ruptelaNet.go:239: Close connection(client: [::1]:61574) +2018/08/13 16:13:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:13:38 ruptelaNet.go:217: Data received(client: [::1]:61622, IMEI: 352094087230394) +2018/08/13 16:13:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:13:38 ruptelaNet.go:231: Sent ACK (client: [::1]:61622, IMEI: 352094087230394) +2018/08/13 16:13:39 ruptelaNet.go:239: Close connection(client: [::1]:61622) +2018/08/13 16:14:00 ruptelaNet.go:170: New connection(client: [::1]:61748) +2018/08/13 16:14:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:14:01 ruptelaNet.go:217: Data received(client: [::1]:61748, IMEI: 352094087982671) +2018/08/13 16:14:01 ruptelaNet.go:231: Sent ACK (client: [::1]:61748, IMEI: 352094087982671) +2018/08/13 16:14:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:14:04 ruptelaNet.go:217: Data received(client: [::1]:61748, IMEI: 352094087982671) +2018/08/13 16:14:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:14:05 ruptelaNet.go:231: Sent ACK (client: [::1]:61748, IMEI: 352094087982671) +2018/08/13 16:14:07 ruptelaNet.go:239: Close connection(client: [::1]:61748) +2018/08/13 16:14:30 ruptelaNet.go:170: New connection(client: [::1]:61905) +2018/08/13 16:14:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:14:31 ruptelaNet.go:217: Data received(client: [::1]:61905, IMEI: 352094087982671) +2018/08/13 16:14:31 ruptelaNet.go:231: Sent ACK (client: [::1]:61905, IMEI: 352094087982671) +2018/08/13 16:14:35 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:14:35 ruptelaNet.go:217: Data received(client: [::1]:61905, IMEI: 352094087982671) +2018/08/13 16:14:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:14:35 ruptelaNet.go:231: Sent ACK (client: [::1]:61905, IMEI: 352094087982671) +2018/08/13 16:14:35 ruptelaNet.go:170: New connection(client: [::1]:61939) +2018/08/13 16:14:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:14:36 ruptelaNet.go:217: Data received(client: [::1]:61939, IMEI: 352094087230394) +2018/08/13 16:14:36 ruptelaNet.go:231: Sent ACK (client: [::1]:61939, IMEI: 352094087230394) +2018/08/13 16:14:37 ruptelaNet.go:239: Close connection(client: [::1]:61905) +2018/08/13 16:14:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:14:39 ruptelaNet.go:217: Data received(client: [::1]:61939, IMEI: 352094087230394) +2018/08/13 16:14:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:14:39 ruptelaNet.go:231: Sent ACK (client: [::1]:61939, IMEI: 352094087230394) +2018/08/13 16:14:40 ruptelaNet.go:239: Close connection(client: [::1]:61939) +2018/08/13 16:15:00 ruptelaNet.go:170: New connection(client: [::1]:62064) +2018/08/13 16:15:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:15:01 ruptelaNet.go:217: Data received(client: [::1]:62064, IMEI: 352094087982671) +2018/08/13 16:15:01 ruptelaNet.go:231: Sent ACK (client: [::1]:62064, IMEI: 352094087982671) +2018/08/13 16:15:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:15:04 ruptelaNet.go:217: Data received(client: [::1]:62064, IMEI: 352094087982671) +2018/08/13 16:15:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:15:04 ruptelaNet.go:231: Sent ACK (client: [::1]:62064, IMEI: 352094087982671) +2018/08/13 16:15:07 ruptelaNet.go:239: Close connection(client: [::1]:62064) +2018/08/13 16:15:30 ruptelaNet.go:170: New connection(client: [::1]:62213) +2018/08/13 16:15:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:15:31 ruptelaNet.go:217: Data received(client: [::1]:62213, IMEI: 352094087982671) +2018/08/13 16:15:31 ruptelaNet.go:231: Sent ACK (client: [::1]:62213, IMEI: 352094087982671) +2018/08/13 16:15:35 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:15:35 ruptelaNet.go:217: Data received(client: [::1]:62213, IMEI: 352094087982671) +2018/08/13 16:15:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:15:35 ruptelaNet.go:231: Sent ACK (client: [::1]:62213, IMEI: 352094087982671) +2018/08/13 16:15:36 ruptelaNet.go:170: New connection(client: [::1]:62247) +2018/08/13 16:15:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:15:36 ruptelaNet.go:217: Data received(client: [::1]:62247, IMEI: 352094087230394) +2018/08/13 16:15:36 ruptelaNet.go:231: Sent ACK (client: [::1]:62247, IMEI: 352094087230394) +2018/08/13 16:15:37 ruptelaNet.go:239: Close connection(client: [::1]:62213) +2018/08/13 16:15:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:15:39 ruptelaNet.go:217: Data received(client: [::1]:62247, IMEI: 352094087230394) +2018/08/13 16:15:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:15:39 ruptelaNet.go:231: Sent ACK (client: [::1]:62247, IMEI: 352094087230394) +2018/08/13 16:15:40 ruptelaNet.go:239: Close connection(client: [::1]:62247) +2018/08/13 16:16:00 ruptelaNet.go:170: New connection(client: [::1]:62366) +2018/08/13 16:16:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:16:01 ruptelaNet.go:217: Data received(client: [::1]:62366, IMEI: 352094087982671) +2018/08/13 16:16:01 ruptelaNet.go:231: Sent ACK (client: [::1]:62366, IMEI: 352094087982671) +2018/08/13 16:16:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:16:04 ruptelaNet.go:217: Data received(client: [::1]:62366, IMEI: 352094087982671) +2018/08/13 16:16:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:16:04 ruptelaNet.go:231: Sent ACK (client: [::1]:62366, IMEI: 352094087982671) +2018/08/13 16:16:07 ruptelaNet.go:239: Close connection(client: [::1]:62366) +2018/08/13 16:16:30 ruptelaNet.go:170: New connection(client: [::1]:62515) +2018/08/13 16:16:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:16:31 ruptelaNet.go:217: Data received(client: [::1]:62515, IMEI: 352094087982671) +2018/08/13 16:16:31 ruptelaNet.go:231: Sent ACK (client: [::1]:62515, IMEI: 352094087982671) +2018/08/13 16:16:34 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:16:34 ruptelaNet.go:217: Data received(client: [::1]:62515, IMEI: 352094087982671) +2018/08/13 16:16:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:16:34 ruptelaNet.go:231: Sent ACK (client: [::1]:62515, IMEI: 352094087982671) +2018/08/13 16:16:36 ruptelaNet.go:170: New connection(client: [::1]:62549) +2018/08/13 16:16:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:16:36 ruptelaNet.go:217: Data received(client: [::1]:62549, IMEI: 352094087230394) +2018/08/13 16:16:37 ruptelaNet.go:231: Sent ACK (client: [::1]:62549, IMEI: 352094087230394) +2018/08/13 16:16:37 ruptelaNet.go:239: Close connection(client: [::1]:62515) +2018/08/13 16:16:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:16:39 ruptelaNet.go:217: Data received(client: [::1]:62549, IMEI: 352094087230394) +2018/08/13 16:16:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:16:39 ruptelaNet.go:231: Sent ACK (client: [::1]:62549, IMEI: 352094087230394) +2018/08/13 16:16:41 ruptelaNet.go:239: Close connection(client: [::1]:62549) +2018/08/13 16:17:00 ruptelaNet.go:170: New connection(client: [::1]:62663) +2018/08/13 16:17:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:17:01 ruptelaNet.go:217: Data received(client: [::1]:62663, IMEI: 352094087982671) +2018/08/13 16:17:01 ruptelaNet.go:231: Sent ACK (client: [::1]:62663, IMEI: 352094087982671) +2018/08/13 16:17:05 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:17:05 ruptelaNet.go:217: Data received(client: [::1]:62663, IMEI: 352094087982671) +2018/08/13 16:17:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:17:05 ruptelaNet.go:231: Sent ACK (client: [::1]:62663, IMEI: 352094087982671) +2018/08/13 16:17:07 ruptelaNet.go:239: Close connection(client: [::1]:62663) +2018/08/13 16:17:30 ruptelaNet.go:170: New connection(client: [::1]:62818) +2018/08/13 16:17:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:17:31 ruptelaNet.go:217: Data received(client: [::1]:62818, IMEI: 352094087982671) +2018/08/13 16:17:31 ruptelaNet.go:231: Sent ACK (client: [::1]:62818, IMEI: 352094087982671) +2018/08/13 16:17:34 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:17:34 ruptelaNet.go:217: Data received(client: [::1]:62818, IMEI: 352094087982671) +2018/08/13 16:17:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:17:34 ruptelaNet.go:231: Sent ACK (client: [::1]:62818, IMEI: 352094087982671) +2018/08/13 16:17:36 ruptelaNet.go:170: New connection(client: [::1]:62852) +2018/08/13 16:17:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:17:36 ruptelaNet.go:217: Data received(client: [::1]:62852, IMEI: 352094087230394) +2018/08/13 16:17:36 ruptelaNet.go:231: Sent ACK (client: [::1]:62852, IMEI: 352094087230394) +2018/08/13 16:17:37 ruptelaNet.go:239: Close connection(client: [::1]:62818) +2018/08/13 16:17:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:17:39 ruptelaNet.go:217: Data received(client: [::1]:62852, IMEI: 352094087230394) +2018/08/13 16:17:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:17:39 ruptelaNet.go:231: Sent ACK (client: [::1]:62852, IMEI: 352094087230394) +2018/08/13 16:17:39 ruptelaNet.go:239: Close connection(client: [::1]:62852) +2018/08/13 16:18:00 ruptelaNet.go:170: New connection(client: [::1]:62974) +2018/08/13 16:18:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:18:01 ruptelaNet.go:217: Data received(client: [::1]:62974, IMEI: 352094087982671) +2018/08/13 16:18:01 ruptelaNet.go:231: Sent ACK (client: [::1]:62974, IMEI: 352094087982671) +2018/08/13 16:18:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:18:06 ruptelaNet.go:217: Data received(client: [::1]:62974, IMEI: 352094087982671) +2018/08/13 16:18:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:18:07 ruptelaNet.go:231: Sent ACK (client: [::1]:62974, IMEI: 352094087982671) +2018/08/13 16:18:09 ruptelaNet.go:239: Close connection(client: [::1]:62974) +2018/08/13 16:18:32 ruptelaNet.go:170: New connection(client: [::1]:63136) +2018/08/13 16:18:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:18:33 ruptelaNet.go:217: Data received(client: [::1]:63136, IMEI: 352094087982671) +2018/08/13 16:18:33 ruptelaNet.go:231: Sent ACK (client: [::1]:63136, IMEI: 352094087982671) +2018/08/13 16:18:36 ruptelaNet.go:170: New connection(client: [::1]:63159) +2018/08/13 16:18:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:18:36 ruptelaNet.go:217: Data received(client: [::1]:63159, IMEI: 352094087230394) +2018/08/13 16:18:36 ruptelaNet.go:231: Sent ACK (client: [::1]:63159, IMEI: 352094087230394) +2018/08/13 16:18:37 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:18:37 ruptelaNet.go:217: Data received(client: [::1]:63136, IMEI: 352094087982671) +2018/08/13 16:18:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:18:37 ruptelaNet.go:231: Sent ACK (client: [::1]:63136, IMEI: 352094087982671) +2018/08/13 16:18:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:18:39 ruptelaNet.go:217: Data received(client: [::1]:63159, IMEI: 352094087230394) +2018/08/13 16:18:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:18:39 ruptelaNet.go:231: Sent ACK (client: [::1]:63159, IMEI: 352094087230394) +2018/08/13 16:18:39 ruptelaNet.go:239: Close connection(client: [::1]:63136) +2018/08/13 16:18:39 ruptelaNet.go:239: Close connection(client: [::1]:63159) +2018/08/13 16:19:02 ruptelaNet.go:170: New connection(client: [::1]:63290) +2018/08/13 16:19:03 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:19:03 ruptelaNet.go:217: Data received(client: [::1]:63290, IMEI: 352094087982671) +2018/08/13 16:19:03 ruptelaNet.go:231: Sent ACK (client: [::1]:63290, IMEI: 352094087982671) +2018/08/13 16:19:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:19:06 ruptelaNet.go:217: Data received(client: [::1]:63290, IMEI: 352094087982671) +2018/08/13 16:19:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:19:07 ruptelaNet.go:231: Sent ACK (client: [::1]:63290, IMEI: 352094087982671) +2018/08/13 16:19:09 ruptelaNet.go:239: Close connection(client: [::1]:63290) +2018/08/13 16:19:32 ruptelaNet.go:170: New connection(client: [::1]:63438) +2018/08/13 16:19:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:19:33 ruptelaNet.go:217: Data received(client: [::1]:63438, IMEI: 352094087982671) +2018/08/13 16:19:33 ruptelaNet.go:231: Sent ACK (client: [::1]:63438, IMEI: 352094087982671) +2018/08/13 16:19:36 ruptelaNet.go:170: New connection(client: [::1]:63462) +2018/08/13 16:19:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:19:36 ruptelaNet.go:217: Data received(client: [::1]:63462, IMEI: 352094087230394) +2018/08/13 16:19:36 ruptelaNet.go:231: Sent ACK (client: [::1]:63462, IMEI: 352094087230394) +2018/08/13 16:19:37 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:19:37 ruptelaNet.go:217: Data received(client: [::1]:63438, IMEI: 352094087982671) +2018/08/13 16:19:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:19:37 ruptelaNet.go:231: Sent ACK (client: [::1]:63438, IMEI: 352094087982671) +2018/08/13 16:19:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:19:39 ruptelaNet.go:217: Data received(client: [::1]:63462, IMEI: 352094087230394) +2018/08/13 16:19:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:19:39 ruptelaNet.go:231: Sent ACK (client: [::1]:63462, IMEI: 352094087230394) +2018/08/13 16:19:40 ruptelaNet.go:239: Close connection(client: [::1]:63462) +2018/08/13 16:19:40 ruptelaNet.go:239: Close connection(client: [::1]:63438) +2018/08/13 16:20:03 ruptelaNet.go:170: New connection(client: [::1]:63598) +2018/08/13 16:20:04 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:20:04 ruptelaNet.go:217: Data received(client: [::1]:63598, IMEI: 352094087982671) +2018/08/13 16:20:04 ruptelaNet.go:231: Sent ACK (client: [::1]:63598, IMEI: 352094087982671) +2018/08/13 16:20:07 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:20:07 ruptelaNet.go:217: Data received(client: [::1]:63598, IMEI: 352094087982671) +2018/08/13 16:20:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:20:07 ruptelaNet.go:231: Sent ACK (client: [::1]:63598, IMEI: 352094087982671) +2018/08/13 16:20:10 ruptelaNet.go:239: Close connection(client: [::1]:63598) +2018/08/13 16:20:33 ruptelaNet.go:170: New connection(client: [::1]:63687) +2018/08/13 16:20:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:20:34 ruptelaNet.go:217: Data received(client: [::1]:63687, IMEI: 352094087982671) +2018/08/13 16:20:34 ruptelaNet.go:231: Sent ACK (client: [::1]:63687, IMEI: 352094087982671) +2018/08/13 16:20:36 ruptelaNet.go:170: New connection(client: [::1]:63698) +2018/08/13 16:20:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:20:36 ruptelaNet.go:217: Data received(client: [::1]:63698, IMEI: 352094087230394) +2018/08/13 16:20:36 ruptelaNet.go:231: Sent ACK (client: [::1]:63698, IMEI: 352094087230394) +2018/08/13 16:20:38 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:20:38 ruptelaNet.go:217: Data received(client: [::1]:63687, IMEI: 352094087982671) +2018/08/13 16:20:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:20:38 ruptelaNet.go:231: Sent ACK (client: [::1]:63687, IMEI: 352094087982671) +2018/08/13 16:20:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:20:39 ruptelaNet.go:217: Data received(client: [::1]:63698, IMEI: 352094087230394) +2018/08/13 16:20:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:20:39 ruptelaNet.go:231: Sent ACK (client: [::1]:63698, IMEI: 352094087230394) +2018/08/13 16:20:40 ruptelaNet.go:239: Close connection(client: [::1]:63687) +2018/08/13 16:20:41 ruptelaNet.go:239: Close connection(client: [::1]:63698) +2018/08/13 16:22:31 ruptelaNet.go:170: New connection(client: [::1]:63870) +2018/08/13 16:22:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:22:32 ruptelaNet.go:217: Data received(client: [::1]:63870, IMEI: 352094087982671) +2018/08/13 16:22:32 ruptelaNet.go:231: Sent ACK (client: [::1]:63870, IMEI: 352094087982671) +2018/08/13 16:22:36 ruptelaNet.go:170: New connection(client: [::1]:63886) +2018/08/13 16:22:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:22:36 ruptelaNet.go:217: Data received(client: [::1]:63886, IMEI: 352094087230394) +2018/08/13 16:22:36 ruptelaNet.go:231: Sent ACK (client: [::1]:63886, IMEI: 352094087230394) +2018/08/13 16:22:37 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:22:37 ruptelaNet.go:217: Data received(client: [::1]:63870, IMEI: 352094087982671) +2018/08/13 16:22:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:22:37 ruptelaNet.go:231: Sent ACK (client: [::1]:63870, IMEI: 352094087982671) +2018/08/13 16:22:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:22:38 ruptelaNet.go:217: Data received(client: [::1]:63886, IMEI: 352094087230394) +2018/08/13 16:22:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:22:38 ruptelaNet.go:231: Sent ACK (client: [::1]:63886, IMEI: 352094087230394) +2018/08/13 16:22:39 ruptelaNet.go:239: Close connection(client: [::1]:63870) +2018/08/13 16:22:40 ruptelaNet.go:239: Close connection(client: [::1]:63886) +2018/08/13 16:23:02 ruptelaNet.go:170: New connection(client: [::1]:63956) +2018/08/13 16:23:03 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:23:03 ruptelaNet.go:217: Data received(client: [::1]:63956, IMEI: 352094087982671) +2018/08/13 16:23:03 ruptelaNet.go:231: Sent ACK (client: [::1]:63956, IMEI: 352094087982671) +2018/08/13 16:23:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:23:06 ruptelaNet.go:217: Data received(client: [::1]:63956, IMEI: 352094087982671) +2018/08/13 16:23:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:23:06 ruptelaNet.go:231: Sent ACK (client: [::1]:63956, IMEI: 352094087982671) +2018/08/13 16:23:09 ruptelaNet.go:239: Close connection(client: [::1]:63956) +2018/08/13 16:23:32 ruptelaNet.go:170: New connection(client: [::1]:64033) +2018/08/13 16:23:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:23:33 ruptelaNet.go:217: Data received(client: [::1]:64033, IMEI: 352094087982671) +2018/08/13 16:23:33 ruptelaNet.go:231: Sent ACK (client: [::1]:64033, IMEI: 352094087982671) +2018/08/13 16:23:36 ruptelaNet.go:170: New connection(client: [::1]:64044) +2018/08/13 16:23:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:23:36 ruptelaNet.go:217: Data received(client: [::1]:64044, IMEI: 352094087230394) +2018/08/13 16:23:36 ruptelaNet.go:231: Sent ACK (client: [::1]:64044, IMEI: 352094087230394) +2018/08/13 16:23:37 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:23:37 ruptelaNet.go:217: Data received(client: [::1]:64033, IMEI: 352094087982671) +2018/08/13 16:23:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:23:37 ruptelaNet.go:231: Sent ACK (client: [::1]:64033, IMEI: 352094087982671) +2018/08/13 16:23:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:23:38 ruptelaNet.go:217: Data received(client: [::1]:64044, IMEI: 352094087230394) +2018/08/13 16:23:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:23:38 ruptelaNet.go:231: Sent ACK (client: [::1]:64044, IMEI: 352094087230394) +2018/08/13 16:23:39 ruptelaNet.go:239: Close connection(client: [::1]:64033) +2018/08/13 16:23:40 ruptelaNet.go:239: Close connection(client: [::1]:64044) +2018/08/13 16:24:02 ruptelaNet.go:170: New connection(client: [::1]:64111) +2018/08/13 16:24:03 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:24:03 ruptelaNet.go:217: Data received(client: [::1]:64111, IMEI: 352094087982671) +2018/08/13 16:24:03 ruptelaNet.go:231: Sent ACK (client: [::1]:64111, IMEI: 352094087982671) +2018/08/13 16:24:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:24:06 ruptelaNet.go:217: Data received(client: [::1]:64111, IMEI: 352094087982671) +2018/08/13 16:24:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:24:06 ruptelaNet.go:231: Sent ACK (client: [::1]:64111, IMEI: 352094087982671) +2018/08/13 16:24:08 ruptelaNet.go:239: Close connection(client: [::1]:64111) +2018/08/13 16:24:31 ruptelaNet.go:170: New connection(client: [::1]:64190) +2018/08/13 16:24:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:24:32 ruptelaNet.go:217: Data received(client: [::1]:64190, IMEI: 352094087982671) +2018/08/13 16:24:32 ruptelaNet.go:231: Sent ACK (client: [::1]:64190, IMEI: 352094087982671) +2018/08/13 16:24:35 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:24:35 ruptelaNet.go:217: Data received(client: [::1]:64190, IMEI: 352094087982671) +2018/08/13 16:24:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:24:35 ruptelaNet.go:231: Sent ACK (client: [::1]:64190, IMEI: 352094087982671) +2018/08/13 16:24:36 ruptelaNet.go:170: New connection(client: [::1]:64202) +2018/08/13 16:24:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:24:36 ruptelaNet.go:217: Data received(client: [::1]:64202, IMEI: 352094087230394) +2018/08/13 16:24:36 ruptelaNet.go:231: Sent ACK (client: [::1]:64202, IMEI: 352094087230394) +2018/08/13 16:24:37 ruptelaNet.go:239: Close connection(client: [::1]:64190) +2018/08/13 16:24:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:24:38 ruptelaNet.go:217: Data received(client: [::1]:64202, IMEI: 352094087230394) +2018/08/13 16:24:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:24:38 ruptelaNet.go:231: Sent ACK (client: [::1]:64202, IMEI: 352094087230394) +2018/08/13 16:24:39 ruptelaNet.go:239: Close connection(client: [::1]:64202) +2018/08/13 16:25:00 ruptelaNet.go:170: New connection(client: [::1]:64263) +2018/08/13 16:25:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:25:01 ruptelaNet.go:217: Data received(client: [::1]:64263, IMEI: 352094087982671) +2018/08/13 16:25:01 ruptelaNet.go:231: Sent ACK (client: [::1]:64263, IMEI: 352094087982671) +2018/08/13 16:25:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:25:04 ruptelaNet.go:217: Data received(client: [::1]:64263, IMEI: 352094087982671) +2018/08/13 16:25:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:25:04 ruptelaNet.go:231: Sent ACK (client: [::1]:64263, IMEI: 352094087982671) +2018/08/13 16:25:06 ruptelaNet.go:239: Close connection(client: [::1]:64263) +2018/08/13 16:25:11 ruptelaNet.go:170: New connection(client: [::1]:64295) +2018/08/13 16:25:11 ruptelaNet.go:170: New connection(client: [::1]:64296) +2018/08/13 16:25:26 ruptelaNet.go:239: Close connection(client: [::1]:64295) +2018/08/13 16:25:26 ruptelaNet.go:239: Close connection(client: [::1]:64296) +2018/08/13 16:25:26 ruptelaNet.go:170: New connection(client: [::1]:64338) +2018/08/13 16:25:26 ruptelaNet.go:170: New connection(client: [::1]:64337) +2018/08/13 16:25:29 ruptelaNet.go:170: New connection(client: [::1]:64344) +2018/08/13 16:25:31 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:25:31 ruptelaNet.go:217: Data received(client: [::1]:64344, IMEI: 352094087982671) +2018/08/13 16:25:31 ruptelaNet.go:231: Sent ACK (client: [::1]:64344, IMEI: 352094087982671) +2018/08/13 16:25:35 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:25:35 ruptelaNet.go:217: Data received(client: [::1]:64344, IMEI: 352094087982671) +2018/08/13 16:25:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:25:35 ruptelaNet.go:231: Sent ACK (client: [::1]:64344, IMEI: 352094087982671) +2018/08/13 16:25:36 ruptelaNet.go:170: New connection(client: [::1]:64360) +2018/08/13 16:25:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:25:36 ruptelaNet.go:217: Data received(client: [::1]:64360, IMEI: 352094087230394) +2018/08/13 16:25:36 ruptelaNet.go:231: Sent ACK (client: [::1]:64360, IMEI: 352094087230394) +2018/08/13 16:25:37 ruptelaNet.go:239: Close connection(client: [::1]:64344) +2018/08/13 16:25:38 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:25:38 ruptelaNet.go:217: Data received(client: [::1]:64360, IMEI: 352094087230394) +2018/08/13 16:25:38 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:25:38 ruptelaNet.go:231: Sent ACK (client: [::1]:64360, IMEI: 352094087230394) +2018/08/13 16:25:39 ruptelaNet.go:239: Close connection(client: [::1]:64360) +2018/08/13 16:25:42 ruptelaNet.go:239: Close connection(client: [::1]:64337) +2018/08/13 16:25:42 ruptelaNet.go:239: Close connection(client: [::1]:64338) +2018/08/13 16:26:00 ruptelaNet.go:170: New connection(client: [::1]:64422) +2018/08/13 16:26:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:26:01 ruptelaNet.go:217: Data received(client: [::1]:64422, IMEI: 352094087982671) +2018/08/13 16:26:01 ruptelaNet.go:231: Sent ACK (client: [::1]:64422, IMEI: 352094087982671) +2018/08/13 16:26:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:26:04 ruptelaNet.go:217: Data received(client: [::1]:64422, IMEI: 352094087982671) +2018/08/13 16:26:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:26:04 ruptelaNet.go:231: Sent ACK (client: [::1]:64422, IMEI: 352094087982671) +2018/08/13 16:26:06 ruptelaNet.go:239: Close connection(client: [::1]:64422) +2018/08/13 16:26:29 ruptelaNet.go:170: New connection(client: [::1]:64498) +2018/08/13 16:26:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:26:30 ruptelaNet.go:217: Data received(client: [::1]:64498, IMEI: 352094087982671) +2018/08/13 16:26:30 ruptelaNet.go:231: Sent ACK (client: [::1]:64498, IMEI: 352094087982671) +2018/08/13 16:26:34 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:26:34 ruptelaNet.go:217: Data received(client: [::1]:64498, IMEI: 352094087982671) +2018/08/13 16:26:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:26:34 ruptelaNet.go:231: Sent ACK (client: [::1]:64498, IMEI: 352094087982671) +2018/08/13 16:26:37 ruptelaNet.go:239: Close connection(client: [::1]:64498) +2018/08/13 16:26:37 ruptelaNet.go:170: New connection(client: [::1]:64519) +2018/08/13 16:26:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:26:37 ruptelaNet.go:217: Data received(client: [::1]:64519, IMEI: 352094087230394) +2018/08/13 16:26:37 ruptelaNet.go:231: Sent ACK (client: [::1]:64519, IMEI: 352094087230394) +2018/08/13 16:26:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:26:39 ruptelaNet.go:217: Data received(client: [::1]:64519, IMEI: 352094087230394) +2018/08/13 16:26:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:26:39 ruptelaNet.go:231: Sent ACK (client: [::1]:64519, IMEI: 352094087230394) +2018/08/13 16:26:40 ruptelaNet.go:239: Close connection(client: [::1]:64519) +2018/08/13 16:26:58 ruptelaNet.go:170: New connection(client: [::1]:64576) +2018/08/13 16:27:00 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:27:00 ruptelaNet.go:217: Data received(client: [::1]:64576, IMEI: 352094087982671) +2018/08/13 16:27:00 ruptelaNet.go:231: Sent ACK (client: [::1]:64576, IMEI: 352094087982671) +2018/08/13 16:27:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:27:04 ruptelaNet.go:217: Data received(client: [::1]:64576, IMEI: 352094087982671) +2018/08/13 16:27:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:27:04 ruptelaNet.go:231: Sent ACK (client: [::1]:64576, IMEI: 352094087982671) +2018/08/13 16:27:10 ruptelaNet.go:239: Close connection(client: [::1]:64576) +2018/08/13 16:27:33 ruptelaNet.go:170: New connection(client: [::1]:64661) +2018/08/13 16:27:34 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:27:34 ruptelaNet.go:217: Data received(client: [::1]:64661, IMEI: 352094087982671) +2018/08/13 16:27:34 ruptelaNet.go:231: Sent ACK (client: [::1]:64661, IMEI: 352094087982671) +2018/08/13 16:27:36 ruptelaNet.go:170: New connection(client: [::1]:64669) +2018/08/13 16:27:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:27:36 ruptelaNet.go:217: Data received(client: [::1]:64669, IMEI: 352094087230394) +2018/08/13 16:27:36 ruptelaNet.go:231: Sent ACK (client: [::1]:64669, IMEI: 352094087230394) +2018/08/13 16:27:38 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:27:38 ruptelaNet.go:217: Data received(client: [::1]:64661, IMEI: 352094087982671) +2018/08/13 16:27:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:27:38 ruptelaNet.go:231: Sent ACK (client: [::1]:64661, IMEI: 352094087982671) +2018/08/13 16:27:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:27:39 ruptelaNet.go:217: Data received(client: [::1]:64669, IMEI: 352094087230394) +2018/08/13 16:27:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:27:39 ruptelaNet.go:231: Sent ACK (client: [::1]:64669, IMEI: 352094087230394) +2018/08/13 16:27:39 ruptelaNet.go:239: Close connection(client: [::1]:64669) +2018/08/13 16:27:42 ruptelaNet.go:239: Close connection(client: [::1]:64661) +2018/08/13 16:28:03 ruptelaNet.go:170: New connection(client: [::1]:64744) +2018/08/13 16:28:04 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:28:04 ruptelaNet.go:217: Data received(client: [::1]:64744, IMEI: 352094087982671) +2018/08/13 16:28:04 ruptelaNet.go:231: Sent ACK (client: [::1]:64744, IMEI: 352094087982671) +2018/08/13 16:28:07 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:28:07 ruptelaNet.go:217: Data received(client: [::1]:64744, IMEI: 352094087982671) +2018/08/13 16:28:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:28:07 ruptelaNet.go:231: Sent ACK (client: [::1]:64744, IMEI: 352094087982671) +2018/08/13 16:28:09 ruptelaNet.go:239: Close connection(client: [::1]:64744) +2018/08/13 16:28:32 ruptelaNet.go:170: New connection(client: [::1]:64812) +2018/08/13 16:28:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:28:33 ruptelaNet.go:217: Data received(client: [::1]:64812, IMEI: 352094087982671) +2018/08/13 16:28:33 ruptelaNet.go:231: Sent ACK (client: [::1]:64812, IMEI: 352094087982671) +2018/08/13 16:28:37 ruptelaNet.go:170: New connection(client: [::1]:64825) +2018/08/13 16:28:37 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:28:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:28:37 ruptelaNet.go:217: Data received(client: [::1]:64812, IMEI: 352094087982671) +2018/08/13 16:28:37 ruptelaNet.go:217: Data received(client: [::1]:64825, IMEI: 352094087230394) +2018/08/13 16:28:37 ruptelaNet.go:231: Sent ACK (client: [::1]:64825, IMEI: 352094087230394) +2018/08/13 16:28:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:28:37 ruptelaNet.go:231: Sent ACK (client: [::1]:64812, IMEI: 352094087982671) +2018/08/13 16:28:39 ruptelaNet.go:239: Close connection(client: [::1]:64812) +2018/08/13 16:28:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:28:39 ruptelaNet.go:217: Data received(client: [::1]:64825, IMEI: 352094087230394) +2018/08/13 16:28:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:28:39 ruptelaNet.go:231: Sent ACK (client: [::1]:64825, IMEI: 352094087230394) +2018/08/13 16:28:40 ruptelaNet.go:239: Close connection(client: [::1]:64825) +2018/08/13 16:29:02 ruptelaNet.go:170: New connection(client: [::1]:64890) +2018/08/13 16:29:03 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:29:03 ruptelaNet.go:217: Data received(client: [::1]:64890, IMEI: 352094087982671) +2018/08/13 16:29:03 ruptelaNet.go:231: Sent ACK (client: [::1]:64890, IMEI: 352094087982671) +2018/08/13 16:29:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:29:06 ruptelaNet.go:217: Data received(client: [::1]:64890, IMEI: 352094087982671) +2018/08/13 16:29:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:29:06 ruptelaNet.go:231: Sent ACK (client: [::1]:64890, IMEI: 352094087982671) +2018/08/13 16:29:13 ruptelaNet.go:239: Close connection(client: [::1]:64890) +2018/08/13 16:29:36 ruptelaNet.go:170: New connection(client: [::1]:65036) +2018/08/13 16:29:37 ruptelaNet.go:170: New connection(client: [::1]:65043) +2018/08/13 16:29:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:29:37 ruptelaNet.go:217: Data received(client: [::1]:65043, IMEI: 352094087230394) +2018/08/13 16:29:37 ruptelaNet.go:231: Sent ACK (client: [::1]:65043, IMEI: 352094087230394) +2018/08/13 16:29:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:29:37 ruptelaNet.go:217: Data received(client: [::1]:65036, IMEI: 352094087982671) +2018/08/13 16:29:37 ruptelaNet.go:231: Sent ACK (client: [::1]:65036, IMEI: 352094087982671) +2018/08/13 16:29:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:29:39 ruptelaNet.go:217: Data received(client: [::1]:65043, IMEI: 352094087230394) +2018/08/13 16:29:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:29:39 ruptelaNet.go:231: Sent ACK (client: [::1]:65043, IMEI: 352094087230394) +2018/08/13 16:29:40 ruptelaNet.go:239: Close connection(client: [::1]:65043) +2018/08/13 16:29:41 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:29:41 ruptelaNet.go:217: Data received(client: [::1]:65036, IMEI: 352094087982671) +2018/08/13 16:29:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:29:41 ruptelaNet.go:231: Sent ACK (client: [::1]:65036, IMEI: 352094087982671) +2018/08/13 16:29:43 ruptelaNet.go:239: Close connection(client: [::1]:65036) +2018/08/13 16:30:06 ruptelaNet.go:170: New connection(client: [::1]:65193) +2018/08/13 16:30:07 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:30:07 ruptelaNet.go:217: Data received(client: [::1]:65193, IMEI: 352094087982671) +2018/08/13 16:30:07 ruptelaNet.go:231: Sent ACK (client: [::1]:65193, IMEI: 352094087982671) +2018/08/13 16:30:11 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:30:11 ruptelaNet.go:217: Data received(client: [::1]:65193, IMEI: 352094087982671) +2018/08/13 16:30:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:30:11 ruptelaNet.go:231: Sent ACK (client: [::1]:65193, IMEI: 352094087982671) +2018/08/13 16:30:13 ruptelaNet.go:239: Close connection(client: [::1]:65193) +2018/08/13 16:30:36 ruptelaNet.go:170: New connection(client: [::1]:65346) +2018/08/13 16:30:37 ruptelaNet.go:170: New connection(client: [::1]:65358) +2018/08/13 16:30:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:30:37 ruptelaNet.go:217: Data received(client: [::1]:65358, IMEI: 352094087230394) +2018/08/13 16:30:37 ruptelaNet.go:231: Sent ACK (client: [::1]:65358, IMEI: 352094087230394) +2018/08/13 16:30:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:30:37 ruptelaNet.go:217: Data received(client: [::1]:65346, IMEI: 352094087982671) +2018/08/13 16:30:37 ruptelaNet.go:231: Sent ACK (client: [::1]:65346, IMEI: 352094087982671) +2018/08/13 16:30:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:30:39 ruptelaNet.go:217: Data received(client: [::1]:65358, IMEI: 352094087230394) +2018/08/13 16:30:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:30:39 ruptelaNet.go:231: Sent ACK (client: [::1]:65358, IMEI: 352094087230394) +2018/08/13 16:30:40 ruptelaNet.go:239: Close connection(client: [::1]:65358) +2018/08/13 16:30:41 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:30:41 ruptelaNet.go:217: Data received(client: [::1]:65346, IMEI: 352094087982671) +2018/08/13 16:30:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:30:41 ruptelaNet.go:231: Sent ACK (client: [::1]:65346, IMEI: 352094087982671) +2018/08/13 16:30:43 ruptelaNet.go:239: Close connection(client: [::1]:65346) +2018/08/13 16:31:06 ruptelaNet.go:170: New connection(client: [::1]:65500) +2018/08/13 16:31:07 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:31:07 ruptelaNet.go:217: Data received(client: [::1]:65500, IMEI: 352094087982671) +2018/08/13 16:31:07 ruptelaNet.go:231: Sent ACK (client: [::1]:65500, IMEI: 352094087982671) +2018/08/13 16:31:11 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:31:11 ruptelaNet.go:217: Data received(client: [::1]:65500, IMEI: 352094087982671) +2018/08/13 16:31:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:31:11 ruptelaNet.go:231: Sent ACK (client: [::1]:65500, IMEI: 352094087982671) +2018/08/13 16:31:13 ruptelaNet.go:239: Close connection(client: [::1]:65500) +2018/08/13 16:31:37 ruptelaNet.go:170: New connection(client: [::1]:49279) +2018/08/13 16:31:37 ruptelaNet.go:170: New connection(client: [::1]:49280) +2018/08/13 16:31:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:31:37 ruptelaNet.go:217: Data received(client: [::1]:49279, IMEI: 352094087230394) +2018/08/13 16:31:37 ruptelaNet.go:231: Sent ACK (client: [::1]:49279, IMEI: 352094087230394) +2018/08/13 16:31:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:31:38 ruptelaNet.go:217: Data received(client: [::1]:49280, IMEI: 352094087982671) +2018/08/13 16:31:38 ruptelaNet.go:231: Sent ACK (client: [::1]:49280, IMEI: 352094087982671) +2018/08/13 16:31:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:31:39 ruptelaNet.go:217: Data received(client: [::1]:49279, IMEI: 352094087230394) +2018/08/13 16:31:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:31:39 ruptelaNet.go:231: Sent ACK (client: [::1]:49279, IMEI: 352094087230394) +2018/08/13 16:31:40 ruptelaNet.go:239: Close connection(client: [::1]:49279) +2018/08/13 16:31:41 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:31:41 ruptelaNet.go:217: Data received(client: [::1]:49280, IMEI: 352094087982671) +2018/08/13 16:31:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:31:41 ruptelaNet.go:231: Sent ACK (client: [::1]:49280, IMEI: 352094087982671) +2018/08/13 16:31:44 ruptelaNet.go:239: Close connection(client: [::1]:49280) +2018/08/13 16:32:07 ruptelaNet.go:170: New connection(client: [::1]:49434) +2018/08/13 16:32:08 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:32:08 ruptelaNet.go:217: Data received(client: [::1]:49434, IMEI: 352094087982671) +2018/08/13 16:32:08 ruptelaNet.go:231: Sent ACK (client: [::1]:49434, IMEI: 352094087982671) +2018/08/13 16:32:12 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:32:12 ruptelaNet.go:217: Data received(client: [::1]:49434, IMEI: 352094087982671) +2018/08/13 16:32:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:32:12 ruptelaNet.go:231: Sent ACK (client: [::1]:49434, IMEI: 352094087982671) +2018/08/13 16:32:14 ruptelaNet.go:239: Close connection(client: [::1]:49434) +2018/08/13 16:32:37 ruptelaNet.go:170: New connection(client: [::1]:49588) +2018/08/13 16:32:37 ruptelaNet.go:170: New connection(client: [::1]:49589) +2018/08/13 16:32:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:32:38 ruptelaNet.go:217: Data received(client: [::1]:49589, IMEI: 352094087230394) +2018/08/13 16:32:38 ruptelaNet.go:231: Sent ACK (client: [::1]:49589, IMEI: 352094087230394) +2018/08/13 16:32:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:32:38 ruptelaNet.go:217: Data received(client: [::1]:49588, IMEI: 352094087982671) +2018/08/13 16:32:38 ruptelaNet.go:231: Sent ACK (client: [::1]:49588, IMEI: 352094087982671) +2018/08/13 16:32:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:32:40 ruptelaNet.go:217: Data received(client: [::1]:49589, IMEI: 352094087230394) +2018/08/13 16:32:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:32:40 ruptelaNet.go:231: Sent ACK (client: [::1]:49589, IMEI: 352094087230394) +2018/08/13 16:32:41 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:32:41 ruptelaNet.go:217: Data received(client: [::1]:49588, IMEI: 352094087982671) +2018/08/13 16:32:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:32:41 ruptelaNet.go:231: Sent ACK (client: [::1]:49588, IMEI: 352094087982671) +2018/08/13 16:32:42 ruptelaNet.go:239: Close connection(client: [::1]:49589) +2018/08/13 16:32:48 ruptelaNet.go:239: Close connection(client: [::1]:49588) +2018/08/13 16:33:12 ruptelaNet.go:170: New connection(client: [::1]:49771) +2018/08/13 16:33:12 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:33:12 ruptelaNet.go:217: Data received(client: [::1]:49771, IMEI: 352094087982671) +2018/08/13 16:33:12 ruptelaNet.go:231: Sent ACK (client: [::1]:49771, IMEI: 352094087982671) +2018/08/13 16:33:15 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:33:15 ruptelaNet.go:217: Data received(client: [::1]:49771, IMEI: 352094087982671) +2018/08/13 16:33:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:33:15 ruptelaNet.go:231: Sent ACK (client: [::1]:49771, IMEI: 352094087982671) +2018/08/13 16:33:17 ruptelaNet.go:239: Close connection(client: [::1]:49771) +2018/08/13 16:33:37 ruptelaNet.go:170: New connection(client: [::1]:49904) +2018/08/13 16:33:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:33:37 ruptelaNet.go:217: Data received(client: [::1]:49904, IMEI: 352094087230394) +2018/08/13 16:33:37 ruptelaNet.go:231: Sent ACK (client: [::1]:49904, IMEI: 352094087230394) +2018/08/13 16:33:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:33:39 ruptelaNet.go:217: Data received(client: [::1]:49904, IMEI: 352094087230394) +2018/08/13 16:33:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:33:39 ruptelaNet.go:231: Sent ACK (client: [::1]:49904, IMEI: 352094087230394) +2018/08/13 16:33:40 ruptelaNet.go:170: New connection(client: [::1]:49916) +2018/08/13 16:33:40 ruptelaNet.go:239: Close connection(client: [::1]:49904) +2018/08/13 16:33:41 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:33:41 ruptelaNet.go:217: Data received(client: [::1]:49916, IMEI: 352094087982671) +2018/08/13 16:33:41 ruptelaNet.go:231: Sent ACK (client: [::1]:49916, IMEI: 352094087982671) +2018/08/13 16:33:44 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:33:44 ruptelaNet.go:217: Data received(client: [::1]:49916, IMEI: 352094087982671) +2018/08/13 16:33:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:33:44 ruptelaNet.go:231: Sent ACK (client: [::1]:49916, IMEI: 352094087982671) +2018/08/13 16:33:47 ruptelaNet.go:239: Close connection(client: [::1]:49916) +2018/08/13 16:34:10 ruptelaNet.go:170: New connection(client: [::1]:50074) +2018/08/13 16:34:11 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:34:11 ruptelaNet.go:217: Data received(client: [::1]:50074, IMEI: 352094087982671) +2018/08/13 16:34:11 ruptelaNet.go:231: Sent ACK (client: [::1]:50074, IMEI: 352094087982671) +2018/08/13 16:34:15 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:34:15 ruptelaNet.go:217: Data received(client: [::1]:50074, IMEI: 352094087982671) +2018/08/13 16:34:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:34:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50074, IMEI: 352094087982671) +2018/08/13 16:34:17 ruptelaNet.go:239: Close connection(client: [::1]:50074) +2018/08/13 16:34:37 ruptelaNet.go:170: New connection(client: [::1]:50216) +2018/08/13 16:34:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:34:37 ruptelaNet.go:217: Data received(client: [::1]:50216, IMEI: 352094087230394) +2018/08/13 16:34:37 ruptelaNet.go:231: Sent ACK (client: [::1]:50216, IMEI: 352094087230394) +2018/08/13 16:34:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:34:39 ruptelaNet.go:217: Data received(client: [::1]:50216, IMEI: 352094087230394) +2018/08/13 16:34:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:34:39 ruptelaNet.go:231: Sent ACK (client: [::1]:50216, IMEI: 352094087230394) +2018/08/13 16:34:40 ruptelaNet.go:170: New connection(client: [::1]:50224) +2018/08/13 16:34:41 ruptelaNet.go:239: Close connection(client: [::1]:50216) +2018/08/13 16:34:41 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:34:41 ruptelaNet.go:217: Data received(client: [::1]:50224, IMEI: 352094087982671) +2018/08/13 16:34:41 ruptelaNet.go:231: Sent ACK (client: [::1]:50224, IMEI: 352094087982671) +2018/08/13 16:34:46 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:34:46 ruptelaNet.go:217: Data received(client: [::1]:50224, IMEI: 352094087982671) +2018/08/13 16:34:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:34:46 ruptelaNet.go:231: Sent ACK (client: [::1]:50224, IMEI: 352094087982671) +2018/08/13 16:34:48 ruptelaNet.go:239: Close connection(client: [::1]:50224) +2018/08/13 16:35:10 ruptelaNet.go:170: New connection(client: [::1]:50375) +2018/08/13 16:35:12 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:35:12 ruptelaNet.go:217: Data received(client: [::1]:50375, IMEI: 352094087982671) +2018/08/13 16:35:12 ruptelaNet.go:231: Sent ACK (client: [::1]:50375, IMEI: 352094087982671) +2018/08/13 16:35:15 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:35:15 ruptelaNet.go:217: Data received(client: [::1]:50375, IMEI: 352094087982671) +2018/08/13 16:35:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:35:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50375, IMEI: 352094087982671) +2018/08/13 16:35:17 ruptelaNet.go:239: Close connection(client: [::1]:50375) +2018/08/13 16:35:37 ruptelaNet.go:170: New connection(client: [::1]:50444) +2018/08/13 16:35:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:35:37 ruptelaNet.go:217: Data received(client: [::1]:50444, IMEI: 352094087230394) +2018/08/13 16:35:37 ruptelaNet.go:231: Sent ACK (client: [::1]:50444, IMEI: 352094087230394) +2018/08/13 16:35:39 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:35:39 ruptelaNet.go:217: Data received(client: [::1]:50444, IMEI: 352094087230394) +2018/08/13 16:35:39 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:35:39 ruptelaNet.go:231: Sent ACK (client: [::1]:50444, IMEI: 352094087230394) +2018/08/13 16:35:40 ruptelaNet.go:170: New connection(client: [::1]:50450) +2018/08/13 16:35:40 ruptelaNet.go:239: Close connection(client: [::1]:50444) +2018/08/13 16:35:41 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:35:41 ruptelaNet.go:217: Data received(client: [::1]:50450, IMEI: 352094087982671) +2018/08/13 16:35:41 ruptelaNet.go:231: Sent ACK (client: [::1]:50450, IMEI: 352094087982671) +2018/08/13 16:35:44 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:35:44 ruptelaNet.go:217: Data received(client: [::1]:50450, IMEI: 352094087982671) +2018/08/13 16:35:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:35:44 ruptelaNet.go:231: Sent ACK (client: [::1]:50450, IMEI: 352094087982671) +2018/08/13 16:35:50 ruptelaNet.go:239: Close connection(client: [::1]:50450) +2018/08/13 16:36:14 ruptelaNet.go:170: New connection(client: [::1]:50523) +2018/08/13 16:36:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:36:15 ruptelaNet.go:217: Data received(client: [::1]:50523, IMEI: 352094087982671) +2018/08/13 16:36:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50523, IMEI: 352094087982671) +2018/08/13 16:36:18 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:36:18 ruptelaNet.go:217: Data received(client: [::1]:50523, IMEI: 352094087982671) +2018/08/13 16:36:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:36:18 ruptelaNet.go:231: Sent ACK (client: [::1]:50523, IMEI: 352094087982671) +2018/08/13 16:36:20 ruptelaNet.go:239: Close connection(client: [::1]:50523) +2018/08/13 16:36:38 ruptelaNet.go:170: New connection(client: [::1]:50587) +2018/08/13 16:36:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:36:38 ruptelaNet.go:217: Data received(client: [::1]:50587, IMEI: 352094087230394) +2018/08/13 16:36:38 ruptelaNet.go:231: Sent ACK (client: [::1]:50587, IMEI: 352094087230394) +2018/08/13 16:36:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:36:40 ruptelaNet.go:217: Data received(client: [::1]:50587, IMEI: 352094087230394) +2018/08/13 16:36:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:36:40 ruptelaNet.go:231: Sent ACK (client: [::1]:50587, IMEI: 352094087230394) +2018/08/13 16:36:42 ruptelaNet.go:239: Close connection(client: [::1]:50587) +2018/08/13 16:36:44 ruptelaNet.go:170: New connection(client: [::1]:50603) +2018/08/13 16:36:45 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:36:45 ruptelaNet.go:217: Data received(client: [::1]:50603, IMEI: 352094087982671) +2018/08/13 16:36:45 ruptelaNet.go:231: Sent ACK (client: [::1]:50603, IMEI: 352094087982671) +2018/08/13 16:36:49 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:36:49 ruptelaNet.go:217: Data received(client: [::1]:50603, IMEI: 352094087982671) +2018/08/13 16:36:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:36:49 ruptelaNet.go:231: Sent ACK (client: [::1]:50603, IMEI: 352094087982671) +2018/08/13 16:36:51 ruptelaNet.go:239: Close connection(client: [::1]:50603) +2018/08/13 16:37:14 ruptelaNet.go:170: New connection(client: [::1]:50680) +2018/08/13 16:37:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:37:15 ruptelaNet.go:217: Data received(client: [::1]:50680, IMEI: 352094087982671) +2018/08/13 16:37:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50680, IMEI: 352094087982671) +2018/08/13 16:37:19 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:37:19 ruptelaNet.go:217: Data received(client: [::1]:50680, IMEI: 352094087982671) +2018/08/13 16:37:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:37:19 ruptelaNet.go:231: Sent ACK (client: [::1]:50680, IMEI: 352094087982671) +2018/08/13 16:37:21 ruptelaNet.go:239: Close connection(client: [::1]:50680) +2018/08/13 16:37:38 ruptelaNet.go:170: New connection(client: [::1]:50741) +2018/08/13 16:37:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:37:38 ruptelaNet.go:217: Data received(client: [::1]:50741, IMEI: 352094087230394) +2018/08/13 16:37:38 ruptelaNet.go:231: Sent ACK (client: [::1]:50741, IMEI: 352094087230394) +2018/08/13 16:37:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:37:40 ruptelaNet.go:217: Data received(client: [::1]:50741, IMEI: 352094087230394) +2018/08/13 16:37:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:37:40 ruptelaNet.go:231: Sent ACK (client: [::1]:50741, IMEI: 352094087230394) +2018/08/13 16:37:41 ruptelaNet.go:239: Close connection(client: [::1]:50741) +2018/08/13 16:37:44 ruptelaNet.go:170: New connection(client: [::1]:50759) +2018/08/13 16:37:45 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:37:45 ruptelaNet.go:217: Data received(client: [::1]:50759, IMEI: 352094087982671) +2018/08/13 16:37:45 ruptelaNet.go:231: Sent ACK (client: [::1]:50759, IMEI: 352094087982671) +2018/08/13 16:37:49 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:37:49 ruptelaNet.go:217: Data received(client: [::1]:50759, IMEI: 352094087982671) +2018/08/13 16:37:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:37:49 ruptelaNet.go:231: Sent ACK (client: [::1]:50759, IMEI: 352094087982671) +2018/08/13 16:37:51 ruptelaNet.go:239: Close connection(client: [::1]:50759) +2018/08/13 16:38:14 ruptelaNet.go:170: New connection(client: [::1]:50837) +2018/08/13 16:38:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:38:15 ruptelaNet.go:217: Data received(client: [::1]:50837, IMEI: 352094087982671) +2018/08/13 16:38:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50837, IMEI: 352094087982671) +2018/08/13 16:38:18 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:38:18 ruptelaNet.go:217: Data received(client: [::1]:50837, IMEI: 352094087982671) +2018/08/13 16:38:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:38:18 ruptelaNet.go:231: Sent ACK (client: [::1]:50837, IMEI: 352094087982671) +2018/08/13 16:38:21 ruptelaNet.go:239: Close connection(client: [::1]:50837) +2018/08/13 16:38:38 ruptelaNet.go:170: New connection(client: [::1]:50899) +2018/08/13 16:38:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:38:38 ruptelaNet.go:217: Data received(client: [::1]:50899, IMEI: 352094087230394) +2018/08/13 16:38:38 ruptelaNet.go:231: Sent ACK (client: [::1]:50899, IMEI: 352094087230394) +2018/08/13 16:38:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:38:40 ruptelaNet.go:217: Data received(client: [::1]:50899, IMEI: 352094087230394) +2018/08/13 16:38:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:38:40 ruptelaNet.go:231: Sent ACK (client: [::1]:50899, IMEI: 352094087230394) +2018/08/13 16:38:42 ruptelaNet.go:239: Close connection(client: [::1]:50899) +2018/08/13 16:38:44 ruptelaNet.go:170: New connection(client: [::1]:50915) +2018/08/13 16:38:45 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:38:45 ruptelaNet.go:217: Data received(client: [::1]:50915, IMEI: 352094087982671) +2018/08/13 16:38:45 ruptelaNet.go:231: Sent ACK (client: [::1]:50915, IMEI: 352094087982671) +2018/08/13 16:38:48 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:38:48 ruptelaNet.go:217: Data received(client: [::1]:50915, IMEI: 352094087982671) +2018/08/13 16:38:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:38:48 ruptelaNet.go:231: Sent ACK (client: [::1]:50915, IMEI: 352094087982671) +2018/08/13 16:38:50 ruptelaNet.go:239: Close connection(client: [::1]:50915) +2018/08/13 16:39:14 ruptelaNet.go:170: New connection(client: [::1]:50992) +2018/08/13 16:39:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:39:15 ruptelaNet.go:217: Data received(client: [::1]:50992, IMEI: 352094087982671) +2018/08/13 16:39:15 ruptelaNet.go:231: Sent ACK (client: [::1]:50992, IMEI: 352094087982671) +2018/08/13 16:39:19 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:39:19 ruptelaNet.go:217: Data received(client: [::1]:50992, IMEI: 352094087982671) +2018/08/13 16:39:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:39:19 ruptelaNet.go:231: Sent ACK (client: [::1]:50992, IMEI: 352094087982671) +2018/08/13 16:39:21 ruptelaNet.go:239: Close connection(client: [::1]:50992) +2018/08/13 16:39:38 ruptelaNet.go:170: New connection(client: [::1]:51055) +2018/08/13 16:39:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:39:38 ruptelaNet.go:217: Data received(client: [::1]:51055, IMEI: 352094087230394) +2018/08/13 16:39:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51055, IMEI: 352094087230394) +2018/08/13 16:39:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:39:40 ruptelaNet.go:217: Data received(client: [::1]:51055, IMEI: 352094087230394) +2018/08/13 16:39:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:39:40 ruptelaNet.go:231: Sent ACK (client: [::1]:51055, IMEI: 352094087230394) +2018/08/13 16:39:42 ruptelaNet.go:239: Close connection(client: [::1]:51055) +2018/08/13 16:39:44 ruptelaNet.go:170: New connection(client: [::1]:51071) +2018/08/13 16:39:45 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:39:45 ruptelaNet.go:217: Data received(client: [::1]:51071, IMEI: 352094087982671) +2018/08/13 16:39:45 ruptelaNet.go:231: Sent ACK (client: [::1]:51071, IMEI: 352094087982671) +2018/08/13 16:39:48 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:39:49 ruptelaNet.go:217: Data received(client: [::1]:51071, IMEI: 352094087982671) +2018/08/13 16:39:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:39:49 ruptelaNet.go:231: Sent ACK (client: [::1]:51071, IMEI: 352094087982671) +2018/08/13 16:39:51 ruptelaNet.go:239: Close connection(client: [::1]:51071) +2018/08/13 16:40:14 ruptelaNet.go:170: New connection(client: [::1]:51148) +2018/08/13 16:40:15 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:40:15 ruptelaNet.go:217: Data received(client: [::1]:51148, IMEI: 352094087982671) +2018/08/13 16:40:15 ruptelaNet.go:231: Sent ACK (client: [::1]:51148, IMEI: 352094087982671) +2018/08/13 16:40:19 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:40:19 ruptelaNet.go:217: Data received(client: [::1]:51148, IMEI: 352094087982671) +2018/08/13 16:40:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:40:19 ruptelaNet.go:231: Sent ACK (client: [::1]:51148, IMEI: 352094087982671) +2018/08/13 16:40:21 ruptelaNet.go:239: Close connection(client: [::1]:51148) +2018/08/13 16:40:38 ruptelaNet.go:170: New connection(client: [::1]:51208) +2018/08/13 16:40:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:40:38 ruptelaNet.go:217: Data received(client: [::1]:51208, IMEI: 352094087230394) +2018/08/13 16:40:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51208, IMEI: 352094087230394) +2018/08/13 16:40:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:40:40 ruptelaNet.go:217: Data received(client: [::1]:51208, IMEI: 352094087230394) +2018/08/13 16:40:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:40:40 ruptelaNet.go:231: Sent ACK (client: [::1]:51208, IMEI: 352094087230394) +2018/08/13 16:40:42 ruptelaNet.go:239: Close connection(client: [::1]:51208) +2018/08/13 16:40:46 ruptelaNet.go:170: New connection(client: [::1]:51230) +2018/08/13 16:40:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:40:47 ruptelaNet.go:217: Data received(client: [::1]:51230, IMEI: 352094087982671) +2018/08/13 16:40:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51230, IMEI: 352094087982671) +2018/08/13 16:40:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:40:50 ruptelaNet.go:217: Data received(client: [::1]:51230, IMEI: 352094087982671) +2018/08/13 16:40:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:40:50 ruptelaNet.go:231: Sent ACK (client: [::1]:51230, IMEI: 352094087982671) +2018/08/13 16:40:53 ruptelaNet.go:239: Close connection(client: [::1]:51230) +2018/08/13 16:41:16 ruptelaNet.go:170: New connection(client: [::1]:51306) +2018/08/13 16:41:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:41:17 ruptelaNet.go:217: Data received(client: [::1]:51306, IMEI: 352094087982671) +2018/08/13 16:41:17 ruptelaNet.go:231: Sent ACK (client: [::1]:51306, IMEI: 352094087982671) +2018/08/13 16:41:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:41:20 ruptelaNet.go:217: Data received(client: [::1]:51306, IMEI: 352094087982671) +2018/08/13 16:41:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:41:20 ruptelaNet.go:231: Sent ACK (client: [::1]:51306, IMEI: 352094087982671) +2018/08/13 16:41:23 ruptelaNet.go:239: Close connection(client: [::1]:51306) +2018/08/13 16:41:38 ruptelaNet.go:170: New connection(client: [::1]:51357) +2018/08/13 16:41:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:41:38 ruptelaNet.go:217: Data received(client: [::1]:51357, IMEI: 352094087230394) +2018/08/13 16:41:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51357, IMEI: 352094087230394) +2018/08/13 16:41:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:41:41 ruptelaNet.go:217: Data received(client: [::1]:51357, IMEI: 352094087230394) +2018/08/13 16:41:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:41:41 ruptelaNet.go:231: Sent ACK (client: [::1]:51357, IMEI: 352094087230394) +2018/08/13 16:41:42 ruptelaNet.go:239: Close connection(client: [::1]:51357) +2018/08/13 16:41:46 ruptelaNet.go:170: New connection(client: [::1]:51378) +2018/08/13 16:41:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:41:47 ruptelaNet.go:217: Data received(client: [::1]:51378, IMEI: 352094087982671) +2018/08/13 16:41:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51378, IMEI: 352094087982671) +2018/08/13 16:41:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:41:50 ruptelaNet.go:217: Data received(client: [::1]:51378, IMEI: 352094087982671) +2018/08/13 16:41:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:41:50 ruptelaNet.go:231: Sent ACK (client: [::1]:51378, IMEI: 352094087982671) +2018/08/13 16:41:53 ruptelaNet.go:239: Close connection(client: [::1]:51378) +2018/08/13 16:42:16 ruptelaNet.go:170: New connection(client: [::1]:51450) +2018/08/13 16:42:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:42:17 ruptelaNet.go:217: Data received(client: [::1]:51450, IMEI: 352094087982671) +2018/08/13 16:42:17 ruptelaNet.go:231: Sent ACK (client: [::1]:51450, IMEI: 352094087982671) +2018/08/13 16:42:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:42:21 ruptelaNet.go:217: Data received(client: [::1]:51450, IMEI: 352094087982671) +2018/08/13 16:42:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:42:21 ruptelaNet.go:231: Sent ACK (client: [::1]:51450, IMEI: 352094087982671) +2018/08/13 16:42:23 ruptelaNet.go:239: Close connection(client: [::1]:51450) +2018/08/13 16:42:38 ruptelaNet.go:170: New connection(client: [::1]:51506) +2018/08/13 16:42:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:42:38 ruptelaNet.go:217: Data received(client: [::1]:51506, IMEI: 352094087230394) +2018/08/13 16:42:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51506, IMEI: 352094087230394) +2018/08/13 16:42:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:42:41 ruptelaNet.go:217: Data received(client: [::1]:51506, IMEI: 352094087230394) +2018/08/13 16:42:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:42:41 ruptelaNet.go:231: Sent ACK (client: [::1]:51506, IMEI: 352094087230394) +2018/08/13 16:42:42 ruptelaNet.go:239: Close connection(client: [::1]:51506) +2018/08/13 16:42:46 ruptelaNet.go:170: New connection(client: [::1]:51529) +2018/08/13 16:42:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:42:47 ruptelaNet.go:217: Data received(client: [::1]:51529, IMEI: 352094087982671) +2018/08/13 16:42:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51529, IMEI: 352094087982671) +2018/08/13 16:42:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:42:50 ruptelaNet.go:217: Data received(client: [::1]:51529, IMEI: 352094087982671) +2018/08/13 16:42:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:42:50 ruptelaNet.go:231: Sent ACK (client: [::1]:51529, IMEI: 352094087982671) +2018/08/13 16:42:53 ruptelaNet.go:239: Close connection(client: [::1]:51529) +2018/08/13 16:43:16 ruptelaNet.go:170: New connection(client: [::1]:51608) +2018/08/13 16:43:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:43:17 ruptelaNet.go:217: Data received(client: [::1]:51608, IMEI: 352094087982671) +2018/08/13 16:43:17 ruptelaNet.go:231: Sent ACK (client: [::1]:51608, IMEI: 352094087982671) +2018/08/13 16:43:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:43:21 ruptelaNet.go:217: Data received(client: [::1]:51608, IMEI: 352094087982671) +2018/08/13 16:43:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:43:21 ruptelaNet.go:231: Sent ACK (client: [::1]:51608, IMEI: 352094087982671) +2018/08/13 16:43:23 ruptelaNet.go:239: Close connection(client: [::1]:51608) +2018/08/13 16:43:38 ruptelaNet.go:170: New connection(client: [::1]:51664) +2018/08/13 16:43:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:43:38 ruptelaNet.go:217: Data received(client: [::1]:51664, IMEI: 352094087230394) +2018/08/13 16:43:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51664, IMEI: 352094087230394) +2018/08/13 16:43:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:43:40 ruptelaNet.go:217: Data received(client: [::1]:51664, IMEI: 352094087230394) +2018/08/13 16:43:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:43:40 ruptelaNet.go:231: Sent ACK (client: [::1]:51664, IMEI: 352094087230394) +2018/08/13 16:43:42 ruptelaNet.go:239: Close connection(client: [::1]:51664) +2018/08/13 16:43:46 ruptelaNet.go:170: New connection(client: [::1]:51685) +2018/08/13 16:43:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:43:47 ruptelaNet.go:217: Data received(client: [::1]:51685, IMEI: 352094087982671) +2018/08/13 16:43:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51685, IMEI: 352094087982671) +2018/08/13 16:43:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:43:50 ruptelaNet.go:217: Data received(client: [::1]:51685, IMEI: 352094087982671) +2018/08/13 16:43:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:43:50 ruptelaNet.go:231: Sent ACK (client: [::1]:51685, IMEI: 352094087982671) +2018/08/13 16:43:53 ruptelaNet.go:239: Close connection(client: [::1]:51685) +2018/08/13 16:44:16 ruptelaNet.go:170: New connection(client: [::1]:51762) +2018/08/13 16:44:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:44:17 ruptelaNet.go:217: Data received(client: [::1]:51762, IMEI: 352094087982671) +2018/08/13 16:44:17 ruptelaNet.go:231: Sent ACK (client: [::1]:51762, IMEI: 352094087982671) +2018/08/13 16:44:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:44:21 ruptelaNet.go:217: Data received(client: [::1]:51762, IMEI: 352094087982671) +2018/08/13 16:44:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:44:21 ruptelaNet.go:231: Sent ACK (client: [::1]:51762, IMEI: 352094087982671) +2018/08/13 16:44:23 ruptelaNet.go:239: Close connection(client: [::1]:51762) +2018/08/13 16:44:38 ruptelaNet.go:170: New connection(client: [::1]:51819) +2018/08/13 16:44:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:44:38 ruptelaNet.go:217: Data received(client: [::1]:51819, IMEI: 352094087230394) +2018/08/13 16:44:38 ruptelaNet.go:231: Sent ACK (client: [::1]:51819, IMEI: 352094087230394) +2018/08/13 16:44:40 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:44:40 ruptelaNet.go:217: Data received(client: [::1]:51819, IMEI: 352094087230394) +2018/08/13 16:44:40 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:44:40 ruptelaNet.go:231: Sent ACK (client: [::1]:51819, IMEI: 352094087230394) +2018/08/13 16:44:42 ruptelaNet.go:239: Close connection(client: [::1]:51819) +2018/08/13 16:44:47 ruptelaNet.go:170: New connection(client: [::1]:51843) +2018/08/13 16:44:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:44:47 ruptelaNet.go:217: Data received(client: [::1]:51843, IMEI: 352094087982671) +2018/08/13 16:44:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51843, IMEI: 352094087982671) +2018/08/13 16:44:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:44:50 ruptelaNet.go:217: Data received(client: [::1]:51843, IMEI: 352094087982671) +2018/08/13 16:44:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:44:50 ruptelaNet.go:231: Sent ACK (client: [::1]:51843, IMEI: 352094087982671) +2018/08/13 16:44:53 ruptelaNet.go:239: Close connection(client: [::1]:51843) +2018/08/13 16:45:16 ruptelaNet.go:170: New connection(client: [::1]:51915) +2018/08/13 16:45:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:45:17 ruptelaNet.go:217: Data received(client: [::1]:51915, IMEI: 352094087982671) +2018/08/13 16:45:17 ruptelaNet.go:231: Sent ACK (client: [::1]:51915, IMEI: 352094087982671) +2018/08/13 16:45:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:45:21 ruptelaNet.go:217: Data received(client: [::1]:51915, IMEI: 352094087982671) +2018/08/13 16:45:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:45:21 ruptelaNet.go:231: Sent ACK (client: [::1]:51915, IMEI: 352094087982671) +2018/08/13 16:45:23 ruptelaNet.go:239: Close connection(client: [::1]:51915) +2018/08/13 16:45:39 ruptelaNet.go:170: New connection(client: [::1]:51971) +2018/08/13 16:45:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:45:39 ruptelaNet.go:217: Data received(client: [::1]:51971, IMEI: 352094087230394) +2018/08/13 16:45:39 ruptelaNet.go:231: Sent ACK (client: [::1]:51971, IMEI: 352094087230394) +2018/08/13 16:45:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:45:41 ruptelaNet.go:217: Data received(client: [::1]:51971, IMEI: 352094087230394) +2018/08/13 16:45:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:45:41 ruptelaNet.go:231: Sent ACK (client: [::1]:51971, IMEI: 352094087230394) +2018/08/13 16:45:42 ruptelaNet.go:239: Close connection(client: [::1]:51971) +2018/08/13 16:45:46 ruptelaNet.go:170: New connection(client: [::1]:51990) +2018/08/13 16:45:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:45:47 ruptelaNet.go:217: Data received(client: [::1]:51990, IMEI: 352094087982671) +2018/08/13 16:45:47 ruptelaNet.go:231: Sent ACK (client: [::1]:51990, IMEI: 352094087982671) +2018/08/13 16:45:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:45:51 ruptelaNet.go:217: Data received(client: [::1]:51990, IMEI: 352094087982671) +2018/08/13 16:45:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:45:51 ruptelaNet.go:231: Sent ACK (client: [::1]:51990, IMEI: 352094087982671) +2018/08/13 16:45:55 ruptelaNet.go:239: Close connection(client: [::1]:51990) +2018/08/13 16:46:18 ruptelaNet.go:170: New connection(client: [::1]:52071) +2018/08/13 16:46:19 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:46:19 ruptelaNet.go:217: Data received(client: [::1]:52071, IMEI: 352094087982671) +2018/08/13 16:46:19 ruptelaNet.go:231: Sent ACK (client: [::1]:52071, IMEI: 352094087982671) +2018/08/13 16:46:23 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:46:23 ruptelaNet.go:217: Data received(client: [::1]:52071, IMEI: 352094087982671) +2018/08/13 16:46:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:46:23 ruptelaNet.go:231: Sent ACK (client: [::1]:52071, IMEI: 352094087982671) +2018/08/13 16:46:25 ruptelaNet.go:239: Close connection(client: [::1]:52071) +2018/08/13 16:46:35 ruptelaNet.go:170: New connection(client: [::1]:52109) +2018/08/13 16:46:38 ruptelaNet.go:170: New connection(client: [::1]:52115) +2018/08/13 16:46:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:46:38 ruptelaNet.go:217: Data received(client: [::1]:52115, IMEI: 352094087230394) +2018/08/13 16:46:38 ruptelaNet.go:231: Sent ACK (client: [::1]:52115, IMEI: 352094087230394) +2018/08/13 16:46:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:46:41 ruptelaNet.go:217: Data received(client: [::1]:52115, IMEI: 352094087230394) +2018/08/13 16:46:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:46:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52115, IMEI: 352094087230394) +2018/08/13 16:46:42 ruptelaNet.go:239: Close connection(client: [::1]:52115) +2018/08/13 16:46:48 ruptelaNet.go:170: New connection(client: [::1]:52142) +2018/08/13 16:46:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:46:49 ruptelaNet.go:217: Data received(client: [::1]:52142, IMEI: 352094087982671) +2018/08/13 16:46:49 ruptelaNet.go:231: Sent ACK (client: [::1]:52142, IMEI: 352094087982671) +2018/08/13 16:46:51 ruptelaNet.go:239: Close connection(client: [::1]:52109) +2018/08/13 16:46:51 ruptelaNet.go:170: New connection(client: [::1]:52150) +2018/08/13 16:46:53 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:46:53 ruptelaNet.go:217: Data received(client: [::1]:52142, IMEI: 352094087982671) +2018/08/13 16:46:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:46:53 ruptelaNet.go:231: Sent ACK (client: [::1]:52142, IMEI: 352094087982671) +2018/08/13 16:46:55 ruptelaNet.go:239: Close connection(client: [::1]:52142) +2018/08/13 16:47:07 ruptelaNet.go:239: Close connection(client: [::1]:52150) +2018/08/13 16:47:18 ruptelaNet.go:170: New connection(client: [::1]:52219) +2018/08/13 16:47:19 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:47:19 ruptelaNet.go:217: Data received(client: [::1]:52219, IMEI: 352094087982671) +2018/08/13 16:47:19 ruptelaNet.go:231: Sent ACK (client: [::1]:52219, IMEI: 352094087982671) +2018/08/13 16:47:23 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:47:23 ruptelaNet.go:217: Data received(client: [::1]:52219, IMEI: 352094087982671) +2018/08/13 16:47:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:47:23 ruptelaNet.go:231: Sent ACK (client: [::1]:52219, IMEI: 352094087982671) +2018/08/13 16:47:25 ruptelaNet.go:239: Close connection(client: [::1]:52219) +2018/08/13 16:47:38 ruptelaNet.go:170: New connection(client: [::1]:52264) +2018/08/13 16:47:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:47:38 ruptelaNet.go:217: Data received(client: [::1]:52264, IMEI: 352094087230394) +2018/08/13 16:47:38 ruptelaNet.go:231: Sent ACK (client: [::1]:52264, IMEI: 352094087230394) +2018/08/13 16:47:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:47:41 ruptelaNet.go:217: Data received(client: [::1]:52264, IMEI: 352094087230394) +2018/08/13 16:47:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:47:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52264, IMEI: 352094087230394) +2018/08/13 16:47:42 ruptelaNet.go:239: Close connection(client: [::1]:52264) +2018/08/13 16:47:47 ruptelaNet.go:170: New connection(client: [::1]:52290) +2018/08/13 16:47:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:47:49 ruptelaNet.go:217: Data received(client: [::1]:52290, IMEI: 352094087982671) +2018/08/13 16:47:49 ruptelaNet.go:231: Sent ACK (client: [::1]:52290, IMEI: 352094087982671) +2018/08/13 16:47:52 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:47:52 ruptelaNet.go:217: Data received(client: [::1]:52290, IMEI: 352094087982671) +2018/08/13 16:47:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:47:52 ruptelaNet.go:231: Sent ACK (client: [::1]:52290, IMEI: 352094087982671) +2018/08/13 16:47:54 ruptelaNet.go:239: Close connection(client: [::1]:52290) +2018/08/13 16:48:17 ruptelaNet.go:170: New connection(client: [::1]:52366) +2018/08/13 16:48:18 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:48:18 ruptelaNet.go:217: Data received(client: [::1]:52366, IMEI: 352094087982671) +2018/08/13 16:48:18 ruptelaNet.go:231: Sent ACK (client: [::1]:52366, IMEI: 352094087982671) +2018/08/13 16:48:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:48:21 ruptelaNet.go:217: Data received(client: [::1]:52366, IMEI: 352094087982671) +2018/08/13 16:48:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:48:21 ruptelaNet.go:231: Sent ACK (client: [::1]:52366, IMEI: 352094087982671) +2018/08/13 16:48:24 ruptelaNet.go:239: Close connection(client: [::1]:52366) +2018/08/13 16:48:38 ruptelaNet.go:170: New connection(client: [::1]:52414) +2018/08/13 16:48:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:48:38 ruptelaNet.go:217: Data received(client: [::1]:52414, IMEI: 352094087230394) +2018/08/13 16:48:38 ruptelaNet.go:231: Sent ACK (client: [::1]:52414, IMEI: 352094087230394) +2018/08/13 16:48:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:48:41 ruptelaNet.go:217: Data received(client: [::1]:52414, IMEI: 352094087230394) +2018/08/13 16:48:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:48:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52414, IMEI: 352094087230394) +2018/08/13 16:48:42 ruptelaNet.go:239: Close connection(client: [::1]:52414) +2018/08/13 16:48:47 ruptelaNet.go:170: New connection(client: [::1]:52435) +2018/08/13 16:48:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:48:48 ruptelaNet.go:217: Data received(client: [::1]:52435, IMEI: 352094087982671) +2018/08/13 16:48:48 ruptelaNet.go:231: Sent ACK (client: [::1]:52435, IMEI: 352094087982671) +2018/08/13 16:48:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:48:51 ruptelaNet.go:217: Data received(client: [::1]:52435, IMEI: 352094087982671) +2018/08/13 16:48:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:48:51 ruptelaNet.go:231: Sent ACK (client: [::1]:52435, IMEI: 352094087982671) +2018/08/13 16:48:54 ruptelaNet.go:239: Close connection(client: [::1]:52435) +2018/08/13 16:49:17 ruptelaNet.go:170: New connection(client: [::1]:52505) +2018/08/13 16:49:18 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:49:18 ruptelaNet.go:217: Data received(client: [::1]:52505, IMEI: 352094087982671) +2018/08/13 16:49:18 ruptelaNet.go:231: Sent ACK (client: [::1]:52505, IMEI: 352094087982671) +2018/08/13 16:49:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:49:21 ruptelaNet.go:217: Data received(client: [::1]:52505, IMEI: 352094087982671) +2018/08/13 16:49:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:49:21 ruptelaNet.go:231: Sent ACK (client: [::1]:52505, IMEI: 352094087982671) +2018/08/13 16:49:23 ruptelaNet.go:239: Close connection(client: [::1]:52505) +2018/08/13 16:49:39 ruptelaNet.go:170: New connection(client: [::1]:52566) +2018/08/13 16:49:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:49:39 ruptelaNet.go:217: Data received(client: [::1]:52566, IMEI: 352094087230394) +2018/08/13 16:49:39 ruptelaNet.go:231: Sent ACK (client: [::1]:52566, IMEI: 352094087230394) +2018/08/13 16:49:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:49:41 ruptelaNet.go:217: Data received(client: [::1]:52566, IMEI: 352094087230394) +2018/08/13 16:49:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:49:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52566, IMEI: 352094087230394) +2018/08/13 16:49:42 ruptelaNet.go:239: Close connection(client: [::1]:52566) +2018/08/13 16:49:46 ruptelaNet.go:170: New connection(client: [::1]:52588) +2018/08/13 16:49:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:49:47 ruptelaNet.go:217: Data received(client: [::1]:52588, IMEI: 352094087982671) +2018/08/13 16:49:47 ruptelaNet.go:231: Sent ACK (client: [::1]:52588, IMEI: 352094087982671) +2018/08/13 16:49:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:49:50 ruptelaNet.go:217: Data received(client: [::1]:52588, IMEI: 352094087982671) +2018/08/13 16:49:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:49:50 ruptelaNet.go:231: Sent ACK (client: [::1]:52588, IMEI: 352094087982671) +2018/08/13 16:49:53 ruptelaNet.go:239: Close connection(client: [::1]:52588) +2018/08/13 16:50:16 ruptelaNet.go:170: New connection(client: [::1]:52743) +2018/08/13 16:50:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:50:17 ruptelaNet.go:217: Data received(client: [::1]:52743, IMEI: 352094087982671) +2018/08/13 16:50:17 ruptelaNet.go:231: Sent ACK (client: [::1]:52743, IMEI: 352094087982671) +2018/08/13 16:50:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:50:21 ruptelaNet.go:217: Data received(client: [::1]:52743, IMEI: 352094087982671) +2018/08/13 16:50:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:50:21 ruptelaNet.go:231: Sent ACK (client: [::1]:52743, IMEI: 352094087982671) +2018/08/13 16:50:23 ruptelaNet.go:239: Close connection(client: [::1]:52743) +2018/08/13 16:50:39 ruptelaNet.go:170: New connection(client: [::1]:52867) +2018/08/13 16:50:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:50:39 ruptelaNet.go:217: Data received(client: [::1]:52867, IMEI: 352094087230394) +2018/08/13 16:50:39 ruptelaNet.go:231: Sent ACK (client: [::1]:52867, IMEI: 352094087230394) +2018/08/13 16:50:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:50:41 ruptelaNet.go:217: Data received(client: [::1]:52867, IMEI: 352094087230394) +2018/08/13 16:50:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:50:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52867, IMEI: 352094087230394) +2018/08/13 16:50:42 ruptelaNet.go:239: Close connection(client: [::1]:52867) +2018/08/13 16:50:46 ruptelaNet.go:170: New connection(client: [::1]:52903) +2018/08/13 16:50:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:50:47 ruptelaNet.go:217: Data received(client: [::1]:52903, IMEI: 352094087982671) +2018/08/13 16:50:47 ruptelaNet.go:231: Sent ACK (client: [::1]:52903, IMEI: 352094087982671) +2018/08/13 16:50:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:50:50 ruptelaNet.go:217: Data received(client: [::1]:52903, IMEI: 352094087982671) +2018/08/13 16:50:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:50:50 ruptelaNet.go:231: Sent ACK (client: [::1]:52903, IMEI: 352094087982671) +2018/08/13 16:50:53 ruptelaNet.go:239: Close connection(client: [::1]:52903) +2018/08/13 16:51:16 ruptelaNet.go:170: New connection(client: [::1]:53055) +2018/08/13 16:51:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:51:17 ruptelaNet.go:217: Data received(client: [::1]:53055, IMEI: 352094087982671) +2018/08/13 16:51:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53055, IMEI: 352094087982671) +2018/08/13 16:51:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:51:20 ruptelaNet.go:217: Data received(client: [::1]:53055, IMEI: 352094087982671) +2018/08/13 16:51:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:51:20 ruptelaNet.go:231: Sent ACK (client: [::1]:53055, IMEI: 352094087982671) +2018/08/13 16:51:23 ruptelaNet.go:239: Close connection(client: [::1]:53055) +2018/08/13 16:51:39 ruptelaNet.go:170: New connection(client: [::1]:53149) +2018/08/13 16:51:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:51:39 ruptelaNet.go:217: Data received(client: [::1]:53149, IMEI: 352094087230394) +2018/08/13 16:51:39 ruptelaNet.go:231: Sent ACK (client: [::1]:53149, IMEI: 352094087230394) +2018/08/13 16:51:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:51:41 ruptelaNet.go:217: Data received(client: [::1]:53149, IMEI: 352094087230394) +2018/08/13 16:51:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:51:41 ruptelaNet.go:231: Sent ACK (client: [::1]:53149, IMEI: 352094087230394) +2018/08/13 16:51:42 ruptelaNet.go:239: Close connection(client: [::1]:53149) +2018/08/13 16:51:46 ruptelaNet.go:170: New connection(client: [::1]:53165) +2018/08/13 16:51:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:51:47 ruptelaNet.go:217: Data received(client: [::1]:53165, IMEI: 352094087982671) +2018/08/13 16:51:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53165, IMEI: 352094087982671) +2018/08/13 16:51:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:51:51 ruptelaNet.go:217: Data received(client: [::1]:53165, IMEI: 352094087982671) +2018/08/13 16:51:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:51:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53165, IMEI: 352094087982671) +2018/08/13 16:51:54 ruptelaNet.go:239: Close connection(client: [::1]:53165) +2018/08/13 16:52:16 ruptelaNet.go:170: New connection(client: [::1]:53242) +2018/08/13 16:52:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:52:17 ruptelaNet.go:217: Data received(client: [::1]:53242, IMEI: 352094087982671) +2018/08/13 16:52:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53242, IMEI: 352094087982671) +2018/08/13 16:52:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:52:20 ruptelaNet.go:217: Data received(client: [::1]:53242, IMEI: 352094087982671) +2018/08/13 16:52:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:52:20 ruptelaNet.go:231: Sent ACK (client: [::1]:53242, IMEI: 352094087982671) +2018/08/13 16:52:23 ruptelaNet.go:239: Close connection(client: [::1]:53242) +2018/08/13 16:52:39 ruptelaNet.go:170: New connection(client: [::1]:53292) +2018/08/13 16:52:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:52:39 ruptelaNet.go:217: Data received(client: [::1]:53292, IMEI: 352094087230394) +2018/08/13 16:52:39 ruptelaNet.go:231: Sent ACK (client: [::1]:53292, IMEI: 352094087230394) +2018/08/13 16:52:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:52:41 ruptelaNet.go:217: Data received(client: [::1]:53292, IMEI: 352094087230394) +2018/08/13 16:52:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:52:41 ruptelaNet.go:231: Sent ACK (client: [::1]:53292, IMEI: 352094087230394) +2018/08/13 16:52:42 ruptelaNet.go:239: Close connection(client: [::1]:53292) +2018/08/13 16:52:46 ruptelaNet.go:170: New connection(client: [::1]:53309) +2018/08/13 16:52:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:52:47 ruptelaNet.go:217: Data received(client: [::1]:53309, IMEI: 352094087982671) +2018/08/13 16:52:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53309, IMEI: 352094087982671) +2018/08/13 16:52:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:52:51 ruptelaNet.go:217: Data received(client: [::1]:53309, IMEI: 352094087982671) +2018/08/13 16:52:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:52:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53309, IMEI: 352094087982671) +2018/08/13 16:52:53 ruptelaNet.go:239: Close connection(client: [::1]:53309) +2018/08/13 16:53:16 ruptelaNet.go:170: New connection(client: [::1]:53380) +2018/08/13 16:53:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:53:17 ruptelaNet.go:217: Data received(client: [::1]:53380, IMEI: 352094087982671) +2018/08/13 16:53:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53380, IMEI: 352094087982671) +2018/08/13 16:53:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:53:21 ruptelaNet.go:217: Data received(client: [::1]:53380, IMEI: 352094087982671) +2018/08/13 16:53:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:53:21 ruptelaNet.go:231: Sent ACK (client: [::1]:53380, IMEI: 352094087982671) +2018/08/13 16:53:23 ruptelaNet.go:239: Close connection(client: [::1]:53380) +2018/08/13 16:53:39 ruptelaNet.go:170: New connection(client: [::1]:53432) +2018/08/13 16:53:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:53:39 ruptelaNet.go:217: Data received(client: [::1]:53432, IMEI: 352094087230394) +2018/08/13 16:53:39 ruptelaNet.go:231: Sent ACK (client: [::1]:53432, IMEI: 352094087230394) +2018/08/13 16:53:41 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:53:41 ruptelaNet.go:217: Data received(client: [::1]:53432, IMEI: 352094087230394) +2018/08/13 16:53:41 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:53:41 ruptelaNet.go:231: Sent ACK (client: [::1]:53432, IMEI: 352094087230394) +2018/08/13 16:53:42 ruptelaNet.go:239: Close connection(client: [::1]:53432) +2018/08/13 16:53:46 ruptelaNet.go:170: New connection(client: [::1]:53447) +2018/08/13 16:53:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:53:47 ruptelaNet.go:217: Data received(client: [::1]:53447, IMEI: 352094087982671) +2018/08/13 16:53:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53447, IMEI: 352094087982671) +2018/08/13 16:53:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:53:50 ruptelaNet.go:217: Data received(client: [::1]:53447, IMEI: 352094087982671) +2018/08/13 16:53:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:53:50 ruptelaNet.go:231: Sent ACK (client: [::1]:53447, IMEI: 352094087982671) +2018/08/13 16:53:53 ruptelaNet.go:239: Close connection(client: [::1]:53447) +2018/08/13 16:54:16 ruptelaNet.go:170: New connection(client: [::1]:53518) +2018/08/13 16:54:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:54:17 ruptelaNet.go:217: Data received(client: [::1]:53518, IMEI: 352094087982671) +2018/08/13 16:54:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53518, IMEI: 352094087982671) +2018/08/13 16:54:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:54:21 ruptelaNet.go:217: Data received(client: [::1]:53518, IMEI: 352094087982671) +2018/08/13 16:54:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:54:21 ruptelaNet.go:231: Sent ACK (client: [::1]:53518, IMEI: 352094087982671) +2018/08/13 16:54:23 ruptelaNet.go:239: Close connection(client: [::1]:53518) +2018/08/13 16:54:39 ruptelaNet.go:170: New connection(client: [::1]:53575) +2018/08/13 16:54:39 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:54:39 ruptelaNet.go:217: Data received(client: [::1]:53575, IMEI: 352094087230394) +2018/08/13 16:54:39 ruptelaNet.go:231: Sent ACK (client: [::1]:53575, IMEI: 352094087230394) +2018/08/13 16:54:42 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:54:42 ruptelaNet.go:217: Data received(client: [::1]:53575, IMEI: 352094087230394) +2018/08/13 16:54:42 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:54:42 ruptelaNet.go:231: Sent ACK (client: [::1]:53575, IMEI: 352094087230394) +2018/08/13 16:54:43 ruptelaNet.go:239: Close connection(client: [::1]:53575) +2018/08/13 16:54:46 ruptelaNet.go:170: New connection(client: [::1]:53593) +2018/08/13 16:54:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:54:47 ruptelaNet.go:217: Data received(client: [::1]:53593, IMEI: 352094087982671) +2018/08/13 16:54:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53593, IMEI: 352094087982671) +2018/08/13 16:54:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:54:50 ruptelaNet.go:217: Data received(client: [::1]:53593, IMEI: 352094087982671) +2018/08/13 16:54:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:54:50 ruptelaNet.go:231: Sent ACK (client: [::1]:53593, IMEI: 352094087982671) +2018/08/13 16:54:53 ruptelaNet.go:239: Close connection(client: [::1]:53593) +2018/08/13 16:55:16 ruptelaNet.go:170: New connection(client: [::1]:53670) +2018/08/13 16:55:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:55:17 ruptelaNet.go:217: Data received(client: [::1]:53670, IMEI: 352094087982671) +2018/08/13 16:55:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53670, IMEI: 352094087982671) +2018/08/13 16:55:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:55:21 ruptelaNet.go:217: Data received(client: [::1]:53670, IMEI: 352094087982671) +2018/08/13 16:55:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:55:21 ruptelaNet.go:231: Sent ACK (client: [::1]:53670, IMEI: 352094087982671) +2018/08/13 16:55:23 ruptelaNet.go:239: Close connection(client: [::1]:53670) +2018/08/13 16:55:39 ruptelaNet.go:170: New connection(client: [::1]:53728) +2018/08/13 16:55:40 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:55:40 ruptelaNet.go:217: Data received(client: [::1]:53728, IMEI: 352094087230394) +2018/08/13 16:55:40 ruptelaNet.go:231: Sent ACK (client: [::1]:53728, IMEI: 352094087230394) +2018/08/13 16:55:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:55:43 ruptelaNet.go:217: Data received(client: [::1]:53728, IMEI: 352094087230394) +2018/08/13 16:55:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:55:43 ruptelaNet.go:231: Sent ACK (client: [::1]:53728, IMEI: 352094087230394) +2018/08/13 16:55:44 ruptelaNet.go:239: Close connection(client: [::1]:53728) +2018/08/13 16:55:46 ruptelaNet.go:170: New connection(client: [::1]:53747) +2018/08/13 16:55:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:55:47 ruptelaNet.go:217: Data received(client: [::1]:53747, IMEI: 352094087982671) +2018/08/13 16:55:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53747, IMEI: 352094087982671) +2018/08/13 16:55:50 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:55:50 ruptelaNet.go:217: Data received(client: [::1]:53747, IMEI: 352094087982671) +2018/08/13 16:55:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:55:50 ruptelaNet.go:231: Sent ACK (client: [::1]:53747, IMEI: 352094087982671) +2018/08/13 16:55:53 ruptelaNet.go:239: Close connection(client: [::1]:53747) +2018/08/13 16:56:16 ruptelaNet.go:170: New connection(client: [::1]:53821) +2018/08/13 16:56:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:56:17 ruptelaNet.go:217: Data received(client: [::1]:53821, IMEI: 352094087982671) +2018/08/13 16:56:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53821, IMEI: 352094087982671) +2018/08/13 16:56:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:56:20 ruptelaNet.go:217: Data received(client: [::1]:53821, IMEI: 352094087982671) +2018/08/13 16:56:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:56:20 ruptelaNet.go:231: Sent ACK (client: [::1]:53821, IMEI: 352094087982671) +2018/08/13 16:56:23 ruptelaNet.go:239: Close connection(client: [::1]:53821) +2018/08/13 16:56:40 ruptelaNet.go:170: New connection(client: [::1]:53882) +2018/08/13 16:56:40 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:56:40 ruptelaNet.go:217: Data received(client: [::1]:53882, IMEI: 352094087230394) +2018/08/13 16:56:40 ruptelaNet.go:231: Sent ACK (client: [::1]:53882, IMEI: 352094087230394) +2018/08/13 16:56:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:56:43 ruptelaNet.go:217: Data received(client: [::1]:53882, IMEI: 352094087230394) +2018/08/13 16:56:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:56:43 ruptelaNet.go:231: Sent ACK (client: [::1]:53882, IMEI: 352094087230394) +2018/08/13 16:56:43 ruptelaNet.go:239: Close connection(client: [::1]:53882) +2018/08/13 16:56:46 ruptelaNet.go:170: New connection(client: [::1]:53898) +2018/08/13 16:56:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:56:47 ruptelaNet.go:217: Data received(client: [::1]:53898, IMEI: 352094087982671) +2018/08/13 16:56:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53898, IMEI: 352094087982671) +2018/08/13 16:56:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:56:51 ruptelaNet.go:217: Data received(client: [::1]:53898, IMEI: 352094087982671) +2018/08/13 16:56:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:56:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53898, IMEI: 352094087982671) +2018/08/13 16:56:53 ruptelaNet.go:239: Close connection(client: [::1]:53898) +2018/08/13 16:57:16 ruptelaNet.go:170: New connection(client: [::1]:53975) +2018/08/13 16:57:17 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:57:17 ruptelaNet.go:217: Data received(client: [::1]:53975, IMEI: 352094087982671) +2018/08/13 16:57:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53975, IMEI: 352094087982671) +2018/08/13 16:57:21 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:57:21 ruptelaNet.go:217: Data received(client: [::1]:53975, IMEI: 352094087982671) +2018/08/13 16:57:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:57:21 ruptelaNet.go:231: Sent ACK (client: [::1]:53975, IMEI: 352094087982671) +2018/08/13 16:57:25 ruptelaNet.go:239: Close connection(client: [::1]:53975) +2018/08/13 16:57:40 ruptelaNet.go:170: New connection(client: [::1]:54036) +2018/08/13 16:57:40 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:57:40 ruptelaNet.go:217: Data received(client: [::1]:54036, IMEI: 352094087230394) +2018/08/13 16:57:40 ruptelaNet.go:231: Sent ACK (client: [::1]:54036, IMEI: 352094087230394) +2018/08/13 16:57:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:57:43 ruptelaNet.go:217: Data received(client: [::1]:54036, IMEI: 352094087230394) +2018/08/13 16:57:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:57:43 ruptelaNet.go:231: Sent ACK (client: [::1]:54036, IMEI: 352094087230394) +2018/08/13 16:57:43 ruptelaNet.go:239: Close connection(client: [::1]:54036) +2018/08/13 16:57:48 ruptelaNet.go:170: New connection(client: [::1]:54058) +2018/08/13 16:57:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:57:49 ruptelaNet.go:217: Data received(client: [::1]:54058, IMEI: 352094087982671) +2018/08/13 16:57:49 ruptelaNet.go:231: Sent ACK (client: [::1]:54058, IMEI: 352094087982671) +2018/08/13 16:57:53 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:57:53 ruptelaNet.go:217: Data received(client: [::1]:54058, IMEI: 352094087982671) +2018/08/13 16:57:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:57:53 ruptelaNet.go:231: Sent ACK (client: [::1]:54058, IMEI: 352094087982671) +2018/08/13 16:57:55 ruptelaNet.go:239: Close connection(client: [::1]:54058) +2018/08/13 16:58:18 ruptelaNet.go:170: New connection(client: [::1]:54138) +2018/08/13 16:58:19 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:58:19 ruptelaNet.go:217: Data received(client: [::1]:54138, IMEI: 352094087982671) +2018/08/13 16:58:19 ruptelaNet.go:231: Sent ACK (client: [::1]:54138, IMEI: 352094087982671) +2018/08/13 16:58:23 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:58:23 ruptelaNet.go:217: Data received(client: [::1]:54138, IMEI: 352094087982671) +2018/08/13 16:58:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:58:23 ruptelaNet.go:231: Sent ACK (client: [::1]:54138, IMEI: 352094087982671) +2018/08/13 16:58:25 ruptelaNet.go:239: Close connection(client: [::1]:54138) +2018/08/13 16:58:40 ruptelaNet.go:170: New connection(client: [::1]:54194) +2018/08/13 16:58:40 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:58:40 ruptelaNet.go:217: Data received(client: [::1]:54194, IMEI: 352094087230394) +2018/08/13 16:58:40 ruptelaNet.go:231: Sent ACK (client: [::1]:54194, IMEI: 352094087230394) +2018/08/13 16:58:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:58:43 ruptelaNet.go:217: Data received(client: [::1]:54194, IMEI: 352094087230394) +2018/08/13 16:58:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:58:43 ruptelaNet.go:231: Sent ACK (client: [::1]:54194, IMEI: 352094087230394) +2018/08/13 16:58:44 ruptelaNet.go:239: Close connection(client: [::1]:54194) +2018/08/13 16:58:48 ruptelaNet.go:170: New connection(client: [::1]:54215) +2018/08/13 16:58:50 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:58:50 ruptelaNet.go:217: Data received(client: [::1]:54215, IMEI: 352094087982671) +2018/08/13 16:58:50 ruptelaNet.go:231: Sent ACK (client: [::1]:54215, IMEI: 352094087982671) +2018/08/13 16:58:54 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:58:54 ruptelaNet.go:217: Data received(client: [::1]:54215, IMEI: 352094087982671) +2018/08/13 16:58:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:58:54 ruptelaNet.go:231: Sent ACK (client: [::1]:54215, IMEI: 352094087982671) +2018/08/13 16:58:56 ruptelaNet.go:239: Close connection(client: [::1]:54215) +2018/08/13 16:59:19 ruptelaNet.go:170: New connection(client: [::1]:54297) +2018/08/13 16:59:21 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:59:21 ruptelaNet.go:217: Data received(client: [::1]:54297, IMEI: 352094087982671) +2018/08/13 16:59:21 ruptelaNet.go:231: Sent ACK (client: [::1]:54297, IMEI: 352094087982671) +2018/08/13 16:59:24 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:59:24 ruptelaNet.go:217: Data received(client: [::1]:54297, IMEI: 352094087982671) +2018/08/13 16:59:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:59:24 ruptelaNet.go:231: Sent ACK (client: [::1]:54297, IMEI: 352094087982671) +2018/08/13 16:59:27 ruptelaNet.go:239: Close connection(client: [::1]:54297) +2018/08/13 16:59:40 ruptelaNet.go:170: New connection(client: [::1]:54350) +2018/08/13 16:59:40 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:59:40 ruptelaNet.go:217: Data received(client: [::1]:54350, IMEI: 352094087230394) +2018/08/13 16:59:40 ruptelaNet.go:231: Sent ACK (client: [::1]:54350, IMEI: 352094087230394) +2018/08/13 16:59:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 16:59:43 ruptelaNet.go:217: Data received(client: [::1]:54350, IMEI: 352094087230394) +2018/08/13 16:59:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 16:59:43 ruptelaNet.go:231: Sent ACK (client: [::1]:54350, IMEI: 352094087230394) +2018/08/13 16:59:44 ruptelaNet.go:239: Close connection(client: [::1]:54350) +2018/08/13 16:59:51 ruptelaNet.go:170: New connection(client: [::1]:54381) +2018/08/13 16:59:51 ruptelaNet.go:301: data packet length : 15 +2018/08/13 16:59:51 ruptelaNet.go:217: Data received(client: [::1]:54381, IMEI: 352094087982671) +2018/08/13 16:59:51 ruptelaNet.go:231: Sent ACK (client: [::1]:54381, IMEI: 352094087982671) +2018/08/13 16:59:55 ruptelaNet.go:301: data packet length : 462 +2018/08/13 16:59:55 ruptelaNet.go:217: Data received(client: [::1]:54381, IMEI: 352094087982671) +2018/08/13 16:59:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 16:59:55 ruptelaNet.go:231: Sent ACK (client: [::1]:54381, IMEI: 352094087982671) +2018/08/13 16:59:57 ruptelaNet.go:239: Close connection(client: [::1]:54381) +2018/08/13 17:00:20 ruptelaNet.go:170: New connection(client: [::1]:54453) +2018/08/13 17:00:21 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:00:21 ruptelaNet.go:217: Data received(client: [::1]:54453, IMEI: 352094087982671) +2018/08/13 17:00:21 ruptelaNet.go:231: Sent ACK (client: [::1]:54453, IMEI: 352094087982671) +2018/08/13 17:00:25 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:00:25 ruptelaNet.go:217: Data received(client: [::1]:54453, IMEI: 352094087982671) +2018/08/13 17:00:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:00:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54453, IMEI: 352094087982671) +2018/08/13 17:00:27 ruptelaNet.go:239: Close connection(client: [::1]:54453) +2018/08/13 17:00:41 ruptelaNet.go:170: New connection(client: [::1]:54504) +2018/08/13 17:00:41 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:00:41 ruptelaNet.go:217: Data received(client: [::1]:54504, IMEI: 352094087230394) +2018/08/13 17:00:41 ruptelaNet.go:231: Sent ACK (client: [::1]:54504, IMEI: 352094087230394) +2018/08/13 17:00:43 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:00:43 ruptelaNet.go:217: Data received(client: [::1]:54504, IMEI: 352094087230394) +2018/08/13 17:00:43 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:00:43 ruptelaNet.go:231: Sent ACK (client: [::1]:54504, IMEI: 352094087230394) +2018/08/13 17:00:44 ruptelaNet.go:239: Close connection(client: [::1]:54504) +2018/08/13 17:00:50 ruptelaNet.go:170: New connection(client: [::1]:54529) +2018/08/13 17:00:51 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:00:51 ruptelaNet.go:217: Data received(client: [::1]:54529, IMEI: 352094087982671) +2018/08/13 17:00:51 ruptelaNet.go:231: Sent ACK (client: [::1]:54529, IMEI: 352094087982671) +2018/08/13 17:00:55 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:00:55 ruptelaNet.go:217: Data received(client: [::1]:54529, IMEI: 352094087982671) +2018/08/13 17:00:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:00:55 ruptelaNet.go:231: Sent ACK (client: [::1]:54529, IMEI: 352094087982671) +2018/08/13 17:00:57 ruptelaNet.go:239: Close connection(client: [::1]:54529) +2018/08/13 17:55:22 ruptelaNet.go:170: New connection(client: [::1]:54654) +2018/08/13 17:55:23 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:55:23 ruptelaNet.go:217: Data received(client: [::1]:54654, IMEI: 352094087982671) +2018/08/13 17:55:23 ruptelaNet.go:231: Sent ACK (client: [::1]:54654, IMEI: 352094087982671) +2018/08/13 17:55:28 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:55:28 ruptelaNet.go:217: Data received(client: [::1]:54654, IMEI: 352094087982671) +2018/08/13 17:55:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:55:28 ruptelaNet.go:231: Sent ACK (client: [::1]:54654, IMEI: 352094087982671) +2018/08/13 17:55:31 ruptelaNet.go:239: Close connection(client: [::1]:54654) +2018/08/13 17:55:45 ruptelaNet.go:170: New connection(client: [::1]:54704) +2018/08/13 17:55:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:55:46 ruptelaNet.go:217: Data received(client: [::1]:54704, IMEI: 352094087230394) +2018/08/13 17:55:46 ruptelaNet.go:231: Sent ACK (client: [::1]:54704, IMEI: 352094087230394) +2018/08/13 17:55:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:55:48 ruptelaNet.go:217: Data received(client: [::1]:54704, IMEI: 352094087230394) +2018/08/13 17:55:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:55:48 ruptelaNet.go:231: Sent ACK (client: [::1]:54704, IMEI: 352094087230394) +2018/08/13 17:55:49 ruptelaNet.go:239: Close connection(client: [::1]:54704) +2018/08/13 17:55:53 ruptelaNet.go:170: New connection(client: [::1]:54729) +2018/08/13 17:55:54 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:55:54 ruptelaNet.go:217: Data received(client: [::1]:54729, IMEI: 352094087982671) +2018/08/13 17:55:54 ruptelaNet.go:231: Sent ACK (client: [::1]:54729, IMEI: 352094087982671) +2018/08/13 17:55:58 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:55:58 ruptelaNet.go:217: Data received(client: [::1]:54729, IMEI: 352094087982671) +2018/08/13 17:55:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:55:58 ruptelaNet.go:231: Sent ACK (client: [::1]:54729, IMEI: 352094087982671) +2018/08/13 17:56:01 ruptelaNet.go:239: Close connection(client: [::1]:54729) +2018/08/13 17:56:24 ruptelaNet.go:170: New connection(client: [::1]:54798) +2018/08/13 17:56:26 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:56:26 ruptelaNet.go:217: Data received(client: [::1]:54798, IMEI: 352094087982671) +2018/08/13 17:56:26 ruptelaNet.go:231: Sent ACK (client: [::1]:54798, IMEI: 352094087982671) +2018/08/13 17:56:32 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:56:32 ruptelaNet.go:217: Data received(client: [::1]:54798, IMEI: 352094087982671) +2018/08/13 17:56:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:56:32 ruptelaNet.go:231: Sent ACK (client: [::1]:54798, IMEI: 352094087982671) +2018/08/13 17:56:38 ruptelaNet.go:239: Close connection(client: [::1]:54798) +2018/08/13 17:56:46 ruptelaNet.go:170: New connection(client: [::1]:54850) +2018/08/13 17:56:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:56:46 ruptelaNet.go:217: Data received(client: [::1]:54850, IMEI: 352094087230394) +2018/08/13 17:56:46 ruptelaNet.go:231: Sent ACK (client: [::1]:54850, IMEI: 352094087230394) +2018/08/13 17:56:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:56:48 ruptelaNet.go:217: Data received(client: [::1]:54850, IMEI: 352094087230394) +2018/08/13 17:56:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:56:48 ruptelaNet.go:231: Sent ACK (client: [::1]:54850, IMEI: 352094087230394) +2018/08/13 17:56:49 ruptelaNet.go:239: Close connection(client: [::1]:54850) +2018/08/13 17:57:02 ruptelaNet.go:170: New connection(client: [::1]:54895) +2018/08/13 17:57:02 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:57:02 ruptelaNet.go:217: Data received(client: [::1]:54895, IMEI: 352094087982671) +2018/08/13 17:57:02 ruptelaNet.go:231: Sent ACK (client: [::1]:54895, IMEI: 352094087982671) +2018/08/13 17:57:05 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:57:05 ruptelaNet.go:217: Data received(client: [::1]:54895, IMEI: 352094087982671) +2018/08/13 17:57:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:57:05 ruptelaNet.go:231: Sent ACK (client: [::1]:54895, IMEI: 352094087982671) +2018/08/13 17:57:08 ruptelaNet.go:239: Close connection(client: [::1]:54895) +2018/08/13 17:57:35 ruptelaNet.go:170: New connection(client: [::1]:54975) +2018/08/13 17:57:36 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:57:36 ruptelaNet.go:217: Data received(client: [::1]:54975, IMEI: 352094087982671) +2018/08/13 17:57:36 ruptelaNet.go:231: Sent ACK (client: [::1]:54975, IMEI: 352094087982671) +2018/08/13 17:57:39 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:57:39 ruptelaNet.go:217: Data received(client: [::1]:54975, IMEI: 352094087982671) +2018/08/13 17:57:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:57:39 ruptelaNet.go:231: Sent ACK (client: [::1]:54975, IMEI: 352094087982671) +2018/08/13 17:57:42 ruptelaNet.go:239: Close connection(client: [::1]:54975) +2018/08/13 17:57:46 ruptelaNet.go:170: New connection(client: [::1]:55007) +2018/08/13 17:57:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:57:46 ruptelaNet.go:217: Data received(client: [::1]:55007, IMEI: 352094087230394) +2018/08/13 17:57:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55007, IMEI: 352094087230394) +2018/08/13 17:57:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:57:48 ruptelaNet.go:217: Data received(client: [::1]:55007, IMEI: 352094087230394) +2018/08/13 17:57:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:57:48 ruptelaNet.go:231: Sent ACK (client: [::1]:55007, IMEI: 352094087230394) +2018/08/13 17:57:49 ruptelaNet.go:239: Close connection(client: [::1]:55007) +2018/08/13 17:58:13 ruptelaNet.go:170: New connection(client: [::1]:55074) +2018/08/13 17:58:14 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:58:14 ruptelaNet.go:217: Data received(client: [::1]:55074, IMEI: 352094087982671) +2018/08/13 17:58:14 ruptelaNet.go:231: Sent ACK (client: [::1]:55074, IMEI: 352094087982671) +2018/08/13 17:58:18 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:58:18 ruptelaNet.go:217: Data received(client: [::1]:55074, IMEI: 352094087982671) +2018/08/13 17:58:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:58:18 ruptelaNet.go:231: Sent ACK (client: [::1]:55074, IMEI: 352094087982671) +2018/08/13 17:58:25 ruptelaNet.go:239: Close connection(client: [::1]:55074) +2018/08/13 17:58:46 ruptelaNet.go:170: New connection(client: [::1]:55155) +2018/08/13 17:58:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:58:46 ruptelaNet.go:217: Data received(client: [::1]:55155, IMEI: 352094087230394) +2018/08/13 17:58:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55155, IMEI: 352094087230394) +2018/08/13 17:58:48 ruptelaNet.go:170: New connection(client: [::1]:55161) +2018/08/13 17:58:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:58:48 ruptelaNet.go:217: Data received(client: [::1]:55155, IMEI: 352094087230394) +2018/08/13 17:58:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:58:48 ruptelaNet.go:231: Sent ACK (client: [::1]:55155, IMEI: 352094087230394) +2018/08/13 17:58:49 ruptelaNet.go:239: Close connection(client: [::1]:55155) +2018/08/13 17:58:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:58:49 ruptelaNet.go:217: Data received(client: [::1]:55161, IMEI: 352094087982671) +2018/08/13 17:58:49 ruptelaNet.go:231: Sent ACK (client: [::1]:55161, IMEI: 352094087982671) +2018/08/13 17:58:52 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:58:52 ruptelaNet.go:217: Data received(client: [::1]:55161, IMEI: 352094087982671) +2018/08/13 17:58:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:58:52 ruptelaNet.go:231: Sent ACK (client: [::1]:55161, IMEI: 352094087982671) +2018/08/13 17:58:56 ruptelaNet.go:239: Close connection(client: [::1]:55161) +2018/08/13 17:59:26 ruptelaNet.go:170: New connection(client: [::1]:55259) +2018/08/13 17:59:27 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:59:27 ruptelaNet.go:217: Data received(client: [::1]:55259, IMEI: 352094087982671) +2018/08/13 17:59:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55259, IMEI: 352094087982671) +2018/08/13 17:59:31 ruptelaNet.go:301: data packet length : 462 +2018/08/13 17:59:31 ruptelaNet.go:217: Data received(client: [::1]:55259, IMEI: 352094087982671) +2018/08/13 17:59:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 17:59:31 ruptelaNet.go:231: Sent ACK (client: [::1]:55259, IMEI: 352094087982671) +2018/08/13 17:59:38 ruptelaNet.go:239: Close connection(client: [::1]:55259) +2018/08/13 17:59:46 ruptelaNet.go:170: New connection(client: [::1]:55313) +2018/08/13 17:59:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 17:59:46 ruptelaNet.go:217: Data received(client: [::1]:55313, IMEI: 352094087230394) +2018/08/13 17:59:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55313, IMEI: 352094087230394) +2018/08/13 17:59:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 17:59:48 ruptelaNet.go:217: Data received(client: [::1]:55313, IMEI: 352094087230394) +2018/08/13 17:59:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 17:59:48 ruptelaNet.go:231: Sent ACK (client: [::1]:55313, IMEI: 352094087230394) +2018/08/13 17:59:49 ruptelaNet.go:239: Close connection(client: [::1]:55313) +2018/08/13 18:00:01 ruptelaNet.go:170: New connection(client: [::1]:55356) +2018/08/13 18:00:02 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:00:02 ruptelaNet.go:217: Data received(client: [::1]:55356, IMEI: 352094087982671) +2018/08/13 18:00:02 ruptelaNet.go:231: Sent ACK (client: [::1]:55356, IMEI: 352094087982671) +2018/08/13 18:00:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:00:06 ruptelaNet.go:217: Data received(client: [::1]:55356, IMEI: 352094087982671) +2018/08/13 18:00:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:00:06 ruptelaNet.go:231: Sent ACK (client: [::1]:55356, IMEI: 352094087982671) +2018/08/13 18:00:14 ruptelaNet.go:239: Close connection(client: [::1]:55356) +2018/08/13 18:00:41 ruptelaNet.go:170: New connection(client: [::1]:55457) +2018/08/13 18:00:43 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:00:43 ruptelaNet.go:217: Data received(client: [::1]:55457, IMEI: 352094087982671) +2018/08/13 18:00:43 ruptelaNet.go:231: Sent ACK (client: [::1]:55457, IMEI: 352094087982671) +2018/08/13 18:00:46 ruptelaNet.go:170: New connection(client: [::1]:55468) +2018/08/13 18:00:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:00:46 ruptelaNet.go:217: Data received(client: [::1]:55468, IMEI: 352094087230394) +2018/08/13 18:00:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55468, IMEI: 352094087230394) +2018/08/13 18:00:47 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:00:47 ruptelaNet.go:217: Data received(client: [::1]:55457, IMEI: 352094087982671) +2018/08/13 18:00:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:00:47 ruptelaNet.go:231: Sent ACK (client: [::1]:55457, IMEI: 352094087982671) +2018/08/13 18:00:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:00:48 ruptelaNet.go:217: Data received(client: [::1]:55468, IMEI: 352094087230394) +2018/08/13 18:00:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:00:48 ruptelaNet.go:231: Sent ACK (client: [::1]:55468, IMEI: 352094087230394) +2018/08/13 18:00:49 ruptelaNet.go:239: Close connection(client: [::1]:55468) +2018/08/13 18:00:52 ruptelaNet.go:239: Close connection(client: [::1]:55457) +2018/08/13 18:01:15 ruptelaNet.go:170: New connection(client: [::1]:55540) +2018/08/13 18:01:16 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:01:16 ruptelaNet.go:217: Data received(client: [::1]:55540, IMEI: 352094087982671) +2018/08/13 18:01:16 ruptelaNet.go:231: Sent ACK (client: [::1]:55540, IMEI: 352094087982671) +2018/08/13 18:01:20 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:01:20 ruptelaNet.go:217: Data received(client: [::1]:55540, IMEI: 352094087982671) +2018/08/13 18:01:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:01:20 ruptelaNet.go:231: Sent ACK (client: [::1]:55540, IMEI: 352094087982671) +2018/08/13 18:01:42 ruptelaNet.go:239: Close connection(client: [::1]:55540) +2018/08/13 18:01:47 ruptelaNet.go:170: New connection(client: [::1]:55622) +2018/08/13 18:01:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:01:47 ruptelaNet.go:217: Data received(client: [::1]:55622, IMEI: 352094087230394) +2018/08/13 18:01:47 ruptelaNet.go:231: Sent ACK (client: [::1]:55622, IMEI: 352094087230394) +2018/08/13 18:01:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:01:50 ruptelaNet.go:217: Data received(client: [::1]:55622, IMEI: 352094087230394) +2018/08/13 18:01:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:01:50 ruptelaNet.go:231: Sent ACK (client: [::1]:55622, IMEI: 352094087230394) +2018/08/13 18:01:51 ruptelaNet.go:239: Close connection(client: [::1]:55622) +2018/08/13 18:02:05 ruptelaNet.go:170: New connection(client: [::1]:55672) +2018/08/13 18:02:06 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:02:06 ruptelaNet.go:217: Data received(client: [::1]:55672, IMEI: 352094087982671) +2018/08/13 18:02:06 ruptelaNet.go:231: Sent ACK (client: [::1]:55672, IMEI: 352094087982671) +2018/08/13 18:02:10 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:02:10 ruptelaNet.go:217: Data received(client: [::1]:55672, IMEI: 352094087982671) +2018/08/13 18:02:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:02:10 ruptelaNet.go:231: Sent ACK (client: [::1]:55672, IMEI: 352094087982671) +2018/08/13 18:02:14 ruptelaNet.go:239: Close connection(client: [::1]:55672) +2018/08/13 18:02:36 ruptelaNet.go:170: New connection(client: [::1]:55747) +2018/08/13 18:02:37 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:02:37 ruptelaNet.go:217: Data received(client: [::1]:55747, IMEI: 352094087982671) +2018/08/13 18:02:37 ruptelaNet.go:231: Sent ACK (client: [::1]:55747, IMEI: 352094087982671) +2018/08/13 18:02:41 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:02:41 ruptelaNet.go:217: Data received(client: [::1]:55747, IMEI: 352094087982671) +2018/08/13 18:02:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:02:41 ruptelaNet.go:231: Sent ACK (client: [::1]:55747, IMEI: 352094087982671) +2018/08/13 18:02:44 ruptelaNet.go:239: Close connection(client: [::1]:55747) +2018/08/13 18:02:46 ruptelaNet.go:170: New connection(client: [::1]:55777) +2018/08/13 18:02:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:02:46 ruptelaNet.go:217: Data received(client: [::1]:55777, IMEI: 352094087230394) +2018/08/13 18:02:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55777, IMEI: 352094087230394) +2018/08/13 18:02:48 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:02:48 ruptelaNet.go:217: Data received(client: [::1]:55777, IMEI: 352094087230394) +2018/08/13 18:02:48 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:02:48 ruptelaNet.go:231: Sent ACK (client: [::1]:55777, IMEI: 352094087230394) +2018/08/13 18:02:49 ruptelaNet.go:239: Close connection(client: [::1]:55777) +2018/08/13 18:03:07 ruptelaNet.go:170: New connection(client: [::1]:55828) +2018/08/13 18:03:09 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:03:09 ruptelaNet.go:217: Data received(client: [::1]:55828, IMEI: 352094087982671) +2018/08/13 18:03:09 ruptelaNet.go:231: Sent ACK (client: [::1]:55828, IMEI: 352094087982671) +2018/08/13 18:03:12 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:03:12 ruptelaNet.go:217: Data received(client: [::1]:55828, IMEI: 352094087982671) +2018/08/13 18:03:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:03:12 ruptelaNet.go:231: Sent ACK (client: [::1]:55828, IMEI: 352094087982671) +2018/08/13 18:03:15 ruptelaNet.go:239: Close connection(client: [::1]:55828) +2018/08/13 18:03:41 ruptelaNet.go:170: New connection(client: [::1]:55918) +2018/08/13 18:03:42 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:03:42 ruptelaNet.go:217: Data received(client: [::1]:55918, IMEI: 352094087982671) +2018/08/13 18:03:42 ruptelaNet.go:231: Sent ACK (client: [::1]:55918, IMEI: 352094087982671) +2018/08/13 18:03:46 ruptelaNet.go:170: New connection(client: [::1]:55932) +2018/08/13 18:03:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:03:46 ruptelaNet.go:217: Data received(client: [::1]:55932, IMEI: 352094087230394) +2018/08/13 18:03:46 ruptelaNet.go:231: Sent ACK (client: [::1]:55932, IMEI: 352094087230394) +2018/08/13 18:03:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:03:49 ruptelaNet.go:217: Data received(client: [::1]:55932, IMEI: 352094087230394) +2018/08/13 18:03:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:03:49 ruptelaNet.go:231: Sent ACK (client: [::1]:55932, IMEI: 352094087230394) +2018/08/13 18:03:49 ruptelaNet.go:239: Close connection(client: [::1]:55932) +2018/08/13 18:03:52 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:03:52 ruptelaNet.go:217: Data received(client: [::1]:55918, IMEI: 352094087982671) +2018/08/13 18:03:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:03:52 ruptelaNet.go:231: Sent ACK (client: [::1]:55918, IMEI: 352094087982671) +2018/08/13 18:03:54 ruptelaNet.go:239: Close connection(client: [::1]:55918) +2018/08/13 18:04:17 ruptelaNet.go:170: New connection(client: [::1]:56009) +2018/08/13 18:04:18 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:04:18 ruptelaNet.go:217: Data received(client: [::1]:56009, IMEI: 352094087982671) +2018/08/13 18:04:18 ruptelaNet.go:231: Sent ACK (client: [::1]:56009, IMEI: 352094087982671) +2018/08/13 18:04:22 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:04:22 ruptelaNet.go:217: Data received(client: [::1]:56009, IMEI: 352094087982671) +2018/08/13 18:04:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:04:22 ruptelaNet.go:231: Sent ACK (client: [::1]:56009, IMEI: 352094087982671) +2018/08/13 18:04:24 ruptelaNet.go:239: Close connection(client: [::1]:56009) +2018/08/13 18:04:46 ruptelaNet.go:170: New connection(client: [::1]:56089) +2018/08/13 18:04:46 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:04:46 ruptelaNet.go:217: Data received(client: [::1]:56089, IMEI: 352094087230394) +2018/08/13 18:04:46 ruptelaNet.go:231: Sent ACK (client: [::1]:56089, IMEI: 352094087230394) +2018/08/13 18:04:48 ruptelaNet.go:170: New connection(client: [::1]:56090) +2018/08/13 18:04:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:04:49 ruptelaNet.go:217: Data received(client: [::1]:56089, IMEI: 352094087230394) +2018/08/13 18:04:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:04:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56089, IMEI: 352094087230394) +2018/08/13 18:06:04 ruptelaNet.go:239: Close connection(client: [::1]:56089) +2018/08/13 18:06:04 ruptelaNet.go:239: Close connection(client: [::1]:56090) +2018/08/13 18:06:25 ruptelaNet.go:170: New connection(client: [::1]:56169) +2018/08/13 18:06:26 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:06:27 ruptelaNet.go:217: Data received(client: [::1]:56169, IMEI: 352094087982671) +2018/08/13 18:06:27 ruptelaNet.go:231: Sent ACK (client: [::1]:56169, IMEI: 352094087982671) +2018/08/13 18:06:31 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:06:31 ruptelaNet.go:217: Data received(client: [::1]:56169, IMEI: 352094087982671) +2018/08/13 18:06:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:06:31 ruptelaNet.go:231: Sent ACK (client: [::1]:56169, IMEI: 352094087982671) +2018/08/13 18:06:38 ruptelaNet.go:239: Close connection(client: [::1]:56169) +2018/08/13 18:06:47 ruptelaNet.go:170: New connection(client: [::1]:56222) +2018/08/13 18:06:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:06:47 ruptelaNet.go:217: Data received(client: [::1]:56222, IMEI: 352094087230394) +2018/08/13 18:06:47 ruptelaNet.go:231: Sent ACK (client: [::1]:56222, IMEI: 352094087230394) +2018/08/13 18:06:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:06:49 ruptelaNet.go:217: Data received(client: [::1]:56222, IMEI: 352094087230394) +2018/08/13 18:06:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:06:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56222, IMEI: 352094087230394) +2018/08/13 18:06:50 ruptelaNet.go:239: Close connection(client: [::1]:56222) +2018/08/13 18:07:01 ruptelaNet.go:170: New connection(client: [::1]:56266) +2018/08/13 18:07:02 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:07:02 ruptelaNet.go:217: Data received(client: [::1]:56266, IMEI: 352094087982671) +2018/08/13 18:07:02 ruptelaNet.go:231: Sent ACK (client: [::1]:56266, IMEI: 352094087982671) +2018/08/13 18:07:08 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:07:08 ruptelaNet.go:217: Data received(client: [::1]:56266, IMEI: 352094087982671) +2018/08/13 18:07:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:07:08 ruptelaNet.go:231: Sent ACK (client: [::1]:56266, IMEI: 352094087982671) +2018/08/13 18:07:11 ruptelaNet.go:239: Close connection(client: [::1]:56266) +2018/08/13 18:07:40 ruptelaNet.go:170: New connection(client: [::1]:56366) +2018/08/13 18:07:42 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:07:42 ruptelaNet.go:217: Data received(client: [::1]:56366, IMEI: 352094087982671) +2018/08/13 18:07:42 ruptelaNet.go:231: Sent ACK (client: [::1]:56366, IMEI: 352094087982671) +2018/08/13 18:07:45 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:07:45 ruptelaNet.go:217: Data received(client: [::1]:56366, IMEI: 352094087982671) +2018/08/13 18:07:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:07:45 ruptelaNet.go:231: Sent ACK (client: [::1]:56366, IMEI: 352094087982671) +2018/08/13 18:07:47 ruptelaNet.go:170: New connection(client: [::1]:56384) +2018/08/13 18:07:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:07:47 ruptelaNet.go:217: Data received(client: [::1]:56384, IMEI: 352094087230394) +2018/08/13 18:07:47 ruptelaNet.go:231: Sent ACK (client: [::1]:56384, IMEI: 352094087230394) +2018/08/13 18:07:48 ruptelaNet.go:239: Close connection(client: [::1]:56366) +2018/08/13 18:07:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:07:49 ruptelaNet.go:217: Data received(client: [::1]:56384, IMEI: 352094087230394) +2018/08/13 18:07:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:07:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56384, IMEI: 352094087230394) +2018/08/13 18:07:50 ruptelaNet.go:239: Close connection(client: [::1]:56384) +2018/08/13 18:08:14 ruptelaNet.go:170: New connection(client: [::1]:56455) +2018/08/13 18:08:16 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:08:16 ruptelaNet.go:217: Data received(client: [::1]:56455, IMEI: 352094087982671) +2018/08/13 18:08:16 ruptelaNet.go:231: Sent ACK (client: [::1]:56455, IMEI: 352094087982671) +2018/08/13 18:08:26 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:08:26 ruptelaNet.go:217: Data received(client: [::1]:56455, IMEI: 352094087982671) +2018/08/13 18:08:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:08:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56455, IMEI: 352094087982671) +2018/08/13 18:08:28 ruptelaNet.go:239: Close connection(client: [::1]:56455) +2018/08/13 18:08:47 ruptelaNet.go:170: New connection(client: [::1]:56538) +2018/08/13 18:08:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:08:47 ruptelaNet.go:217: Data received(client: [::1]:56538, IMEI: 352094087230394) +2018/08/13 18:08:47 ruptelaNet.go:231: Sent ACK (client: [::1]:56538, IMEI: 352094087230394) +2018/08/13 18:08:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:08:49 ruptelaNet.go:217: Data received(client: [::1]:56538, IMEI: 352094087230394) +2018/08/13 18:08:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:08:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56538, IMEI: 352094087230394) +2018/08/13 18:08:51 ruptelaNet.go:239: Close connection(client: [::1]:56538) +2018/08/13 18:08:51 ruptelaNet.go:170: New connection(client: [::1]:56550) +2018/08/13 18:08:52 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:08:52 ruptelaNet.go:217: Data received(client: [::1]:56550, IMEI: 352094087982671) +2018/08/13 18:08:52 ruptelaNet.go:231: Sent ACK (client: [::1]:56550, IMEI: 352094087982671) +2018/08/13 18:08:56 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:08:56 ruptelaNet.go:217: Data received(client: [::1]:56550, IMEI: 352094087982671) +2018/08/13 18:08:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:08:56 ruptelaNet.go:231: Sent ACK (client: [::1]:56550, IMEI: 352094087982671) +2018/08/13 18:09:01 ruptelaNet.go:239: Close connection(client: [::1]:56550) +2018/08/13 18:09:32 ruptelaNet.go:170: New connection(client: [::1]:56656) +2018/08/13 18:09:33 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:09:33 ruptelaNet.go:217: Data received(client: [::1]:56656, IMEI: 352094087982671) +2018/08/13 18:09:33 ruptelaNet.go:231: Sent ACK (client: [::1]:56656, IMEI: 352094087982671) +2018/08/13 18:09:44 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:09:44 ruptelaNet.go:217: Data received(client: [::1]:56656, IMEI: 352094087982671) +2018/08/13 18:09:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:09:44 ruptelaNet.go:231: Sent ACK (client: [::1]:56656, IMEI: 352094087982671) +2018/08/13 18:09:46 ruptelaNet.go:239: Close connection(client: [::1]:56656) +2018/08/13 18:09:47 ruptelaNet.go:170: New connection(client: [::1]:56694) +2018/08/13 18:09:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:09:47 ruptelaNet.go:217: Data received(client: [::1]:56694, IMEI: 352094087230394) +2018/08/13 18:09:47 ruptelaNet.go:231: Sent ACK (client: [::1]:56694, IMEI: 352094087230394) +2018/08/13 18:09:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:09:49 ruptelaNet.go:217: Data received(client: [::1]:56694, IMEI: 352094087230394) +2018/08/13 18:09:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:09:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56694, IMEI: 352094087230394) +2018/08/13 18:09:50 ruptelaNet.go:239: Close connection(client: [::1]:56694) +2018/08/13 18:10:09 ruptelaNet.go:170: New connection(client: [::1]:56753) +2018/08/13 18:10:10 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:10:10 ruptelaNet.go:217: Data received(client: [::1]:56753, IMEI: 352094087982671) +2018/08/13 18:10:10 ruptelaNet.go:231: Sent ACK (client: [::1]:56753, IMEI: 352094087982671) +2018/08/13 18:10:15 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:10:15 ruptelaNet.go:217: Data received(client: [::1]:56753, IMEI: 352094087982671) +2018/08/13 18:10:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:10:15 ruptelaNet.go:231: Sent ACK (client: [::1]:56753, IMEI: 352094087982671) +2018/08/13 18:10:18 ruptelaNet.go:239: Close connection(client: [::1]:56753) +2018/08/13 18:10:47 ruptelaNet.go:170: New connection(client: [::1]:56855) +2018/08/13 18:10:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:10:47 ruptelaNet.go:217: Data received(client: [::1]:56855, IMEI: 352094087230394) +2018/08/13 18:10:47 ruptelaNet.go:231: Sent ACK (client: [::1]:56855, IMEI: 352094087230394) +2018/08/13 18:10:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:10:49 ruptelaNet.go:217: Data received(client: [::1]:56855, IMEI: 352094087230394) +2018/08/13 18:10:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:10:49 ruptelaNet.go:231: Sent ACK (client: [::1]:56855, IMEI: 352094087230394) +2018/08/13 18:10:51 ruptelaNet.go:239: Close connection(client: [::1]:56855) +2018/08/13 18:10:51 ruptelaNet.go:170: New connection(client: [::1]:56861) +2018/08/13 18:10:52 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:10:52 ruptelaNet.go:217: Data received(client: [::1]:56861, IMEI: 352094087982671) +2018/08/13 18:10:52 ruptelaNet.go:231: Sent ACK (client: [::1]:56861, IMEI: 352094087982671) +2018/08/13 18:10:55 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:10:55 ruptelaNet.go:217: Data received(client: [::1]:56861, IMEI: 352094087982671) +2018/08/13 18:10:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:10:55 ruptelaNet.go:231: Sent ACK (client: [::1]:56861, IMEI: 352094087982671) +2018/08/13 18:10:57 ruptelaNet.go:239: Close connection(client: [::1]:56861) +2018/08/13 18:11:24 ruptelaNet.go:170: New connection(client: [::1]:56939) +2018/08/13 18:11:26 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:11:26 ruptelaNet.go:217: Data received(client: [::1]:56939, IMEI: 352094087982671) +2018/08/13 18:11:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56939, IMEI: 352094087982671) +2018/08/13 18:11:30 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:11:30 ruptelaNet.go:217: Data received(client: [::1]:56939, IMEI: 352094087982671) +2018/08/13 18:11:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:11:30 ruptelaNet.go:231: Sent ACK (client: [::1]:56939, IMEI: 352094087982671) +2018/08/13 18:11:37 ruptelaNet.go:239: Close connection(client: [::1]:56939) +2018/08/13 18:11:47 ruptelaNet.go:170: New connection(client: [::1]:57000) +2018/08/13 18:11:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:11:47 ruptelaNet.go:217: Data received(client: [::1]:57000, IMEI: 352094087230394) +2018/08/13 18:11:47 ruptelaNet.go:231: Sent ACK (client: [::1]:57000, IMEI: 352094087230394) +2018/08/13 18:11:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:11:49 ruptelaNet.go:217: Data received(client: [::1]:57000, IMEI: 352094087230394) +2018/08/13 18:11:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:11:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57000, IMEI: 352094087230394) +2018/08/13 18:11:51 ruptelaNet.go:239: Close connection(client: [::1]:57000) +2018/08/13 18:12:00 ruptelaNet.go:170: New connection(client: [::1]:57031) +2018/08/13 18:12:01 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:12:01 ruptelaNet.go:217: Data received(client: [::1]:57031, IMEI: 352094087982671) +2018/08/13 18:12:01 ruptelaNet.go:231: Sent ACK (client: [::1]:57031, IMEI: 352094087982671) +2018/08/13 18:12:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:12:06 ruptelaNet.go:217: Data received(client: [::1]:57031, IMEI: 352094087982671) +2018/08/13 18:12:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:12:06 ruptelaNet.go:231: Sent ACK (client: [::1]:57031, IMEI: 352094087982671) +2018/08/13 18:12:08 ruptelaNet.go:239: Close connection(client: [::1]:57031) +2018/08/13 18:12:31 ruptelaNet.go:170: New connection(client: [::1]:57112) +2018/08/13 18:12:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:12:32 ruptelaNet.go:217: Data received(client: [::1]:57112, IMEI: 352094087982671) +2018/08/13 18:12:32 ruptelaNet.go:231: Sent ACK (client: [::1]:57112, IMEI: 352094087982671) +2018/08/13 18:12:35 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:12:35 ruptelaNet.go:217: Data received(client: [::1]:57112, IMEI: 352094087982671) +2018/08/13 18:12:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:12:35 ruptelaNet.go:231: Sent ACK (client: [::1]:57112, IMEI: 352094087982671) +2018/08/13 18:12:43 ruptelaNet.go:239: Close connection(client: [::1]:57112) +2018/08/13 18:12:47 ruptelaNet.go:170: New connection(client: [::1]:57153) +2018/08/13 18:12:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:12:47 ruptelaNet.go:217: Data received(client: [::1]:57153, IMEI: 352094087230394) +2018/08/13 18:12:47 ruptelaNet.go:231: Sent ACK (client: [::1]:57153, IMEI: 352094087230394) +2018/08/13 18:12:49 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:12:49 ruptelaNet.go:217: Data received(client: [::1]:57153, IMEI: 352094087230394) +2018/08/13 18:12:49 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:12:49 ruptelaNet.go:231: Sent ACK (client: [::1]:57153, IMEI: 352094087230394) +2018/08/13 18:12:51 ruptelaNet.go:239: Close connection(client: [::1]:57153) +2018/08/13 18:13:11 ruptelaNet.go:170: New connection(client: [::1]:57212) +2018/08/13 18:13:12 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:13:12 ruptelaNet.go:217: Data received(client: [::1]:57212, IMEI: 352094087982671) +2018/08/13 18:13:12 ruptelaNet.go:231: Sent ACK (client: [::1]:57212, IMEI: 352094087982671) +2018/08/13 18:13:22 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:13:22 ruptelaNet.go:217: Data received(client: [::1]:57212, IMEI: 352094087982671) +2018/08/13 18:13:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:13:22 ruptelaNet.go:231: Sent ACK (client: [::1]:57212, IMEI: 352094087982671) +2018/08/13 18:13:34 ruptelaNet.go:239: Close connection(client: [::1]:57212) +2018/08/13 18:13:47 ruptelaNet.go:170: New connection(client: [::1]:57300) +2018/08/13 18:13:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:13:48 ruptelaNet.go:217: Data received(client: [::1]:57300, IMEI: 352094087230394) +2018/08/13 18:13:48 ruptelaNet.go:231: Sent ACK (client: [::1]:57300, IMEI: 352094087230394) +2018/08/13 18:13:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:13:50 ruptelaNet.go:217: Data received(client: [::1]:57300, IMEI: 352094087230394) +2018/08/13 18:13:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:13:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57300, IMEI: 352094087230394) +2018/08/13 18:13:51 ruptelaNet.go:239: Close connection(client: [::1]:57300) +2018/08/13 18:14:06 ruptelaNet.go:170: New connection(client: [::1]:57348) +2018/08/13 18:14:07 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:14:07 ruptelaNet.go:217: Data received(client: [::1]:57348, IMEI: 352094087982671) +2018/08/13 18:14:07 ruptelaNet.go:231: Sent ACK (client: [::1]:57348, IMEI: 352094087982671) +2018/08/13 18:14:11 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:14:11 ruptelaNet.go:217: Data received(client: [::1]:57348, IMEI: 352094087982671) +2018/08/13 18:14:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:14:11 ruptelaNet.go:231: Sent ACK (client: [::1]:57348, IMEI: 352094087982671) +2018/08/13 18:14:17 ruptelaNet.go:239: Close connection(client: [::1]:57348) +2018/08/13 18:14:40 ruptelaNet.go:170: New connection(client: [::1]:57432) +2018/08/13 18:14:42 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:14:42 ruptelaNet.go:217: Data received(client: [::1]:57432, IMEI: 352094087982671) +2018/08/13 18:14:42 ruptelaNet.go:231: Sent ACK (client: [::1]:57432, IMEI: 352094087982671) +2018/08/13 18:14:46 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:14:46 ruptelaNet.go:217: Data received(client: [::1]:57432, IMEI: 352094087982671) +2018/08/13 18:14:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:14:46 ruptelaNet.go:231: Sent ACK (client: [::1]:57432, IMEI: 352094087982671) +2018/08/13 18:14:47 ruptelaNet.go:170: New connection(client: [::1]:57454) +2018/08/13 18:14:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:14:48 ruptelaNet.go:217: Data received(client: [::1]:57454, IMEI: 352094087230394) +2018/08/13 18:14:48 ruptelaNet.go:231: Sent ACK (client: [::1]:57454, IMEI: 352094087230394) +2018/08/13 18:14:48 ruptelaNet.go:239: Close connection(client: [::1]:57432) +2018/08/13 18:14:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:14:50 ruptelaNet.go:217: Data received(client: [::1]:57454, IMEI: 352094087230394) +2018/08/13 18:14:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:14:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57454, IMEI: 352094087230394) +2018/08/13 18:14:51 ruptelaNet.go:239: Close connection(client: [::1]:57454) +2018/08/13 18:15:15 ruptelaNet.go:170: New connection(client: [::1]:57523) +2018/08/13 18:15:16 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:15:16 ruptelaNet.go:217: Data received(client: [::1]:57523, IMEI: 352094087982671) +2018/08/13 18:15:16 ruptelaNet.go:231: Sent ACK (client: [::1]:57523, IMEI: 352094087982671) +2018/08/13 18:15:29 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:15:29 ruptelaNet.go:217: Data received(client: [::1]:57523, IMEI: 352094087982671) +2018/08/13 18:15:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:15:29 ruptelaNet.go:231: Sent ACK (client: [::1]:57523, IMEI: 352094087982671) +2018/08/13 18:15:48 ruptelaNet.go:170: New connection(client: [::1]:57606) +2018/08/13 18:15:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:15:48 ruptelaNet.go:217: Data received(client: [::1]:57606, IMEI: 352094087230394) +2018/08/13 18:15:48 ruptelaNet.go:231: Sent ACK (client: [::1]:57606, IMEI: 352094087230394) +2018/08/13 18:15:49 ruptelaNet.go:239: Close connection(client: [::1]:57523) +2018/08/13 18:15:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:15:50 ruptelaNet.go:217: Data received(client: [::1]:57606, IMEI: 352094087230394) +2018/08/13 18:15:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:15:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57606, IMEI: 352094087230394) +2018/08/13 18:15:51 ruptelaNet.go:239: Close connection(client: [::1]:57606) +2018/08/13 18:16:12 ruptelaNet.go:170: New connection(client: [::1]:57667) +2018/08/13 18:16:13 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:16:13 ruptelaNet.go:217: Data received(client: [::1]:57667, IMEI: 352094087982671) +2018/08/13 18:16:13 ruptelaNet.go:231: Sent ACK (client: [::1]:57667, IMEI: 352094087982671) +2018/08/13 18:16:17 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:16:17 ruptelaNet.go:217: Data received(client: [::1]:57667, IMEI: 352094087982671) +2018/08/13 18:16:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:16:17 ruptelaNet.go:231: Sent ACK (client: [::1]:57667, IMEI: 352094087982671) +2018/08/13 18:16:29 ruptelaNet.go:239: Close connection(client: [::1]:57667) +2018/08/13 18:16:48 ruptelaNet.go:170: New connection(client: [::1]:57744) +2018/08/13 18:16:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:16:48 ruptelaNet.go:217: Data received(client: [::1]:57744, IMEI: 352094087230394) +2018/08/13 18:16:48 ruptelaNet.go:231: Sent ACK (client: [::1]:57744, IMEI: 352094087230394) +2018/08/13 18:16:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:16:50 ruptelaNet.go:217: Data received(client: [::1]:57744, IMEI: 352094087230394) +2018/08/13 18:16:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:16:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57744, IMEI: 352094087230394) +2018/08/13 18:16:51 ruptelaNet.go:239: Close connection(client: [::1]:57744) +2018/08/13 18:16:52 ruptelaNet.go:170: New connection(client: [::1]:57755) +2018/08/13 18:16:53 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:16:53 ruptelaNet.go:217: Data received(client: [::1]:57755, IMEI: 352094087982671) +2018/08/13 18:16:53 ruptelaNet.go:231: Sent ACK (client: [::1]:57755, IMEI: 352094087982671) +2018/08/13 18:16:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:16:57 ruptelaNet.go:217: Data received(client: [::1]:57755, IMEI: 352094087982671) +2018/08/13 18:16:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:16:57 ruptelaNet.go:231: Sent ACK (client: [::1]:57755, IMEI: 352094087982671) +2018/08/13 18:17:11 ruptelaNet.go:239: Close connection(client: [::1]:57755) +2018/08/13 18:18:44 ruptelaNet.go:170: New connection(client: [::1]:57934) +2018/08/13 18:18:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:18:47 ruptelaNet.go:217: Data received(client: [::1]:57934, IMEI: 352094087982671) +2018/08/13 18:18:47 ruptelaNet.go:231: Sent ACK (client: [::1]:57934, IMEI: 352094087982671) +2018/08/13 18:18:48 ruptelaNet.go:170: New connection(client: [::1]:57945) +2018/08/13 18:18:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:18:48 ruptelaNet.go:217: Data received(client: [::1]:57945, IMEI: 352094087230394) +2018/08/13 18:18:48 ruptelaNet.go:231: Sent ACK (client: [::1]:57945, IMEI: 352094087230394) +2018/08/13 18:18:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:18:50 ruptelaNet.go:217: Data received(client: [::1]:57945, IMEI: 352094087230394) +2018/08/13 18:18:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:18:50 ruptelaNet.go:231: Sent ACK (client: [::1]:57945, IMEI: 352094087230394) +2018/08/13 18:18:51 ruptelaNet.go:239: Close connection(client: [::1]:57945) +2018/08/13 18:18:57 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:18:57 ruptelaNet.go:217: Data received(client: [::1]:57934, IMEI: 352094087982671) +2018/08/13 18:18:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:18:57 ruptelaNet.go:231: Sent ACK (client: [::1]:57934, IMEI: 352094087982671) +2018/08/13 18:19:00 ruptelaNet.go:239: Close connection(client: [::1]:57934) +2018/08/13 18:19:23 ruptelaNet.go:170: New connection(client: [::1]:58032) +2018/08/13 18:19:25 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:19:25 ruptelaNet.go:217: Data received(client: [::1]:58032, IMEI: 352094087982671) +2018/08/13 18:19:25 ruptelaNet.go:231: Sent ACK (client: [::1]:58032, IMEI: 352094087982671) +2018/08/13 18:19:28 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:19:28 ruptelaNet.go:217: Data received(client: [::1]:58032, IMEI: 352094087982671) +2018/08/13 18:19:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:19:28 ruptelaNet.go:231: Sent ACK (client: [::1]:58032, IMEI: 352094087982671) +2018/08/13 18:19:37 ruptelaNet.go:239: Close connection(client: [::1]:58032) +2018/08/13 18:19:48 ruptelaNet.go:170: New connection(client: [::1]:58097) +2018/08/13 18:19:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:19:48 ruptelaNet.go:217: Data received(client: [::1]:58097, IMEI: 352094087230394) +2018/08/13 18:19:48 ruptelaNet.go:231: Sent ACK (client: [::1]:58097, IMEI: 352094087230394) +2018/08/13 18:19:50 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:19:50 ruptelaNet.go:217: Data received(client: [::1]:58097, IMEI: 352094087230394) +2018/08/13 18:19:50 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:19:50 ruptelaNet.go:231: Sent ACK (client: [::1]:58097, IMEI: 352094087230394) +2018/08/13 18:19:51 ruptelaNet.go:239: Close connection(client: [::1]:58097) +2018/08/13 18:20:00 ruptelaNet.go:170: New connection(client: [::1]:58130) +2018/08/13 18:20:02 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:20:02 ruptelaNet.go:217: Data received(client: [::1]:58130, IMEI: 352094087982671) +2018/08/13 18:20:02 ruptelaNet.go:231: Sent ACK (client: [::1]:58130, IMEI: 352094087982671) +2018/08/13 18:20:06 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:20:06 ruptelaNet.go:217: Data received(client: [::1]:58130, IMEI: 352094087982671) +2018/08/13 18:20:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:20:06 ruptelaNet.go:231: Sent ACK (client: [::1]:58130, IMEI: 352094087982671) +2018/08/13 18:20:09 ruptelaNet.go:239: Close connection(client: [::1]:58130) +2018/08/13 18:20:31 ruptelaNet.go:170: New connection(client: [::1]:58207) +2018/08/13 18:20:32 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:20:32 ruptelaNet.go:217: Data received(client: [::1]:58207, IMEI: 352094087982671) +2018/08/13 18:20:32 ruptelaNet.go:231: Sent ACK (client: [::1]:58207, IMEI: 352094087982671) +2018/08/13 18:20:36 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:20:36 ruptelaNet.go:217: Data received(client: [::1]:58207, IMEI: 352094087982671) +2018/08/13 18:20:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:20:36 ruptelaNet.go:231: Sent ACK (client: [::1]:58207, IMEI: 352094087982671) +2018/08/13 18:20:40 ruptelaNet.go:239: Close connection(client: [::1]:58207) +2018/08/13 18:20:48 ruptelaNet.go:170: New connection(client: [::1]:58247) +2018/08/13 18:20:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:20:48 ruptelaNet.go:217: Data received(client: [::1]:58247, IMEI: 352094087230394) +2018/08/13 18:20:48 ruptelaNet.go:231: Sent ACK (client: [::1]:58247, IMEI: 352094087230394) +2018/08/13 18:20:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:20:51 ruptelaNet.go:217: Data received(client: [::1]:58247, IMEI: 352094087230394) +2018/08/13 18:20:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:20:51 ruptelaNet.go:231: Sent ACK (client: [::1]:58247, IMEI: 352094087230394) +2018/08/13 18:20:52 ruptelaNet.go:239: Close connection(client: [::1]:58247) +2018/08/13 18:21:03 ruptelaNet.go:170: New connection(client: [::1]:58279) +2018/08/13 18:21:05 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:21:05 ruptelaNet.go:217: Data received(client: [::1]:58279, IMEI: 352094087982671) +2018/08/13 18:21:05 ruptelaNet.go:231: Sent ACK (client: [::1]:58279, IMEI: 352094087982671) +2018/08/13 18:21:08 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:21:08 ruptelaNet.go:217: Data received(client: [::1]:58279, IMEI: 352094087982671) +2018/08/13 18:21:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:21:08 ruptelaNet.go:231: Sent ACK (client: [::1]:58279, IMEI: 352094087982671) +2018/08/13 18:21:24 ruptelaNet.go:239: Close connection(client: [::1]:58279) +2018/08/13 18:21:47 ruptelaNet.go:170: New connection(client: [::1]:58387) +2018/08/13 18:21:48 ruptelaNet.go:170: New connection(client: [::1]:58390) +2018/08/13 18:21:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:21:48 ruptelaNet.go:217: Data received(client: [::1]:58390, IMEI: 352094087230394) +2018/08/13 18:21:48 ruptelaNet.go:231: Sent ACK (client: [::1]:58390, IMEI: 352094087230394) +2018/08/13 18:21:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:21:49 ruptelaNet.go:217: Data received(client: [::1]:58387, IMEI: 352094087982671) +2018/08/13 18:21:49 ruptelaNet.go:231: Sent ACK (client: [::1]:58387, IMEI: 352094087982671) +2018/08/13 18:21:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:21:51 ruptelaNet.go:217: Data received(client: [::1]:58390, IMEI: 352094087230394) +2018/08/13 18:21:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:21:51 ruptelaNet.go:231: Sent ACK (client: [::1]:58390, IMEI: 352094087230394) +2018/08/13 18:21:52 ruptelaNet.go:239: Close connection(client: [::1]:58390) +2018/08/13 18:21:52 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:21:52 ruptelaNet.go:217: Data received(client: [::1]:58387, IMEI: 352094087982671) +2018/08/13 18:21:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:21:52 ruptelaNet.go:231: Sent ACK (client: [::1]:58387, IMEI: 352094087982671) +2018/08/13 18:21:55 ruptelaNet.go:239: Close connection(client: [::1]:58387) +2018/08/13 18:22:17 ruptelaNet.go:170: New connection(client: [::1]:58466) +2018/08/13 18:22:18 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:22:18 ruptelaNet.go:217: Data received(client: [::1]:58466, IMEI: 352094087982671) +2018/08/13 18:22:18 ruptelaNet.go:231: Sent ACK (client: [::1]:58466, IMEI: 352094087982671) +2018/08/13 18:22:22 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:22:22 ruptelaNet.go:217: Data received(client: [::1]:58466, IMEI: 352094087982671) +2018/08/13 18:22:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:22:22 ruptelaNet.go:231: Sent ACK (client: [::1]:58466, IMEI: 352094087982671) +2018/08/13 18:22:24 ruptelaNet.go:239: Close connection(client: [::1]:58466) +2018/08/13 18:22:48 ruptelaNet.go:170: New connection(client: [::1]:58546) +2018/08/13 18:22:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:22:48 ruptelaNet.go:217: Data received(client: [::1]:58546, IMEI: 352094087230394) +2018/08/13 18:22:48 ruptelaNet.go:231: Sent ACK (client: [::1]:58546, IMEI: 352094087230394) +2018/08/13 18:22:53 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:22:53 ruptelaNet.go:217: Data received(client: [::1]:58546, IMEI: 352094087230394) +2018/08/13 18:22:53 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:22:53 ruptelaNet.go:231: Sent ACK (client: [::1]:58546, IMEI: 352094087230394) +2018/08/13 18:22:53 ruptelaNet.go:170: New connection(client: [::1]:58557) +2018/08/13 18:22:54 ruptelaNet.go:239: Close connection(client: [::1]:58546) +2018/08/13 18:22:55 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:22:55 ruptelaNet.go:217: Data received(client: [::1]:58557, IMEI: 352094087982671) +2018/08/13 18:22:55 ruptelaNet.go:231: Sent ACK (client: [::1]:58557, IMEI: 352094087982671) +2018/08/13 18:22:58 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:22:58 ruptelaNet.go:217: Data received(client: [::1]:58557, IMEI: 352094087982671) +2018/08/13 18:22:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:22:58 ruptelaNet.go:231: Sent ACK (client: [::1]:58557, IMEI: 352094087982671) +2018/08/13 18:23:01 ruptelaNet.go:239: Close connection(client: [::1]:58557) +2018/08/13 18:23:37 ruptelaNet.go:170: New connection(client: [::1]:58658) +2018/08/13 18:23:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:23:38 ruptelaNet.go:217: Data received(client: [::1]:58658, IMEI: 352094087982671) +2018/08/13 18:23:38 ruptelaNet.go:231: Sent ACK (client: [::1]:58658, IMEI: 352094087982671) +2018/08/13 18:23:42 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:23:42 ruptelaNet.go:217: Data received(client: [::1]:58658, IMEI: 352094087982671) +2018/08/13 18:23:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:23:42 ruptelaNet.go:231: Sent ACK (client: [::1]:58658, IMEI: 352094087982671) +2018/08/13 18:23:44 ruptelaNet.go:239: Close connection(client: [::1]:58658) +2018/08/13 18:23:48 ruptelaNet.go:170: New connection(client: [::1]:58685) +2018/08/13 18:23:48 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:23:48 ruptelaNet.go:217: Data received(client: [::1]:58685, IMEI: 352094087230394) +2018/08/13 18:23:48 ruptelaNet.go:231: Sent ACK (client: [::1]:58685, IMEI: 352094087230394) +2018/08/13 18:23:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:23:51 ruptelaNet.go:217: Data received(client: [::1]:58685, IMEI: 352094087230394) +2018/08/13 18:23:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:23:51 ruptelaNet.go:231: Sent ACK (client: [::1]:58685, IMEI: 352094087230394) +2018/08/13 18:23:51 ruptelaNet.go:239: Close connection(client: [::1]:58685) +2018/08/13 18:24:07 ruptelaNet.go:170: New connection(client: [::1]:58732) +2018/08/13 18:24:08 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:24:08 ruptelaNet.go:217: Data received(client: [::1]:58732, IMEI: 352094087982671) +2018/08/13 18:24:08 ruptelaNet.go:231: Sent ACK (client: [::1]:58732, IMEI: 352094087982671) +2018/08/13 18:24:12 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:24:12 ruptelaNet.go:217: Data received(client: [::1]:58732, IMEI: 352094087982671) +2018/08/13 18:24:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:24:12 ruptelaNet.go:231: Sent ACK (client: [::1]:58732, IMEI: 352094087982671) +2018/08/13 18:24:15 ruptelaNet.go:239: Close connection(client: [::1]:58732) +2018/08/13 18:24:37 ruptelaNet.go:170: New connection(client: [::1]:58800) +2018/08/13 18:24:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:24:38 ruptelaNet.go:217: Data received(client: [::1]:58800, IMEI: 352094087982671) +2018/08/13 18:24:38 ruptelaNet.go:231: Sent ACK (client: [::1]:58800, IMEI: 352094087982671) +2018/08/13 18:24:42 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:24:42 ruptelaNet.go:217: Data received(client: [::1]:58800, IMEI: 352094087982671) +2018/08/13 18:24:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:24:42 ruptelaNet.go:231: Sent ACK (client: [::1]:58800, IMEI: 352094087982671) +2018/08/13 18:24:44 ruptelaNet.go:239: Close connection(client: [::1]:58800) +2018/08/13 18:24:49 ruptelaNet.go:170: New connection(client: [::1]:58829) +2018/08/13 18:24:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:24:49 ruptelaNet.go:217: Data received(client: [::1]:58829, IMEI: 352094087230394) +2018/08/13 18:24:49 ruptelaNet.go:231: Sent ACK (client: [::1]:58829, IMEI: 352094087230394) +2018/08/13 18:24:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:24:51 ruptelaNet.go:217: Data received(client: [::1]:58829, IMEI: 352094087230394) +2018/08/13 18:24:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:24:51 ruptelaNet.go:231: Sent ACK (client: [::1]:58829, IMEI: 352094087230394) +2018/08/13 18:24:52 ruptelaNet.go:239: Close connection(client: [::1]:58829) +2018/08/13 18:25:07 ruptelaNet.go:170: New connection(client: [::1]:58879) +2018/08/13 18:25:08 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:25:08 ruptelaNet.go:217: Data received(client: [::1]:58879, IMEI: 352094087982671) +2018/08/13 18:25:08 ruptelaNet.go:231: Sent ACK (client: [::1]:58879, IMEI: 352094087982671) +2018/08/13 18:25:12 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:25:12 ruptelaNet.go:217: Data received(client: [::1]:58879, IMEI: 352094087982671) +2018/08/13 18:25:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:25:12 ruptelaNet.go:231: Sent ACK (client: [::1]:58879, IMEI: 352094087982671) +2018/08/13 18:25:18 ruptelaNet.go:239: Close connection(client: [::1]:58879) +2018/08/13 18:25:41 ruptelaNet.go:170: New connection(client: [::1]:58966) +2018/08/13 18:25:42 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:25:42 ruptelaNet.go:217: Data received(client: [::1]:58966, IMEI: 352094087982671) +2018/08/13 18:25:42 ruptelaNet.go:231: Sent ACK (client: [::1]:58966, IMEI: 352094087982671) +2018/08/13 18:25:46 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:25:46 ruptelaNet.go:217: Data received(client: [::1]:58966, IMEI: 352094087982671) +2018/08/13 18:25:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:25:46 ruptelaNet.go:231: Sent ACK (client: [::1]:58966, IMEI: 352094087982671) +2018/08/13 18:25:49 ruptelaNet.go:170: New connection(client: [::1]:58987) +2018/08/13 18:25:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:25:49 ruptelaNet.go:217: Data received(client: [::1]:58987, IMEI: 352094087230394) +2018/08/13 18:25:49 ruptelaNet.go:231: Sent ACK (client: [::1]:58987, IMEI: 352094087230394) +2018/08/13 18:25:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:25:51 ruptelaNet.go:217: Data received(client: [::1]:58987, IMEI: 352094087230394) +2018/08/13 18:25:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:25:51 ruptelaNet.go:231: Sent ACK (client: [::1]:58987, IMEI: 352094087230394) +2018/08/13 18:25:54 ruptelaNet.go:239: Close connection(client: [::1]:58987) +2018/08/13 18:25:54 ruptelaNet.go:239: Close connection(client: [::1]:58966) +2018/08/13 18:26:27 ruptelaNet.go:170: New connection(client: [::1]:59081) +2018/08/13 18:26:27 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:26:27 ruptelaNet.go:217: Data received(client: [::1]:59081, IMEI: 352094087982671) +2018/08/13 18:26:27 ruptelaNet.go:231: Sent ACK (client: [::1]:59081, IMEI: 352094087982671) +2018/08/13 18:26:31 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:26:31 ruptelaNet.go:217: Data received(client: [::1]:59081, IMEI: 352094087982671) +2018/08/13 18:26:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:26:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59081, IMEI: 352094087982671) +2018/08/13 18:26:34 ruptelaNet.go:239: Close connection(client: [::1]:59081) +2018/08/13 18:26:49 ruptelaNet.go:170: New connection(client: [::1]:59137) +2018/08/13 18:26:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:26:49 ruptelaNet.go:217: Data received(client: [::1]:59137, IMEI: 352094087230394) +2018/08/13 18:26:49 ruptelaNet.go:231: Sent ACK (client: [::1]:59137, IMEI: 352094087230394) +2018/08/13 18:26:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:26:51 ruptelaNet.go:217: Data received(client: [::1]:59137, IMEI: 352094087230394) +2018/08/13 18:26:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:26:51 ruptelaNet.go:231: Sent ACK (client: [::1]:59137, IMEI: 352094087230394) +2018/08/13 18:26:52 ruptelaNet.go:239: Close connection(client: [::1]:59137) +2018/08/13 18:27:02 ruptelaNet.go:170: New connection(client: [::1]:59170) +2018/08/13 18:27:04 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:27:04 ruptelaNet.go:217: Data received(client: [::1]:59170, IMEI: 352094087982671) +2018/08/13 18:27:04 ruptelaNet.go:231: Sent ACK (client: [::1]:59170, IMEI: 352094087982671) +2018/08/13 18:27:07 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:27:07 ruptelaNet.go:217: Data received(client: [::1]:59170, IMEI: 352094087982671) +2018/08/13 18:27:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:27:07 ruptelaNet.go:231: Sent ACK (client: [::1]:59170, IMEI: 352094087982671) +2018/08/13 18:27:11 ruptelaNet.go:239: Close connection(client: [::1]:59170) +2018/08/13 18:27:46 ruptelaNet.go:170: New connection(client: [::1]:59281) +2018/08/13 18:27:47 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:27:47 ruptelaNet.go:217: Data received(client: [::1]:59281, IMEI: 352094087982671) +2018/08/13 18:27:47 ruptelaNet.go:231: Sent ACK (client: [::1]:59281, IMEI: 352094087982671) +2018/08/13 18:27:49 ruptelaNet.go:170: New connection(client: [::1]:59290) +2018/08/13 18:27:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:27:49 ruptelaNet.go:217: Data received(client: [::1]:59290, IMEI: 352094087230394) +2018/08/13 18:27:49 ruptelaNet.go:231: Sent ACK (client: [::1]:59290, IMEI: 352094087230394) +2018/08/13 18:27:51 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:27:51 ruptelaNet.go:217: Data received(client: [::1]:59281, IMEI: 352094087982671) +2018/08/13 18:27:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:27:51 ruptelaNet.go:231: Sent ACK (client: [::1]:59281, IMEI: 352094087982671) +2018/08/13 18:27:52 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:27:52 ruptelaNet.go:217: Data received(client: [::1]:59290, IMEI: 352094087230394) +2018/08/13 18:27:52 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:27:52 ruptelaNet.go:231: Sent ACK (client: [::1]:59290, IMEI: 352094087230394) +2018/08/13 18:27:53 ruptelaNet.go:239: Close connection(client: [::1]:59290) +2018/08/13 18:28:02 ruptelaNet.go:239: Close connection(client: [::1]:59281) +2018/08/13 18:28:25 ruptelaNet.go:170: New connection(client: [::1]:59380) +2018/08/13 18:28:27 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:28:27 ruptelaNet.go:217: Data received(client: [::1]:59380, IMEI: 352094087982671) +2018/08/13 18:28:27 ruptelaNet.go:231: Sent ACK (client: [::1]:59380, IMEI: 352094087982671) +2018/08/13 18:28:30 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:28:30 ruptelaNet.go:217: Data received(client: [::1]:59380, IMEI: 352094087982671) +2018/08/13 18:28:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:28:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59380, IMEI: 352094087982671) +2018/08/13 18:28:37 ruptelaNet.go:239: Close connection(client: [::1]:59380) +2018/08/13 18:28:49 ruptelaNet.go:170: New connection(client: [::1]:59439) +2018/08/13 18:28:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:28:49 ruptelaNet.go:217: Data received(client: [::1]:59439, IMEI: 352094087230394) +2018/08/13 18:28:49 ruptelaNet.go:231: Sent ACK (client: [::1]:59439, IMEI: 352094087230394) +2018/08/13 18:28:51 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:28:51 ruptelaNet.go:217: Data received(client: [::1]:59439, IMEI: 352094087230394) +2018/08/13 18:28:51 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:28:51 ruptelaNet.go:231: Sent ACK (client: [::1]:59439, IMEI: 352094087230394) +2018/08/13 18:28:52 ruptelaNet.go:239: Close connection(client: [::1]:59439) +2018/08/13 18:28:59 ruptelaNet.go:170: New connection(client: [::1]:59462) +2018/08/13 18:29:00 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:29:00 ruptelaNet.go:217: Data received(client: [::1]:59462, IMEI: 352094087982671) +2018/08/13 18:29:00 ruptelaNet.go:231: Sent ACK (client: [::1]:59462, IMEI: 352094087982671) +2018/08/13 18:29:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:29:04 ruptelaNet.go:217: Data received(client: [::1]:59462, IMEI: 352094087982671) +2018/08/13 18:29:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:29:04 ruptelaNet.go:231: Sent ACK (client: [::1]:59462, IMEI: 352094087982671) +2018/08/13 18:29:06 ruptelaNet.go:239: Close connection(client: [::1]:59462) +2018/08/13 18:29:29 ruptelaNet.go:170: New connection(client: [::1]:59534) +2018/08/13 18:29:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:29:30 ruptelaNet.go:217: Data received(client: [::1]:59534, IMEI: 352094087982671) +2018/08/13 18:29:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59534, IMEI: 352094087982671) +2018/08/13 18:29:34 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:29:34 ruptelaNet.go:217: Data received(client: [::1]:59534, IMEI: 352094087982671) +2018/08/13 18:29:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:29:34 ruptelaNet.go:231: Sent ACK (client: [::1]:59534, IMEI: 352094087982671) +2018/08/13 18:29:36 ruptelaNet.go:239: Close connection(client: [::1]:59534) +2018/08/13 18:29:49 ruptelaNet.go:170: New connection(client: [::1]:59579) +2018/08/13 18:29:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:29:49 ruptelaNet.go:217: Data received(client: [::1]:59579, IMEI: 352094087230394) +2018/08/13 18:29:49 ruptelaNet.go:231: Sent ACK (client: [::1]:59579, IMEI: 352094087230394) +2018/08/13 18:29:52 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:29:52 ruptelaNet.go:217: Data received(client: [::1]:59579, IMEI: 352094087230394) +2018/08/13 18:29:52 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:29:52 ruptelaNet.go:231: Sent ACK (client: [::1]:59579, IMEI: 352094087230394) +2018/08/13 18:29:53 ruptelaNet.go:239: Close connection(client: [::1]:59579) +2018/08/13 18:29:59 ruptelaNet.go:170: New connection(client: [::1]:59608) +2018/08/13 18:30:00 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:30:00 ruptelaNet.go:217: Data received(client: [::1]:59608, IMEI: 352094087982671) +2018/08/13 18:30:00 ruptelaNet.go:231: Sent ACK (client: [::1]:59608, IMEI: 352094087982671) +2018/08/13 18:30:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:30:04 ruptelaNet.go:217: Data received(client: [::1]:59608, IMEI: 352094087982671) +2018/08/13 18:30:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:30:04 ruptelaNet.go:231: Sent ACK (client: [::1]:59608, IMEI: 352094087982671) +2018/08/13 18:30:06 ruptelaNet.go:239: Close connection(client: [::1]:59608) +2018/08/13 18:30:29 ruptelaNet.go:170: New connection(client: [::1]:59685) +2018/08/13 18:30:30 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:30:30 ruptelaNet.go:217: Data received(client: [::1]:59685, IMEI: 352094087982671) +2018/08/13 18:30:30 ruptelaNet.go:231: Sent ACK (client: [::1]:59685, IMEI: 352094087982671) +2018/08/13 18:30:34 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:30:34 ruptelaNet.go:217: Data received(client: [::1]:59685, IMEI: 352094087982671) +2018/08/13 18:30:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:30:34 ruptelaNet.go:231: Sent ACK (client: [::1]:59685, IMEI: 352094087982671) +2018/08/13 18:30:36 ruptelaNet.go:239: Close connection(client: [::1]:59685) +2018/08/13 18:30:49 ruptelaNet.go:170: New connection(client: [::1]:59737) +2018/08/13 18:30:49 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:30:49 ruptelaNet.go:217: Data received(client: [::1]:59737, IMEI: 352094087230394) +2018/08/13 18:30:49 ruptelaNet.go:231: Sent ACK (client: [::1]:59737, IMEI: 352094087230394) +2018/08/13 18:30:53 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:30:53 ruptelaNet.go:217: Data received(client: [::1]:59737, IMEI: 352094087230394) +2018/08/13 18:30:53 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:30:53 ruptelaNet.go:231: Sent ACK (client: [::1]:59737, IMEI: 352094087230394) +2018/08/13 18:30:54 ruptelaNet.go:239: Close connection(client: [::1]:59737) +2018/08/13 18:30:59 ruptelaNet.go:170: New connection(client: [::1]:59763) +2018/08/13 18:31:00 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:31:00 ruptelaNet.go:217: Data received(client: [::1]:59763, IMEI: 352094087982671) +2018/08/13 18:31:00 ruptelaNet.go:231: Sent ACK (client: [::1]:59763, IMEI: 352094087982671) +2018/08/13 18:31:04 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:31:04 ruptelaNet.go:217: Data received(client: [::1]:59763, IMEI: 352094087982671) +2018/08/13 18:31:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:31:04 ruptelaNet.go:231: Sent ACK (client: [::1]:59763, IMEI: 352094087982671) +2018/08/13 18:31:07 ruptelaNet.go:239: Close connection(client: [::1]:59763) +2018/08/13 18:31:37 ruptelaNet.go:170: New connection(client: [::1]:59860) +2018/08/13 18:31:38 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:31:38 ruptelaNet.go:217: Data received(client: [::1]:59860, IMEI: 352094087982671) +2018/08/13 18:31:38 ruptelaNet.go:231: Sent ACK (client: [::1]:59860, IMEI: 352094087982671) +2018/08/13 18:31:44 ruptelaNet.go:301: data packet length : 462 +2018/08/13 18:31:44 ruptelaNet.go:217: Data received(client: [::1]:59860, IMEI: 352094087982671) +2018/08/13 18:31:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/13 18:31:44 ruptelaNet.go:231: Sent ACK (client: [::1]:59860, IMEI: 352094087982671) +2018/08/13 18:31:50 ruptelaNet.go:239: Close connection(client: [::1]:59860) +2018/08/13 18:31:50 ruptelaNet.go:170: New connection(client: [::1]:59892) +2018/08/13 18:31:50 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:31:50 ruptelaNet.go:217: Data received(client: [::1]:59892, IMEI: 352094087230394) +2018/08/13 18:31:50 ruptelaNet.go:231: Sent ACK (client: [::1]:59892, IMEI: 352094087230394) +2018/08/13 18:31:53 ruptelaNet.go:301: data packet length : 978 +2018/08/13 18:31:53 ruptelaNet.go:217: Data received(client: [::1]:59892, IMEI: 352094087230394) +2018/08/13 18:31:53 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/13 18:31:53 ruptelaNet.go:231: Sent ACK (client: [::1]:59892, IMEI: 352094087230394) +2018/08/13 18:31:53 ruptelaNet.go:239: Close connection(client: [::1]:59892) +2018/08/13 18:32:29 ruptelaNet.go:170: New connection(client: [::1]:59988) +2018/08/13 18:32:29 ruptelaNet.go:301: data packet length : 15 +2018/08/13 18:32:29 ruptelaNet.go:217: Data received(client: [::1]:59988, IMEI: 352094087982671) +2018/08/13 18:32:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59988, IMEI: 352094087982671) +2018/08/13 18:32:33 ruptelaNet.go:151: Signal: interrupt +2018/08/13 18:32:33 ruptelaNet.go:239: Close connection(client: [::1]:59988) +2018/08/14 10:47:23 ruptelaNet.go:145: listening: [::]:4000 +2018/08/14 10:47:23 ruptelaNet.go:170: New connection(client: [::1]:51062) +2018/08/14 10:47:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:47:23 ruptelaNet.go:217: Data received(client: [::1]:51062, IMEI: 352094087230394) +2018/08/14 10:47:23 ruptelaNet.go:231: Sent ACK (client: [::1]:51062, IMEI: 352094087230394) +2018/08/14 10:47:25 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:47:25 ruptelaNet.go:217: Data received(client: [::1]:51062, IMEI: 352094087230394) +2018/08/14 10:47:25 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:47:25 ruptelaNet.go:231: Sent ACK (client: [::1]:51062, IMEI: 352094087230394) +2018/08/14 10:47:26 ruptelaNet.go:239: Close connection(client: [::1]:51062) +2018/08/14 10:48:23 ruptelaNet.go:170: New connection(client: [::1]:51218) +2018/08/14 10:48:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:48:23 ruptelaNet.go:217: Data received(client: [::1]:51218, IMEI: 352094087230394) +2018/08/14 10:48:23 ruptelaNet.go:231: Sent ACK (client: [::1]:51218, IMEI: 352094087230394) +2018/08/14 10:48:25 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:48:25 ruptelaNet.go:217: Data received(client: [::1]:51218, IMEI: 352094087230394) +2018/08/14 10:48:25 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:48:25 ruptelaNet.go:231: Sent ACK (client: [::1]:51218, IMEI: 352094087230394) +2018/08/14 10:48:26 ruptelaNet.go:239: Close connection(client: [::1]:51218) +2018/08/14 10:49:23 ruptelaNet.go:170: New connection(client: [::1]:51373) +2018/08/14 10:49:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:49:23 ruptelaNet.go:217: Data received(client: [::1]:51373, IMEI: 352094087230394) +2018/08/14 10:49:23 ruptelaNet.go:231: Sent ACK (client: [::1]:51373, IMEI: 352094087230394) +2018/08/14 10:49:25 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:49:25 ruptelaNet.go:217: Data received(client: [::1]:51373, IMEI: 352094087230394) +2018/08/14 10:49:25 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:49:25 ruptelaNet.go:231: Sent ACK (client: [::1]:51373, IMEI: 352094087230394) +2018/08/14 10:49:26 ruptelaNet.go:239: Close connection(client: [::1]:51373) +2018/08/14 10:50:23 ruptelaNet.go:170: New connection(client: [::1]:51513) +2018/08/14 10:50:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:50:23 ruptelaNet.go:217: Data received(client: [::1]:51513, IMEI: 352094087230394) +2018/08/14 10:50:23 ruptelaNet.go:231: Sent ACK (client: [::1]:51513, IMEI: 352094087230394) +2018/08/14 10:50:25 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:50:25 ruptelaNet.go:217: Data received(client: [::1]:51513, IMEI: 352094087230394) +2018/08/14 10:50:25 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:50:25 ruptelaNet.go:231: Sent ACK (client: [::1]:51513, IMEI: 352094087230394) +2018/08/14 10:50:26 ruptelaNet.go:239: Close connection(client: [::1]:51513) +2018/08/14 10:51:24 ruptelaNet.go:170: New connection(client: [::1]:51661) +2018/08/14 10:51:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:51:24 ruptelaNet.go:217: Data received(client: [::1]:51661, IMEI: 352094087230394) +2018/08/14 10:51:24 ruptelaNet.go:231: Sent ACK (client: [::1]:51661, IMEI: 352094087230394) +2018/08/14 10:51:25 ruptelaNet.go:170: New connection(client: [::1]:51664) +2018/08/14 10:51:26 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:51:26 ruptelaNet.go:217: Data received(client: [::1]:51661, IMEI: 352094087230394) +2018/08/14 10:51:26 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:51:26 ruptelaNet.go:231: Sent ACK (client: [::1]:51661, IMEI: 352094087230394) +2018/08/14 10:51:27 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:51:27 ruptelaNet.go:217: Data received(client: [::1]:51664, IMEI: 352094087982671) +2018/08/14 10:51:27 ruptelaNet.go:231: Sent ACK (client: [::1]:51664, IMEI: 352094087982671) +2018/08/14 10:51:27 ruptelaNet.go:239: Close connection(client: [::1]:51661) +2018/08/14 10:51:30 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:51:30 ruptelaNet.go:217: Data received(client: [::1]:51664, IMEI: 352094087982671) +2018/08/14 10:51:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:51:30 ruptelaNet.go:231: Sent ACK (client: [::1]:51664, IMEI: 352094087982671) +2018/08/14 10:51:33 ruptelaNet.go:239: Close connection(client: [::1]:51664) +2018/08/14 10:51:55 ruptelaNet.go:170: New connection(client: [::1]:51738) +2018/08/14 10:51:57 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:51:57 ruptelaNet.go:217: Data received(client: [::1]:51738, IMEI: 352094087982671) +2018/08/14 10:51:57 ruptelaNet.go:231: Sent ACK (client: [::1]:51738, IMEI: 352094087982671) +2018/08/14 10:52:00 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:52:00 ruptelaNet.go:217: Data received(client: [::1]:51738, IMEI: 352094087982671) +2018/08/14 10:52:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:52:00 ruptelaNet.go:231: Sent ACK (client: [::1]:51738, IMEI: 352094087982671) +2018/08/14 10:52:03 ruptelaNet.go:239: Close connection(client: [::1]:51738) +2018/08/14 10:52:25 ruptelaNet.go:170: New connection(client: [::1]:51814) +2018/08/14 10:52:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:52:25 ruptelaNet.go:217: Data received(client: [::1]:51814, IMEI: 352094087230394) +2018/08/14 10:52:25 ruptelaNet.go:231: Sent ACK (client: [::1]:51814, IMEI: 352094087230394) +2018/08/14 10:52:27 ruptelaNet.go:170: New connection(client: [::1]:51820) +2018/08/14 10:52:28 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:52:28 ruptelaNet.go:217: Data received(client: [::1]:51820, IMEI: 352094087982671) +2018/08/14 10:52:28 ruptelaNet.go:231: Sent ACK (client: [::1]:51820, IMEI: 352094087982671) +2018/08/14 10:52:30 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:52:30 ruptelaNet.go:217: Data received(client: [::1]:51814, IMEI: 352094087230394) +2018/08/14 10:52:30 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:52:30 ruptelaNet.go:231: Sent ACK (client: [::1]:51814, IMEI: 352094087230394) +2018/08/14 10:52:31 ruptelaNet.go:239: Close connection(client: [::1]:51814) +2018/08/14 10:52:32 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:52:32 ruptelaNet.go:217: Data received(client: [::1]:51820, IMEI: 352094087982671) +2018/08/14 10:52:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:52:32 ruptelaNet.go:231: Sent ACK (client: [::1]:51820, IMEI: 352094087982671) +2018/08/14 10:52:35 ruptelaNet.go:239: Close connection(client: [::1]:51820) +2018/08/14 10:52:57 ruptelaNet.go:170: New connection(client: [::1]:51894) +2018/08/14 10:52:59 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:52:59 ruptelaNet.go:217: Data received(client: [::1]:51894, IMEI: 352094087982671) +2018/08/14 10:52:59 ruptelaNet.go:231: Sent ACK (client: [::1]:51894, IMEI: 352094087982671) +2018/08/14 10:53:02 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:53:02 ruptelaNet.go:217: Data received(client: [::1]:51894, IMEI: 352094087982671) +2018/08/14 10:53:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:53:02 ruptelaNet.go:231: Sent ACK (client: [::1]:51894, IMEI: 352094087982671) +2018/08/14 10:53:05 ruptelaNet.go:239: Close connection(client: [::1]:51894) +2018/08/14 10:53:26 ruptelaNet.go:170: New connection(client: [::1]:51962) +2018/08/14 10:53:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:53:26 ruptelaNet.go:217: Data received(client: [::1]:51962, IMEI: 352094087230394) +2018/08/14 10:53:26 ruptelaNet.go:231: Sent ACK (client: [::1]:51962, IMEI: 352094087230394) +2018/08/14 10:53:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:53:28 ruptelaNet.go:217: Data received(client: [::1]:51962, IMEI: 352094087230394) +2018/08/14 10:53:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:53:28 ruptelaNet.go:231: Sent ACK (client: [::1]:51962, IMEI: 352094087230394) +2018/08/14 10:53:30 ruptelaNet.go:239: Close connection(client: [::1]:51962) +2018/08/14 10:53:30 ruptelaNet.go:170: New connection(client: [::1]:51970) +2018/08/14 10:53:31 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:53:31 ruptelaNet.go:217: Data received(client: [::1]:51970, IMEI: 352094087982671) +2018/08/14 10:53:31 ruptelaNet.go:231: Sent ACK (client: [::1]:51970, IMEI: 352094087982671) +2018/08/14 10:53:35 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:53:35 ruptelaNet.go:217: Data received(client: [::1]:51970, IMEI: 352094087982671) +2018/08/14 10:53:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:53:35 ruptelaNet.go:231: Sent ACK (client: [::1]:51970, IMEI: 352094087982671) +2018/08/14 10:53:37 ruptelaNet.go:239: Close connection(client: [::1]:51970) +2018/08/14 10:54:00 ruptelaNet.go:170: New connection(client: [::1]:52047) +2018/08/14 10:54:01 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:54:01 ruptelaNet.go:217: Data received(client: [::1]:52047, IMEI: 352094087982671) +2018/08/14 10:54:01 ruptelaNet.go:231: Sent ACK (client: [::1]:52047, IMEI: 352094087982671) +2018/08/14 10:54:05 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:54:05 ruptelaNet.go:217: Data received(client: [::1]:52047, IMEI: 352094087982671) +2018/08/14 10:54:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:54:05 ruptelaNet.go:231: Sent ACK (client: [::1]:52047, IMEI: 352094087982671) +2018/08/14 10:54:07 ruptelaNet.go:239: Close connection(client: [::1]:52047) +2018/08/14 10:54:24 ruptelaNet.go:170: New connection(client: [::1]:52117) +2018/08/14 10:54:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:54:24 ruptelaNet.go:217: Data received(client: [::1]:52117, IMEI: 352094087230394) +2018/08/14 10:54:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52117, IMEI: 352094087230394) +2018/08/14 10:54:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:54:27 ruptelaNet.go:217: Data received(client: [::1]:52117, IMEI: 352094087230394) +2018/08/14 10:54:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:54:27 ruptelaNet.go:231: Sent ACK (client: [::1]:52117, IMEI: 352094087230394) +2018/08/14 10:54:28 ruptelaNet.go:239: Close connection(client: [::1]:52117) +2018/08/14 10:54:30 ruptelaNet.go:170: New connection(client: [::1]:52133) +2018/08/14 10:54:32 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:54:32 ruptelaNet.go:217: Data received(client: [::1]:52133, IMEI: 352094087982671) +2018/08/14 10:54:32 ruptelaNet.go:231: Sent ACK (client: [::1]:52133, IMEI: 352094087982671) +2018/08/14 10:54:35 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:54:35 ruptelaNet.go:217: Data received(client: [::1]:52133, IMEI: 352094087982671) +2018/08/14 10:54:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:54:35 ruptelaNet.go:231: Sent ACK (client: [::1]:52133, IMEI: 352094087982671) +2018/08/14 10:54:38 ruptelaNet.go:239: Close connection(client: [::1]:52133) +2018/08/14 10:55:00 ruptelaNet.go:170: New connection(client: [::1]:52209) +2018/08/14 10:55:02 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:55:02 ruptelaNet.go:217: Data received(client: [::1]:52209, IMEI: 352094087982671) +2018/08/14 10:55:02 ruptelaNet.go:231: Sent ACK (client: [::1]:52209, IMEI: 352094087982671) +2018/08/14 10:55:07 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:55:07 ruptelaNet.go:217: Data received(client: [::1]:52209, IMEI: 352094087982671) +2018/08/14 10:55:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:55:07 ruptelaNet.go:231: Sent ACK (client: [::1]:52209, IMEI: 352094087982671) +2018/08/14 10:55:09 ruptelaNet.go:239: Close connection(client: [::1]:52209) +2018/08/14 10:55:26 ruptelaNet.go:170: New connection(client: [::1]:52272) +2018/08/14 10:55:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:55:26 ruptelaNet.go:217: Data received(client: [::1]:52272, IMEI: 352094087230394) +2018/08/14 10:55:26 ruptelaNet.go:231: Sent ACK (client: [::1]:52272, IMEI: 352094087230394) +2018/08/14 10:55:30 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:55:30 ruptelaNet.go:217: Data received(client: [::1]:52272, IMEI: 352094087230394) +2018/08/14 10:55:30 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:55:30 ruptelaNet.go:231: Sent ACK (client: [::1]:52272, IMEI: 352094087230394) +2018/08/14 10:55:31 ruptelaNet.go:239: Close connection(client: [::1]:52272) +2018/08/14 10:55:32 ruptelaNet.go:170: New connection(client: [::1]:52288) +2018/08/14 10:55:33 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:55:33 ruptelaNet.go:217: Data received(client: [::1]:52288, IMEI: 352094087982671) +2018/08/14 10:55:33 ruptelaNet.go:231: Sent ACK (client: [::1]:52288, IMEI: 352094087982671) +2018/08/14 10:55:41 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:55:41 ruptelaNet.go:217: Data received(client: [::1]:52288, IMEI: 352094087982671) +2018/08/14 10:55:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:55:41 ruptelaNet.go:231: Sent ACK (client: [::1]:52288, IMEI: 352094087982671) +2018/08/14 10:55:57 ruptelaNet.go:239: Close connection(client: [::1]:52288) +2018/08/14 10:56:11 ruptelaNet.go:170: New connection(client: [::1]:52385) +2018/08/14 10:56:13 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:56:13 ruptelaNet.go:217: Data received(client: [::1]:52385, IMEI: 352094087982671) +2018/08/14 10:56:13 ruptelaNet.go:231: Sent ACK (client: [::1]:52385, IMEI: 352094087982671) +2018/08/14 10:56:16 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:56:16 ruptelaNet.go:217: Data received(client: [::1]:52385, IMEI: 352094087982671) +2018/08/14 10:56:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:56:16 ruptelaNet.go:231: Sent ACK (client: [::1]:52385, IMEI: 352094087982671) +2018/08/14 10:56:18 ruptelaNet.go:239: Close connection(client: [::1]:52385) +2018/08/14 10:56:24 ruptelaNet.go:170: New connection(client: [::1]:52416) +2018/08/14 10:56:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:56:24 ruptelaNet.go:217: Data received(client: [::1]:52416, IMEI: 352094087230394) +2018/08/14 10:56:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52416, IMEI: 352094087230394) +2018/08/14 10:56:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 10:56:27 ruptelaNet.go:217: Data received(client: [::1]:52416, IMEI: 352094087230394) +2018/08/14 10:56:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 10:56:27 ruptelaNet.go:231: Sent ACK (client: [::1]:52416, IMEI: 352094087230394) +2018/08/14 10:56:28 ruptelaNet.go:239: Close connection(client: [::1]:52416) +2018/08/14 10:56:41 ruptelaNet.go:170: New connection(client: [::1]:52454) +2018/08/14 10:56:43 ruptelaNet.go:301: data packet length : 15 +2018/08/14 10:56:43 ruptelaNet.go:217: Data received(client: [::1]:52454, IMEI: 352094087982671) +2018/08/14 10:56:43 ruptelaNet.go:231: Sent ACK (client: [::1]:52454, IMEI: 352094087982671) +2018/08/14 10:56:46 ruptelaNet.go:301: data packet length : 462 +2018/08/14 10:56:46 ruptelaNet.go:217: Data received(client: [::1]:52454, IMEI: 352094087982671) +2018/08/14 10:56:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 10:56:46 ruptelaNet.go:231: Sent ACK (client: [::1]:52454, IMEI: 352094087982671) +2018/08/14 10:56:48 ruptelaNet.go:239: Close connection(client: [::1]:52454) +2018/08/14 11:00:21 ruptelaNet.go:170: New connection(client: [::1]:52502) +2018/08/14 11:00:22 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:00:22 ruptelaNet.go:217: Data received(client: [::1]:52502, IMEI: 352094087982671) +2018/08/14 11:00:22 ruptelaNet.go:231: Sent ACK (client: [::1]:52502, IMEI: 352094087982671) +2018/08/14 11:00:23 ruptelaNet.go:170: New connection(client: [::1]:52513) +2018/08/14 11:00:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:00:23 ruptelaNet.go:217: Data received(client: [::1]:52513, IMEI: 352094087230394) +2018/08/14 11:00:23 ruptelaNet.go:231: Sent ACK (client: [::1]:52513, IMEI: 352094087230394) +2018/08/14 11:00:25 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:00:25 ruptelaNet.go:217: Data received(client: [::1]:52502, IMEI: 352094087982671) +2018/08/14 11:00:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:00:25 ruptelaNet.go:231: Sent ACK (client: [::1]:52502, IMEI: 352094087982671) +2018/08/14 11:00:25 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:00:25 ruptelaNet.go:217: Data received(client: [::1]:52513, IMEI: 352094087230394) +2018/08/14 11:00:25 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:00:25 ruptelaNet.go:231: Sent ACK (client: [::1]:52513, IMEI: 352094087230394) +2018/08/14 11:00:26 ruptelaNet.go:239: Close connection(client: [::1]:52513) +2018/08/14 11:00:27 ruptelaNet.go:239: Close connection(client: [::1]:52502) +2018/08/14 11:00:50 ruptelaNet.go:170: New connection(client: [::1]:52575) +2018/08/14 11:00:51 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:00:51 ruptelaNet.go:217: Data received(client: [::1]:52575, IMEI: 352094087982671) +2018/08/14 11:00:51 ruptelaNet.go:231: Sent ACK (client: [::1]:52575, IMEI: 352094087982671) +2018/08/14 11:00:56 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:00:56 ruptelaNet.go:217: Data received(client: [::1]:52575, IMEI: 352094087982671) +2018/08/14 11:00:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:00:56 ruptelaNet.go:231: Sent ACK (client: [::1]:52575, IMEI: 352094087982671) +2018/08/14 11:00:58 ruptelaNet.go:239: Close connection(client: [::1]:52575) +2018/08/14 11:01:21 ruptelaNet.go:170: New connection(client: [::1]:52634) +2018/08/14 11:01:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:01:24 ruptelaNet.go:217: Data received(client: [::1]:52634, IMEI: 352094087982671) +2018/08/14 11:01:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52634, IMEI: 352094087982671) +2018/08/14 11:01:24 ruptelaNet.go:170: New connection(client: [::1]:52643) +2018/08/14 11:01:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:01:24 ruptelaNet.go:217: Data received(client: [::1]:52643, IMEI: 352094087230394) +2018/08/14 11:01:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52643, IMEI: 352094087230394) +2018/08/14 11:01:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:01:28 ruptelaNet.go:217: Data received(client: [::1]:52643, IMEI: 352094087230394) +2018/08/14 11:01:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:01:28 ruptelaNet.go:231: Sent ACK (client: [::1]:52643, IMEI: 352094087230394) +2018/08/14 11:01:28 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:01:28 ruptelaNet.go:217: Data received(client: [::1]:52634, IMEI: 352094087982671) +2018/08/14 11:01:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:01:28 ruptelaNet.go:231: Sent ACK (client: [::1]:52634, IMEI: 352094087982671) +2018/08/14 11:01:29 ruptelaNet.go:239: Close connection(client: [::1]:52643) +2018/08/14 11:01:31 ruptelaNet.go:239: Close connection(client: [::1]:52634) +2018/08/14 11:01:54 ruptelaNet.go:170: New connection(client: [::1]:52695) +2018/08/14 11:01:55 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:01:55 ruptelaNet.go:217: Data received(client: [::1]:52695, IMEI: 352094087982671) +2018/08/14 11:01:55 ruptelaNet.go:231: Sent ACK (client: [::1]:52695, IMEI: 352094087982671) +2018/08/14 11:01:59 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:01:59 ruptelaNet.go:217: Data received(client: [::1]:52695, IMEI: 352094087982671) +2018/08/14 11:01:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:01:59 ruptelaNet.go:231: Sent ACK (client: [::1]:52695, IMEI: 352094087982671) +2018/08/14 11:02:01 ruptelaNet.go:239: Close connection(client: [::1]:52695) +2018/08/14 11:02:24 ruptelaNet.go:170: New connection(client: [::1]:52751) +2018/08/14 11:02:24 ruptelaNet.go:170: New connection(client: [::1]:52752) +2018/08/14 11:02:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:02:24 ruptelaNet.go:217: Data received(client: [::1]:52752, IMEI: 352094087230394) +2018/08/14 11:02:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52752, IMEI: 352094087230394) +2018/08/14 11:02:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:02:25 ruptelaNet.go:217: Data received(client: [::1]:52751, IMEI: 352094087982671) +2018/08/14 11:02:25 ruptelaNet.go:231: Sent ACK (client: [::1]:52751, IMEI: 352094087982671) +2018/08/14 11:02:26 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:02:26 ruptelaNet.go:217: Data received(client: [::1]:52752, IMEI: 352094087230394) +2018/08/14 11:02:26 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:02:26 ruptelaNet.go:231: Sent ACK (client: [::1]:52752, IMEI: 352094087230394) +2018/08/14 11:02:27 ruptelaNet.go:239: Close connection(client: [::1]:52752) +2018/08/14 11:02:28 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:02:28 ruptelaNet.go:217: Data received(client: [::1]:52751, IMEI: 352094087982671) +2018/08/14 11:02:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:02:28 ruptelaNet.go:231: Sent ACK (client: [::1]:52751, IMEI: 352094087982671) +2018/08/14 11:02:31 ruptelaNet.go:239: Close connection(client: [::1]:52751) +2018/08/14 11:02:55 ruptelaNet.go:170: New connection(client: [::1]:52813) +2018/08/14 11:02:55 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:02:55 ruptelaNet.go:217: Data received(client: [::1]:52813, IMEI: 352094087982671) +2018/08/14 11:02:55 ruptelaNet.go:231: Sent ACK (client: [::1]:52813, IMEI: 352094087982671) +2018/08/14 11:02:59 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:02:59 ruptelaNet.go:217: Data received(client: [::1]:52813, IMEI: 352094087982671) +2018/08/14 11:02:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:02:59 ruptelaNet.go:231: Sent ACK (client: [::1]:52813, IMEI: 352094087982671) +2018/08/14 11:03:02 ruptelaNet.go:239: Close connection(client: [::1]:52813) +2018/08/14 11:03:24 ruptelaNet.go:170: New connection(client: [::1]:52869) +2018/08/14 11:03:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:03:24 ruptelaNet.go:217: Data received(client: [::1]:52869, IMEI: 352094087230394) +2018/08/14 11:03:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52869, IMEI: 352094087230394) +2018/08/14 11:03:25 ruptelaNet.go:170: New connection(client: [::1]:52874) +2018/08/14 11:03:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:03:26 ruptelaNet.go:217: Data received(client: [::1]:52874, IMEI: 352094087982671) +2018/08/14 11:03:26 ruptelaNet.go:231: Sent ACK (client: [::1]:52874, IMEI: 352094087982671) +2018/08/14 11:03:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:03:27 ruptelaNet.go:217: Data received(client: [::1]:52869, IMEI: 352094087230394) +2018/08/14 11:03:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:03:27 ruptelaNet.go:231: Sent ACK (client: [::1]:52869, IMEI: 352094087230394) +2018/08/14 11:03:27 ruptelaNet.go:239: Close connection(client: [::1]:52869) +2018/08/14 11:03:30 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:03:30 ruptelaNet.go:217: Data received(client: [::1]:52874, IMEI: 352094087982671) +2018/08/14 11:03:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:03:30 ruptelaNet.go:231: Sent ACK (client: [::1]:52874, IMEI: 352094087982671) +2018/08/14 11:03:32 ruptelaNet.go:239: Close connection(client: [::1]:52874) +2018/08/14 11:03:55 ruptelaNet.go:170: New connection(client: [::1]:52921) +2018/08/14 11:03:56 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:03:56 ruptelaNet.go:217: Data received(client: [::1]:52921, IMEI: 352094087982671) +2018/08/14 11:03:56 ruptelaNet.go:231: Sent ACK (client: [::1]:52921, IMEI: 352094087982671) +2018/08/14 11:04:01 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:04:01 ruptelaNet.go:217: Data received(client: [::1]:52921, IMEI: 352094087982671) +2018/08/14 11:04:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:04:01 ruptelaNet.go:231: Sent ACK (client: [::1]:52921, IMEI: 352094087982671) +2018/08/14 11:04:07 ruptelaNet.go:239: Close connection(client: [::1]:52921) +2018/08/14 11:04:24 ruptelaNet.go:170: New connection(client: [::1]:52979) +2018/08/14 11:04:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:04:24 ruptelaNet.go:217: Data received(client: [::1]:52979, IMEI: 352094087230394) +2018/08/14 11:04:24 ruptelaNet.go:231: Sent ACK (client: [::1]:52979, IMEI: 352094087230394) +2018/08/14 11:04:26 ruptelaNet.go:170: New connection(client: [::1]:52984) +2018/08/14 11:04:26 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:04:26 ruptelaNet.go:217: Data received(client: [::1]:52979, IMEI: 352094087230394) +2018/08/14 11:04:26 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:04:26 ruptelaNet.go:231: Sent ACK (client: [::1]:52979, IMEI: 352094087230394) +2018/08/14 11:04:27 ruptelaNet.go:239: Close connection(client: [::1]:52979) +2018/08/14 11:04:27 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:04:27 ruptelaNet.go:217: Data received(client: [::1]:52984, IMEI: 352094087982671) +2018/08/14 11:04:27 ruptelaNet.go:231: Sent ACK (client: [::1]:52984, IMEI: 352094087982671) +2018/08/14 11:04:30 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:04:30 ruptelaNet.go:217: Data received(client: [::1]:52984, IMEI: 352094087982671) +2018/08/14 11:04:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:04:30 ruptelaNet.go:231: Sent ACK (client: [::1]:52984, IMEI: 352094087982671) +2018/08/14 11:04:32 ruptelaNet.go:239: Close connection(client: [::1]:52984) +2018/08/14 11:04:55 ruptelaNet.go:170: New connection(client: [::1]:53041) +2018/08/14 11:04:56 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:04:56 ruptelaNet.go:217: Data received(client: [::1]:53041, IMEI: 352094087982671) +2018/08/14 11:04:56 ruptelaNet.go:231: Sent ACK (client: [::1]:53041, IMEI: 352094087982671) +2018/08/14 11:04:59 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:04:59 ruptelaNet.go:217: Data received(client: [::1]:53041, IMEI: 352094087982671) +2018/08/14 11:04:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:04:59 ruptelaNet.go:231: Sent ACK (client: [::1]:53041, IMEI: 352094087982671) +2018/08/14 11:05:02 ruptelaNet.go:239: Close connection(client: [::1]:53041) +2018/08/14 11:05:24 ruptelaNet.go:170: New connection(client: [::1]:53098) +2018/08/14 11:05:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:05:24 ruptelaNet.go:217: Data received(client: [::1]:53098, IMEI: 352094087230394) +2018/08/14 11:05:24 ruptelaNet.go:231: Sent ACK (client: [::1]:53098, IMEI: 352094087230394) +2018/08/14 11:05:25 ruptelaNet.go:170: New connection(client: [::1]:53101) +2018/08/14 11:05:26 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:05:26 ruptelaNet.go:217: Data received(client: [::1]:53098, IMEI: 352094087230394) +2018/08/14 11:05:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:05:26 ruptelaNet.go:217: Data received(client: [::1]:53101, IMEI: 352094087982671) +2018/08/14 11:05:26 ruptelaNet.go:231: Sent ACK (client: [::1]:53101, IMEI: 352094087982671) +2018/08/14 11:05:26 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:05:26 ruptelaNet.go:231: Sent ACK (client: [::1]:53098, IMEI: 352094087230394) +2018/08/14 11:05:27 ruptelaNet.go:239: Close connection(client: [::1]:53098) +2018/08/14 11:05:29 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:05:29 ruptelaNet.go:217: Data received(client: [::1]:53101, IMEI: 352094087982671) +2018/08/14 11:05:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:05:29 ruptelaNet.go:231: Sent ACK (client: [::1]:53101, IMEI: 352094087982671) +2018/08/14 11:05:36 ruptelaNet.go:239: Close connection(client: [::1]:53101) +2018/08/14 11:05:59 ruptelaNet.go:170: New connection(client: [::1]:53169) +2018/08/14 11:06:00 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:06:00 ruptelaNet.go:217: Data received(client: [::1]:53169, IMEI: 352094087982671) +2018/08/14 11:06:00 ruptelaNet.go:231: Sent ACK (client: [::1]:53169, IMEI: 352094087982671) +2018/08/14 11:06:04 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:06:04 ruptelaNet.go:217: Data received(client: [::1]:53169, IMEI: 352094087982671) +2018/08/14 11:06:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:06:04 ruptelaNet.go:231: Sent ACK (client: [::1]:53169, IMEI: 352094087982671) +2018/08/14 11:06:07 ruptelaNet.go:239: Close connection(client: [::1]:53169) +2018/08/14 11:06:24 ruptelaNet.go:170: New connection(client: [::1]:53222) +2018/08/14 11:06:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:06:24 ruptelaNet.go:217: Data received(client: [::1]:53222, IMEI: 352094087230394) +2018/08/14 11:06:24 ruptelaNet.go:231: Sent ACK (client: [::1]:53222, IMEI: 352094087230394) +2018/08/14 11:06:26 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:06:26 ruptelaNet.go:217: Data received(client: [::1]:53222, IMEI: 352094087230394) +2018/08/14 11:06:26 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:06:26 ruptelaNet.go:231: Sent ACK (client: [::1]:53222, IMEI: 352094087230394) +2018/08/14 11:06:28 ruptelaNet.go:239: Close connection(client: [::1]:53222) +2018/08/14 11:06:47 ruptelaNet.go:170: New connection(client: [::1]:53275) +2018/08/14 11:06:48 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:06:48 ruptelaNet.go:217: Data received(client: [::1]:53275, IMEI: 352094087982671) +2018/08/14 11:06:48 ruptelaNet.go:231: Sent ACK (client: [::1]:53275, IMEI: 352094087982671) +2018/08/14 11:06:51 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:06:51 ruptelaNet.go:217: Data received(client: [::1]:53275, IMEI: 352094087982671) +2018/08/14 11:06:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:06:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53275, IMEI: 352094087982671) +2018/08/14 11:06:54 ruptelaNet.go:239: Close connection(client: [::1]:53275) +2018/08/14 11:07:16 ruptelaNet.go:170: New connection(client: [::1]:53334) +2018/08/14 11:07:17 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:07:17 ruptelaNet.go:217: Data received(client: [::1]:53334, IMEI: 352094087982671) +2018/08/14 11:07:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53334, IMEI: 352094087982671) +2018/08/14 11:07:20 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:07:20 ruptelaNet.go:217: Data received(client: [::1]:53334, IMEI: 352094087982671) +2018/08/14 11:07:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:07:20 ruptelaNet.go:231: Sent ACK (client: [::1]:53334, IMEI: 352094087982671) +2018/08/14 11:07:23 ruptelaNet.go:239: Close connection(client: [::1]:53334) +2018/08/14 11:07:25 ruptelaNet.go:170: New connection(client: [::1]:53353) +2018/08/14 11:07:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:07:25 ruptelaNet.go:217: Data received(client: [::1]:53353, IMEI: 352094087230394) +2018/08/14 11:07:25 ruptelaNet.go:231: Sent ACK (client: [::1]:53353, IMEI: 352094087230394) +2018/08/14 11:07:31 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:07:31 ruptelaNet.go:217: Data received(client: [::1]:53353, IMEI: 352094087230394) +2018/08/14 11:07:31 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:07:31 ruptelaNet.go:231: Sent ACK (client: [::1]:53353, IMEI: 352094087230394) +2018/08/14 11:07:32 ruptelaNet.go:239: Close connection(client: [::1]:53353) +2018/08/14 11:07:46 ruptelaNet.go:170: New connection(client: [::1]:53397) +2018/08/14 11:07:47 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:07:47 ruptelaNet.go:217: Data received(client: [::1]:53397, IMEI: 352094087982671) +2018/08/14 11:07:47 ruptelaNet.go:231: Sent ACK (client: [::1]:53397, IMEI: 352094087982671) +2018/08/14 11:07:51 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:07:51 ruptelaNet.go:217: Data received(client: [::1]:53397, IMEI: 352094087982671) +2018/08/14 11:07:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:07:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53397, IMEI: 352094087982671) +2018/08/14 11:07:53 ruptelaNet.go:239: Close connection(client: [::1]:53397) +2018/08/14 11:08:16 ruptelaNet.go:170: New connection(client: [::1]:53449) +2018/08/14 11:08:17 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:08:17 ruptelaNet.go:217: Data received(client: [::1]:53449, IMEI: 352094087982671) +2018/08/14 11:08:17 ruptelaNet.go:231: Sent ACK (client: [::1]:53449, IMEI: 352094087982671) +2018/08/14 11:08:20 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:08:20 ruptelaNet.go:217: Data received(client: [::1]:53449, IMEI: 352094087982671) +2018/08/14 11:08:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:08:20 ruptelaNet.go:231: Sent ACK (client: [::1]:53449, IMEI: 352094087982671) +2018/08/14 11:08:23 ruptelaNet.go:239: Close connection(client: [::1]:53449) +2018/08/14 11:08:24 ruptelaNet.go:170: New connection(client: [::1]:53469) +2018/08/14 11:08:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:08:25 ruptelaNet.go:217: Data received(client: [::1]:53469, IMEI: 352094087230394) +2018/08/14 11:08:25 ruptelaNet.go:231: Sent ACK (client: [::1]:53469, IMEI: 352094087230394) +2018/08/14 11:08:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:08:27 ruptelaNet.go:217: Data received(client: [::1]:53469, IMEI: 352094087230394) +2018/08/14 11:08:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:08:27 ruptelaNet.go:231: Sent ACK (client: [::1]:53469, IMEI: 352094087230394) +2018/08/14 11:08:28 ruptelaNet.go:239: Close connection(client: [::1]:53469) +2018/08/14 11:08:46 ruptelaNet.go:170: New connection(client: [::1]:53512) +2018/08/14 11:08:48 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:08:48 ruptelaNet.go:217: Data received(client: [::1]:53512, IMEI: 352094087982671) +2018/08/14 11:08:48 ruptelaNet.go:231: Sent ACK (client: [::1]:53512, IMEI: 352094087982671) +2018/08/14 11:08:53 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:08:53 ruptelaNet.go:217: Data received(client: [::1]:53512, IMEI: 352094087982671) +2018/08/14 11:08:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:08:53 ruptelaNet.go:231: Sent ACK (client: [::1]:53512, IMEI: 352094087982671) +2018/08/14 11:08:57 ruptelaNet.go:239: Close connection(client: [::1]:53512) +2018/08/14 11:09:20 ruptelaNet.go:170: New connection(client: [::1]:53576) +2018/08/14 11:09:21 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:09:21 ruptelaNet.go:217: Data received(client: [::1]:53576, IMEI: 352094087982671) +2018/08/14 11:09:21 ruptelaNet.go:231: Sent ACK (client: [::1]:53576, IMEI: 352094087982671) +2018/08/14 11:09:24 ruptelaNet.go:170: New connection(client: [::1]:53585) +2018/08/14 11:09:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:09:24 ruptelaNet.go:217: Data received(client: [::1]:53585, IMEI: 352094087230394) +2018/08/14 11:09:24 ruptelaNet.go:231: Sent ACK (client: [::1]:53585, IMEI: 352094087230394) +2018/08/14 11:09:25 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:09:25 ruptelaNet.go:217: Data received(client: [::1]:53576, IMEI: 352094087982671) +2018/08/14 11:09:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:09:25 ruptelaNet.go:231: Sent ACK (client: [::1]:53576, IMEI: 352094087982671) +2018/08/14 11:09:27 ruptelaNet.go:239: Close connection(client: [::1]:53576) +2018/08/14 11:09:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:09:27 ruptelaNet.go:217: Data received(client: [::1]:53585, IMEI: 352094087230394) +2018/08/14 11:09:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:09:27 ruptelaNet.go:231: Sent ACK (client: [::1]:53585, IMEI: 352094087230394) +2018/08/14 11:09:28 ruptelaNet.go:239: Close connection(client: [::1]:53585) +2018/08/14 11:09:51 ruptelaNet.go:170: New connection(client: [::1]:53642) +2018/08/14 11:09:51 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:09:51 ruptelaNet.go:217: Data received(client: [::1]:53642, IMEI: 352094087982671) +2018/08/14 11:09:51 ruptelaNet.go:231: Sent ACK (client: [::1]:53642, IMEI: 352094087982671) +2018/08/14 11:09:55 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:09:55 ruptelaNet.go:217: Data received(client: [::1]:53642, IMEI: 352094087982671) +2018/08/14 11:09:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:09:55 ruptelaNet.go:231: Sent ACK (client: [::1]:53642, IMEI: 352094087982671) +2018/08/14 11:09:57 ruptelaNet.go:239: Close connection(client: [::1]:53642) +2018/08/14 11:10:21 ruptelaNet.go:170: New connection(client: [::1]:53787) +2018/08/14 11:10:22 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:10:22 ruptelaNet.go:217: Data received(client: [::1]:53787, IMEI: 352094087982671) +2018/08/14 11:10:22 ruptelaNet.go:231: Sent ACK (client: [::1]:53787, IMEI: 352094087982671) +2018/08/14 11:10:25 ruptelaNet.go:170: New connection(client: [::1]:53801) +2018/08/14 11:10:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:10:25 ruptelaNet.go:217: Data received(client: [::1]:53801, IMEI: 352094087230394) +2018/08/14 11:10:25 ruptelaNet.go:231: Sent ACK (client: [::1]:53801, IMEI: 352094087230394) +2018/08/14 11:10:26 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:10:26 ruptelaNet.go:217: Data received(client: [::1]:53787, IMEI: 352094087982671) +2018/08/14 11:10:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:10:26 ruptelaNet.go:231: Sent ACK (client: [::1]:53787, IMEI: 352094087982671) +2018/08/14 11:10:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:10:27 ruptelaNet.go:217: Data received(client: [::1]:53801, IMEI: 352094087230394) +2018/08/14 11:10:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:10:27 ruptelaNet.go:231: Sent ACK (client: [::1]:53801, IMEI: 352094087230394) +2018/08/14 11:10:28 ruptelaNet.go:239: Close connection(client: [::1]:53801) +2018/08/14 11:10:28 ruptelaNet.go:239: Close connection(client: [::1]:53787) +2018/08/14 11:10:51 ruptelaNet.go:170: New connection(client: [::1]:53927) +2018/08/14 11:10:53 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:10:53 ruptelaNet.go:217: Data received(client: [::1]:53927, IMEI: 352094087982671) +2018/08/14 11:10:53 ruptelaNet.go:231: Sent ACK (client: [::1]:53927, IMEI: 352094087982671) +2018/08/14 11:10:56 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:10:56 ruptelaNet.go:217: Data received(client: [::1]:53927, IMEI: 352094087982671) +2018/08/14 11:10:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:10:56 ruptelaNet.go:231: Sent ACK (client: [::1]:53927, IMEI: 352094087982671) +2018/08/14 11:11:00 ruptelaNet.go:239: Close connection(client: [::1]:53927) +2018/08/14 11:11:23 ruptelaNet.go:170: New connection(client: [::1]:54064) +2018/08/14 11:11:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:11:25 ruptelaNet.go:217: Data received(client: [::1]:54064, IMEI: 352094087982671) +2018/08/14 11:11:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54064, IMEI: 352094087982671) +2018/08/14 11:11:25 ruptelaNet.go:170: New connection(client: [::1]:54071) +2018/08/14 11:11:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:11:25 ruptelaNet.go:217: Data received(client: [::1]:54071, IMEI: 352094087230394) +2018/08/14 11:11:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54071, IMEI: 352094087230394) +2018/08/14 11:11:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:11:27 ruptelaNet.go:217: Data received(client: [::1]:54071, IMEI: 352094087230394) +2018/08/14 11:11:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:11:27 ruptelaNet.go:231: Sent ACK (client: [::1]:54071, IMEI: 352094087230394) +2018/08/14 11:11:28 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:11:28 ruptelaNet.go:217: Data received(client: [::1]:54064, IMEI: 352094087982671) +2018/08/14 11:11:28 ruptelaNet.go:239: Close connection(client: [::1]:54071) +2018/08/14 11:11:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:11:28 ruptelaNet.go:231: Sent ACK (client: [::1]:54064, IMEI: 352094087982671) +2018/08/14 11:11:31 ruptelaNet.go:239: Close connection(client: [::1]:54064) +2018/08/14 11:12:03 ruptelaNet.go:170: New connection(client: [::1]:54243) +2018/08/14 11:12:06 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:12:06 ruptelaNet.go:217: Data received(client: [::1]:54243, IMEI: 352094087982671) +2018/08/14 11:12:06 ruptelaNet.go:231: Sent ACK (client: [::1]:54243, IMEI: 352094087982671) +2018/08/14 11:12:10 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:12:10 ruptelaNet.go:217: Data received(client: [::1]:54243, IMEI: 352094087982671) +2018/08/14 11:12:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:12:10 ruptelaNet.go:231: Sent ACK (client: [::1]:54243, IMEI: 352094087982671) +2018/08/14 11:12:12 ruptelaNet.go:239: Close connection(client: [::1]:54243) +2018/08/14 11:12:25 ruptelaNet.go:170: New connection(client: [::1]:54351) +2018/08/14 11:12:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:12:25 ruptelaNet.go:217: Data received(client: [::1]:54351, IMEI: 352094087230394) +2018/08/14 11:12:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54351, IMEI: 352094087230394) +2018/08/14 11:12:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:12:28 ruptelaNet.go:217: Data received(client: [::1]:54351, IMEI: 352094087230394) +2018/08/14 11:12:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:12:28 ruptelaNet.go:231: Sent ACK (client: [::1]:54351, IMEI: 352094087230394) +2018/08/14 11:12:29 ruptelaNet.go:239: Close connection(client: [::1]:54351) +2018/08/14 11:12:35 ruptelaNet.go:170: New connection(client: [::1]:54394) +2018/08/14 11:12:36 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:12:36 ruptelaNet.go:217: Data received(client: [::1]:54394, IMEI: 352094087982671) +2018/08/14 11:12:36 ruptelaNet.go:231: Sent ACK (client: [::1]:54394, IMEI: 352094087982671) +2018/08/14 11:12:41 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:12:41 ruptelaNet.go:217: Data received(client: [::1]:54394, IMEI: 352094087982671) +2018/08/14 11:12:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:12:41 ruptelaNet.go:231: Sent ACK (client: [::1]:54394, IMEI: 352094087982671) +2018/08/14 11:12:45 ruptelaNet.go:239: Close connection(client: [::1]:54394) +2018/08/14 11:13:07 ruptelaNet.go:170: New connection(client: [::1]:54531) +2018/08/14 11:13:09 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:13:09 ruptelaNet.go:217: Data received(client: [::1]:54531, IMEI: 352094087982671) +2018/08/14 11:13:09 ruptelaNet.go:231: Sent ACK (client: [::1]:54531, IMEI: 352094087982671) +2018/08/14 11:13:17 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:13:17 ruptelaNet.go:217: Data received(client: [::1]:54531, IMEI: 352094087982671) +2018/08/14 11:13:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:13:17 ruptelaNet.go:231: Sent ACK (client: [::1]:54531, IMEI: 352094087982671) +2018/08/14 11:13:25 ruptelaNet.go:239: Close connection(client: [::1]:54531) +2018/08/14 11:13:26 ruptelaNet.go:170: New connection(client: [::1]:54601) +2018/08/14 11:13:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:13:26 ruptelaNet.go:217: Data received(client: [::1]:54601, IMEI: 352094087230394) +2018/08/14 11:13:26 ruptelaNet.go:231: Sent ACK (client: [::1]:54601, IMEI: 352094087230394) +2018/08/14 11:13:31 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:13:31 ruptelaNet.go:217: Data received(client: [::1]:54601, IMEI: 352094087230394) +2018/08/14 11:13:31 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:13:31 ruptelaNet.go:231: Sent ACK (client: [::1]:54601, IMEI: 352094087230394) +2018/08/14 11:13:32 ruptelaNet.go:239: Close connection(client: [::1]:54601) +2018/08/14 11:13:46 ruptelaNet.go:170: New connection(client: [::1]:54644) +2018/08/14 11:13:48 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:13:48 ruptelaNet.go:217: Data received(client: [::1]:54644, IMEI: 352094087982671) +2018/08/14 11:13:48 ruptelaNet.go:231: Sent ACK (client: [::1]:54644, IMEI: 352094087982671) +2018/08/14 11:13:52 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:13:52 ruptelaNet.go:217: Data received(client: [::1]:54644, IMEI: 352094087982671) +2018/08/14 11:13:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:13:52 ruptelaNet.go:231: Sent ACK (client: [::1]:54644, IMEI: 352094087982671) +2018/08/14 11:13:56 ruptelaNet.go:239: Close connection(client: [::1]:54644) +2018/08/14 11:14:18 ruptelaNet.go:170: New connection(client: [::1]:54708) +2018/08/14 11:14:19 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:14:19 ruptelaNet.go:217: Data received(client: [::1]:54708, IMEI: 352094087982671) +2018/08/14 11:14:19 ruptelaNet.go:231: Sent ACK (client: [::1]:54708, IMEI: 352094087982671) +2018/08/14 11:14:23 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:14:23 ruptelaNet.go:217: Data received(client: [::1]:54708, IMEI: 352094087982671) +2018/08/14 11:14:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:14:23 ruptelaNet.go:231: Sent ACK (client: [::1]:54708, IMEI: 352094087982671) +2018/08/14 11:14:25 ruptelaNet.go:170: New connection(client: [::1]:54722) +2018/08/14 11:14:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:14:25 ruptelaNet.go:217: Data received(client: [::1]:54722, IMEI: 352094087230394) +2018/08/14 11:14:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54722, IMEI: 352094087230394) +2018/08/14 11:14:25 ruptelaNet.go:239: Close connection(client: [::1]:54708) +2018/08/14 11:14:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:14:27 ruptelaNet.go:217: Data received(client: [::1]:54722, IMEI: 352094087230394) +2018/08/14 11:14:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:14:27 ruptelaNet.go:231: Sent ACK (client: [::1]:54722, IMEI: 352094087230394) +2018/08/14 11:14:28 ruptelaNet.go:239: Close connection(client: [::1]:54722) +2018/08/14 11:14:48 ruptelaNet.go:170: New connection(client: [::1]:54770) +2018/08/14 11:14:49 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:14:49 ruptelaNet.go:217: Data received(client: [::1]:54770, IMEI: 352094087982671) +2018/08/14 11:14:49 ruptelaNet.go:231: Sent ACK (client: [::1]:54770, IMEI: 352094087982671) +2018/08/14 11:14:53 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:14:53 ruptelaNet.go:217: Data received(client: [::1]:54770, IMEI: 352094087982671) +2018/08/14 11:14:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:14:53 ruptelaNet.go:231: Sent ACK (client: [::1]:54770, IMEI: 352094087982671) +2018/08/14 11:14:55 ruptelaNet.go:239: Close connection(client: [::1]:54770) +2018/08/14 11:15:18 ruptelaNet.go:170: New connection(client: [::1]:54837) +2018/08/14 11:15:20 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:15:20 ruptelaNet.go:217: Data received(client: [::1]:54837, IMEI: 352094087982671) +2018/08/14 11:15:20 ruptelaNet.go:231: Sent ACK (client: [::1]:54837, IMEI: 352094087982671) +2018/08/14 11:15:24 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:15:24 ruptelaNet.go:217: Data received(client: [::1]:54837, IMEI: 352094087982671) +2018/08/14 11:15:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:15:24 ruptelaNet.go:231: Sent ACK (client: [::1]:54837, IMEI: 352094087982671) +2018/08/14 11:15:24 ruptelaNet.go:170: New connection(client: [::1]:54850) +2018/08/14 11:15:24 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:15:24 ruptelaNet.go:217: Data received(client: [::1]:54850, IMEI: 352094087230394) +2018/08/14 11:15:24 ruptelaNet.go:231: Sent ACK (client: [::1]:54850, IMEI: 352094087230394) +2018/08/14 11:15:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:15:27 ruptelaNet.go:217: Data received(client: [::1]:54850, IMEI: 352094087230394) +2018/08/14 11:15:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:15:27 ruptelaNet.go:231: Sent ACK (client: [::1]:54850, IMEI: 352094087230394) +2018/08/14 11:15:28 ruptelaNet.go:239: Close connection(client: [::1]:54850) +2018/08/14 11:15:28 ruptelaNet.go:239: Close connection(client: [::1]:54837) +2018/08/14 11:15:51 ruptelaNet.go:170: New connection(client: [::1]:54906) +2018/08/14 11:15:52 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:15:52 ruptelaNet.go:217: Data received(client: [::1]:54906, IMEI: 352094087982671) +2018/08/14 11:15:52 ruptelaNet.go:231: Sent ACK (client: [::1]:54906, IMEI: 352094087982671) +2018/08/14 11:15:56 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:15:56 ruptelaNet.go:217: Data received(client: [::1]:54906, IMEI: 352094087982671) +2018/08/14 11:15:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:15:56 ruptelaNet.go:231: Sent ACK (client: [::1]:54906, IMEI: 352094087982671) +2018/08/14 11:15:59 ruptelaNet.go:239: Close connection(client: [::1]:54906) +2018/08/14 11:16:22 ruptelaNet.go:170: New connection(client: [::1]:54964) +2018/08/14 11:16:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:16:23 ruptelaNet.go:217: Data received(client: [::1]:54964, IMEI: 352094087982671) +2018/08/14 11:16:23 ruptelaNet.go:231: Sent ACK (client: [::1]:54964, IMEI: 352094087982671) +2018/08/14 11:16:25 ruptelaNet.go:170: New connection(client: [::1]:54969) +2018/08/14 11:16:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:16:25 ruptelaNet.go:217: Data received(client: [::1]:54969, IMEI: 352094087230394) +2018/08/14 11:16:25 ruptelaNet.go:231: Sent ACK (client: [::1]:54969, IMEI: 352094087230394) +2018/08/14 11:16:27 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:16:27 ruptelaNet.go:217: Data received(client: [::1]:54964, IMEI: 352094087982671) +2018/08/14 11:16:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:16:27 ruptelaNet.go:231: Sent ACK (client: [::1]:54964, IMEI: 352094087982671) +2018/08/14 11:16:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:16:27 ruptelaNet.go:217: Data received(client: [::1]:54969, IMEI: 352094087230394) +2018/08/14 11:16:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:16:27 ruptelaNet.go:231: Sent ACK (client: [::1]:54969, IMEI: 352094087230394) +2018/08/14 11:16:28 ruptelaNet.go:239: Close connection(client: [::1]:54969) +2018/08/14 11:16:29 ruptelaNet.go:239: Close connection(client: [::1]:54964) +2018/08/14 11:16:54 ruptelaNet.go:170: New connection(client: [::1]:55022) +2018/08/14 11:16:56 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:16:56 ruptelaNet.go:217: Data received(client: [::1]:55022, IMEI: 352094087982671) +2018/08/14 11:16:56 ruptelaNet.go:231: Sent ACK (client: [::1]:55022, IMEI: 352094087982671) +2018/08/14 11:16:59 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:16:59 ruptelaNet.go:217: Data received(client: [::1]:55022, IMEI: 352094087982671) +2018/08/14 11:17:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:17:00 ruptelaNet.go:231: Sent ACK (client: [::1]:55022, IMEI: 352094087982671) +2018/08/14 11:17:02 ruptelaNet.go:239: Close connection(client: [::1]:55022) +2018/08/14 11:17:25 ruptelaNet.go:170: New connection(client: [::1]:55080) +2018/08/14 11:17:25 ruptelaNet.go:170: New connection(client: [::1]:55081) +2018/08/14 11:17:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:17:25 ruptelaNet.go:217: Data received(client: [::1]:55081, IMEI: 352094087230394) +2018/08/14 11:17:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55081, IMEI: 352094087230394) +2018/08/14 11:17:27 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:17:27 ruptelaNet.go:217: Data received(client: [::1]:55080, IMEI: 352094087982671) +2018/08/14 11:17:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55080, IMEI: 352094087982671) +2018/08/14 11:17:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:17:28 ruptelaNet.go:217: Data received(client: [::1]:55081, IMEI: 352094087230394) +2018/08/14 11:17:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:17:28 ruptelaNet.go:231: Sent ACK (client: [::1]:55081, IMEI: 352094087230394) +2018/08/14 11:17:28 ruptelaNet.go:239: Close connection(client: [::1]:55081) +2018/08/14 11:17:30 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:17:30 ruptelaNet.go:217: Data received(client: [::1]:55080, IMEI: 352094087982671) +2018/08/14 11:17:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:17:30 ruptelaNet.go:231: Sent ACK (client: [::1]:55080, IMEI: 352094087982671) +2018/08/14 11:17:34 ruptelaNet.go:239: Close connection(client: [::1]:55080) +2018/08/14 11:17:55 ruptelaNet.go:170: New connection(client: [::1]:55142) +2018/08/14 11:17:56 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:17:56 ruptelaNet.go:217: Data received(client: [::1]:55142, IMEI: 352094087982671) +2018/08/14 11:17:56 ruptelaNet.go:231: Sent ACK (client: [::1]:55142, IMEI: 352094087982671) +2018/08/14 11:18:00 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:18:00 ruptelaNet.go:217: Data received(client: [::1]:55142, IMEI: 352094087982671) +2018/08/14 11:18:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:18:00 ruptelaNet.go:231: Sent ACK (client: [::1]:55142, IMEI: 352094087982671) +2018/08/14 11:18:06 ruptelaNet.go:239: Close connection(client: [::1]:55142) +2018/08/14 11:18:25 ruptelaNet.go:170: New connection(client: [::1]:55200) +2018/08/14 11:18:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:18:25 ruptelaNet.go:217: Data received(client: [::1]:55200, IMEI: 352094087230394) +2018/08/14 11:18:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55200, IMEI: 352094087230394) +2018/08/14 11:18:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:18:27 ruptelaNet.go:217: Data received(client: [::1]:55200, IMEI: 352094087230394) +2018/08/14 11:18:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:18:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55200, IMEI: 352094087230394) +2018/08/14 11:18:27 ruptelaNet.go:239: Close connection(client: [::1]:55200) +2018/08/14 11:18:29 ruptelaNet.go:170: New connection(client: [::1]:55209) +2018/08/14 11:18:30 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:18:30 ruptelaNet.go:217: Data received(client: [::1]:55209, IMEI: 352094087982671) +2018/08/14 11:18:30 ruptelaNet.go:231: Sent ACK (client: [::1]:55209, IMEI: 352094087982671) +2018/08/14 11:18:34 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:18:34 ruptelaNet.go:217: Data received(client: [::1]:55209, IMEI: 352094087982671) +2018/08/14 11:18:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:18:34 ruptelaNet.go:231: Sent ACK (client: [::1]:55209, IMEI: 352094087982671) +2018/08/14 11:18:41 ruptelaNet.go:239: Close connection(client: [::1]:55209) +2018/08/14 11:18:59 ruptelaNet.go:170: New connection(client: [::1]:55271) +2018/08/14 11:19:00 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:19:00 ruptelaNet.go:217: Data received(client: [::1]:55271, IMEI: 352094087982671) +2018/08/14 11:19:00 ruptelaNet.go:231: Sent ACK (client: [::1]:55271, IMEI: 352094087982671) +2018/08/14 11:19:04 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:19:04 ruptelaNet.go:217: Data received(client: [::1]:55271, IMEI: 352094087982671) +2018/08/14 11:19:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:19:04 ruptelaNet.go:231: Sent ACK (client: [::1]:55271, IMEI: 352094087982671) +2018/08/14 11:19:09 ruptelaNet.go:239: Close connection(client: [::1]:55271) +2018/08/14 11:19:25 ruptelaNet.go:170: New connection(client: [::1]:55321) +2018/08/14 11:19:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:19:25 ruptelaNet.go:217: Data received(client: [::1]:55321, IMEI: 352094087230394) +2018/08/14 11:19:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55321, IMEI: 352094087230394) +2018/08/14 11:19:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:19:27 ruptelaNet.go:217: Data received(client: [::1]:55321, IMEI: 352094087230394) +2018/08/14 11:19:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:19:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55321, IMEI: 352094087230394) +2018/08/14 11:19:28 ruptelaNet.go:239: Close connection(client: [::1]:55321) +2018/08/14 11:19:31 ruptelaNet.go:170: New connection(client: [::1]:55330) +2018/08/14 11:19:32 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:19:32 ruptelaNet.go:217: Data received(client: [::1]:55330, IMEI: 352094087982671) +2018/08/14 11:19:32 ruptelaNet.go:231: Sent ACK (client: [::1]:55330, IMEI: 352094087982671) +2018/08/14 11:19:35 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:19:35 ruptelaNet.go:217: Data received(client: [::1]:55330, IMEI: 352094087982671) +2018/08/14 11:19:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:19:35 ruptelaNet.go:231: Sent ACK (client: [::1]:55330, IMEI: 352094087982671) +2018/08/14 11:19:37 ruptelaNet.go:239: Close connection(client: [::1]:55330) +2018/08/14 11:20:01 ruptelaNet.go:170: New connection(client: [::1]:55388) +2018/08/14 11:20:02 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:20:02 ruptelaNet.go:217: Data received(client: [::1]:55388, IMEI: 352094087982671) +2018/08/14 11:20:02 ruptelaNet.go:231: Sent ACK (client: [::1]:55388, IMEI: 352094087982671) +2018/08/14 11:20:06 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:20:06 ruptelaNet.go:217: Data received(client: [::1]:55388, IMEI: 352094087982671) +2018/08/14 11:20:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:20:06 ruptelaNet.go:231: Sent ACK (client: [::1]:55388, IMEI: 352094087982671) +2018/08/14 11:20:10 ruptelaNet.go:239: Close connection(client: [::1]:55388) +2018/08/14 11:20:25 ruptelaNet.go:170: New connection(client: [::1]:55432) +2018/08/14 11:20:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:20:25 ruptelaNet.go:217: Data received(client: [::1]:55432, IMEI: 352094087230394) +2018/08/14 11:20:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55432, IMEI: 352094087230394) +2018/08/14 11:20:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:20:27 ruptelaNet.go:217: Data received(client: [::1]:55432, IMEI: 352094087230394) +2018/08/14 11:20:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:20:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55432, IMEI: 352094087230394) +2018/08/14 11:20:28 ruptelaNet.go:239: Close connection(client: [::1]:55432) +2018/08/14 11:20:32 ruptelaNet.go:170: New connection(client: [::1]:55445) +2018/08/14 11:20:34 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:20:34 ruptelaNet.go:217: Data received(client: [::1]:55445, IMEI: 352094087982671) +2018/08/14 11:20:34 ruptelaNet.go:231: Sent ACK (client: [::1]:55445, IMEI: 352094087982671) +2018/08/14 11:20:37 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:20:37 ruptelaNet.go:217: Data received(client: [::1]:55445, IMEI: 352094087982671) +2018/08/14 11:20:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:20:37 ruptelaNet.go:231: Sent ACK (client: [::1]:55445, IMEI: 352094087982671) +2018/08/14 11:20:40 ruptelaNet.go:239: Close connection(client: [::1]:55445) +2018/08/14 11:21:03 ruptelaNet.go:170: New connection(client: [::1]:55502) +2018/08/14 11:21:04 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:21:04 ruptelaNet.go:217: Data received(client: [::1]:55502, IMEI: 352094087982671) +2018/08/14 11:21:04 ruptelaNet.go:231: Sent ACK (client: [::1]:55502, IMEI: 352094087982671) +2018/08/14 11:21:09 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:21:09 ruptelaNet.go:217: Data received(client: [::1]:55502, IMEI: 352094087982671) +2018/08/14 11:21:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:21:09 ruptelaNet.go:231: Sent ACK (client: [::1]:55502, IMEI: 352094087982671) +2018/08/14 11:21:11 ruptelaNet.go:239: Close connection(client: [::1]:55502) +2018/08/14 11:21:25 ruptelaNet.go:170: New connection(client: [::1]:55550) +2018/08/14 11:21:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:21:25 ruptelaNet.go:217: Data received(client: [::1]:55550, IMEI: 352094087230394) +2018/08/14 11:21:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55550, IMEI: 352094087230394) +2018/08/14 11:21:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:21:27 ruptelaNet.go:217: Data received(client: [::1]:55550, IMEI: 352094087230394) +2018/08/14 11:21:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:21:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55550, IMEI: 352094087230394) +2018/08/14 11:21:28 ruptelaNet.go:239: Close connection(client: [::1]:55550) +2018/08/14 11:21:35 ruptelaNet.go:170: New connection(client: [::1]:55569) +2018/08/14 11:21:35 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:21:35 ruptelaNet.go:217: Data received(client: [::1]:55569, IMEI: 352094087982671) +2018/08/14 11:21:35 ruptelaNet.go:231: Sent ACK (client: [::1]:55569, IMEI: 352094087982671) +2018/08/14 11:21:39 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:21:39 ruptelaNet.go:217: Data received(client: [::1]:55569, IMEI: 352094087982671) +2018/08/14 11:21:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:21:39 ruptelaNet.go:231: Sent ACK (client: [::1]:55569, IMEI: 352094087982671) +2018/08/14 11:21:41 ruptelaNet.go:239: Close connection(client: [::1]:55569) +2018/08/14 11:22:04 ruptelaNet.go:170: New connection(client: [::1]:55630) +2018/08/14 11:22:05 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:22:05 ruptelaNet.go:217: Data received(client: [::1]:55630, IMEI: 352094087982671) +2018/08/14 11:22:05 ruptelaNet.go:231: Sent ACK (client: [::1]:55630, IMEI: 352094087982671) +2018/08/14 11:22:09 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:22:09 ruptelaNet.go:217: Data received(client: [::1]:55630, IMEI: 352094087982671) +2018/08/14 11:22:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:22:09 ruptelaNet.go:231: Sent ACK (client: [::1]:55630, IMEI: 352094087982671) +2018/08/14 11:22:11 ruptelaNet.go:239: Close connection(client: [::1]:55630) +2018/08/14 11:22:25 ruptelaNet.go:170: New connection(client: [::1]:55667) +2018/08/14 11:22:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:22:25 ruptelaNet.go:217: Data received(client: [::1]:55667, IMEI: 352094087230394) +2018/08/14 11:22:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55667, IMEI: 352094087230394) +2018/08/14 11:22:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:22:27 ruptelaNet.go:217: Data received(client: [::1]:55667, IMEI: 352094087230394) +2018/08/14 11:22:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:22:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55667, IMEI: 352094087230394) +2018/08/14 11:22:28 ruptelaNet.go:239: Close connection(client: [::1]:55667) +2018/08/14 11:22:34 ruptelaNet.go:170: New connection(client: [::1]:55689) +2018/08/14 11:22:35 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:22:35 ruptelaNet.go:217: Data received(client: [::1]:55689, IMEI: 352094087982671) +2018/08/14 11:22:35 ruptelaNet.go:231: Sent ACK (client: [::1]:55689, IMEI: 352094087982671) +2018/08/14 11:22:40 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:22:40 ruptelaNet.go:217: Data received(client: [::1]:55689, IMEI: 352094087982671) +2018/08/14 11:22:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:22:40 ruptelaNet.go:231: Sent ACK (client: [::1]:55689, IMEI: 352094087982671) +2018/08/14 11:22:42 ruptelaNet.go:239: Close connection(client: [::1]:55689) +2018/08/14 11:23:05 ruptelaNet.go:170: New connection(client: [::1]:55750) +2018/08/14 11:23:06 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:23:06 ruptelaNet.go:217: Data received(client: [::1]:55750, IMEI: 352094087982671) +2018/08/14 11:23:06 ruptelaNet.go:231: Sent ACK (client: [::1]:55750, IMEI: 352094087982671) +2018/08/14 11:23:09 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:23:09 ruptelaNet.go:217: Data received(client: [::1]:55750, IMEI: 352094087982671) +2018/08/14 11:23:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:23:09 ruptelaNet.go:231: Sent ACK (client: [::1]:55750, IMEI: 352094087982671) +2018/08/14 11:23:12 ruptelaNet.go:239: Close connection(client: [::1]:55750) +2018/08/14 11:23:25 ruptelaNet.go:170: New connection(client: [::1]:55791) +2018/08/14 11:23:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:23:25 ruptelaNet.go:217: Data received(client: [::1]:55791, IMEI: 352094087230394) +2018/08/14 11:23:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55791, IMEI: 352094087230394) +2018/08/14 11:23:27 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:23:27 ruptelaNet.go:217: Data received(client: [::1]:55791, IMEI: 352094087230394) +2018/08/14 11:23:27 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:23:27 ruptelaNet.go:231: Sent ACK (client: [::1]:55791, IMEI: 352094087230394) +2018/08/14 11:23:28 ruptelaNet.go:239: Close connection(client: [::1]:55791) +2018/08/14 11:23:35 ruptelaNet.go:170: New connection(client: [::1]:55812) +2018/08/14 11:23:36 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:23:36 ruptelaNet.go:217: Data received(client: [::1]:55812, IMEI: 352094087982671) +2018/08/14 11:23:36 ruptelaNet.go:231: Sent ACK (client: [::1]:55812, IMEI: 352094087982671) +2018/08/14 11:23:40 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:23:40 ruptelaNet.go:217: Data received(client: [::1]:55812, IMEI: 352094087982671) +2018/08/14 11:23:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:23:40 ruptelaNet.go:231: Sent ACK (client: [::1]:55812, IMEI: 352094087982671) +2018/08/14 11:23:45 ruptelaNet.go:239: Close connection(client: [::1]:55812) +2018/08/14 11:24:08 ruptelaNet.go:170: New connection(client: [::1]:55870) +2018/08/14 11:24:08 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:24:08 ruptelaNet.go:217: Data received(client: [::1]:55870, IMEI: 352094087982671) +2018/08/14 11:24:08 ruptelaNet.go:231: Sent ACK (client: [::1]:55870, IMEI: 352094087982671) +2018/08/14 11:24:12 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:24:12 ruptelaNet.go:217: Data received(client: [::1]:55870, IMEI: 352094087982671) +2018/08/14 11:24:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:24:12 ruptelaNet.go:231: Sent ACK (client: [::1]:55870, IMEI: 352094087982671) +2018/08/14 11:24:15 ruptelaNet.go:239: Close connection(client: [::1]:55870) +2018/08/14 11:24:25 ruptelaNet.go:170: New connection(client: [::1]:55909) +2018/08/14 11:24:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:24:25 ruptelaNet.go:217: Data received(client: [::1]:55909, IMEI: 352094087230394) +2018/08/14 11:24:25 ruptelaNet.go:231: Sent ACK (client: [::1]:55909, IMEI: 352094087230394) +2018/08/14 11:24:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:24:28 ruptelaNet.go:217: Data received(client: [::1]:55909, IMEI: 352094087230394) +2018/08/14 11:24:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:24:28 ruptelaNet.go:231: Sent ACK (client: [::1]:55909, IMEI: 352094087230394) +2018/08/14 11:24:29 ruptelaNet.go:239: Close connection(client: [::1]:55909) +2018/08/14 11:24:37 ruptelaNet.go:170: New connection(client: [::1]:55935) +2018/08/14 11:24:38 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:24:38 ruptelaNet.go:217: Data received(client: [::1]:55935, IMEI: 352094087982671) +2018/08/14 11:24:38 ruptelaNet.go:231: Sent ACK (client: [::1]:55935, IMEI: 352094087982671) +2018/08/14 11:24:43 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:24:43 ruptelaNet.go:217: Data received(client: [::1]:55935, IMEI: 352094087982671) +2018/08/14 11:24:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:24:43 ruptelaNet.go:231: Sent ACK (client: [::1]:55935, IMEI: 352094087982671) +2018/08/14 11:24:45 ruptelaNet.go:239: Close connection(client: [::1]:55935) +2018/08/14 11:25:08 ruptelaNet.go:170: New connection(client: [::1]:55997) +2018/08/14 11:25:09 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:25:09 ruptelaNet.go:217: Data received(client: [::1]:55997, IMEI: 352094087982671) +2018/08/14 11:25:09 ruptelaNet.go:231: Sent ACK (client: [::1]:55997, IMEI: 352094087982671) +2018/08/14 11:25:14 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:25:14 ruptelaNet.go:217: Data received(client: [::1]:55997, IMEI: 352094087982671) +2018/08/14 11:25:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:25:14 ruptelaNet.go:231: Sent ACK (client: [::1]:55997, IMEI: 352094087982671) +2018/08/14 11:25:16 ruptelaNet.go:239: Close connection(client: [::1]:55997) +2018/08/14 11:25:25 ruptelaNet.go:170: New connection(client: [::1]:56041) +2018/08/14 11:25:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:25:26 ruptelaNet.go:217: Data received(client: [::1]:56041, IMEI: 352094087230394) +2018/08/14 11:25:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56041, IMEI: 352094087230394) +2018/08/14 11:25:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:25:28 ruptelaNet.go:217: Data received(client: [::1]:56041, IMEI: 352094087230394) +2018/08/14 11:25:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:25:28 ruptelaNet.go:231: Sent ACK (client: [::1]:56041, IMEI: 352094087230394) +2018/08/14 11:25:29 ruptelaNet.go:239: Close connection(client: [::1]:56041) +2018/08/14 11:25:39 ruptelaNet.go:170: New connection(client: [::1]:56068) +2018/08/14 11:25:40 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:25:40 ruptelaNet.go:217: Data received(client: [::1]:56068, IMEI: 352094087982671) +2018/08/14 11:25:40 ruptelaNet.go:231: Sent ACK (client: [::1]:56068, IMEI: 352094087982671) +2018/08/14 11:25:46 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:25:46 ruptelaNet.go:217: Data received(client: [::1]:56068, IMEI: 352094087982671) +2018/08/14 11:25:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:25:46 ruptelaNet.go:231: Sent ACK (client: [::1]:56068, IMEI: 352094087982671) +2018/08/14 11:25:48 ruptelaNet.go:239: Close connection(client: [::1]:56068) +2018/08/14 11:26:12 ruptelaNet.go:170: New connection(client: [::1]:56135) +2018/08/14 11:26:12 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:26:12 ruptelaNet.go:217: Data received(client: [::1]:56135, IMEI: 352094087982671) +2018/08/14 11:26:12 ruptelaNet.go:231: Sent ACK (client: [::1]:56135, IMEI: 352094087982671) +2018/08/14 11:26:16 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:26:16 ruptelaNet.go:217: Data received(client: [::1]:56135, IMEI: 352094087982671) +2018/08/14 11:26:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:26:16 ruptelaNet.go:231: Sent ACK (client: [::1]:56135, IMEI: 352094087982671) +2018/08/14 11:26:22 ruptelaNet.go:239: Close connection(client: [::1]:56135) +2018/08/14 11:26:26 ruptelaNet.go:170: New connection(client: [::1]:56166) +2018/08/14 11:26:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:26:26 ruptelaNet.go:217: Data received(client: [::1]:56166, IMEI: 352094087230394) +2018/08/14 11:26:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56166, IMEI: 352094087230394) +2018/08/14 11:26:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:26:28 ruptelaNet.go:217: Data received(client: [::1]:56166, IMEI: 352094087230394) +2018/08/14 11:26:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:26:28 ruptelaNet.go:231: Sent ACK (client: [::1]:56166, IMEI: 352094087230394) +2018/08/14 11:26:29 ruptelaNet.go:239: Close connection(client: [::1]:56166) +2018/08/14 11:26:29 ruptelaNet.go:170: New connection(client: [::1]:56176) +2018/08/14 11:26:46 ruptelaNet.go:239: Close connection(client: [::1]:56176) +2018/08/14 11:26:46 ruptelaNet.go:170: New connection(client: [::1]:56208) +2018/08/14 11:26:46 ruptelaNet.go:170: New connection(client: [::1]:56207) +2018/08/14 11:26:46 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:26:46 ruptelaNet.go:217: Data received(client: [::1]:56207, IMEI: 352094087982671) +2018/08/14 11:26:46 ruptelaNet.go:231: Sent ACK (client: [::1]:56207, IMEI: 352094087982671) +2018/08/14 11:26:50 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:26:50 ruptelaNet.go:217: Data received(client: [::1]:56207, IMEI: 352094087982671) +2018/08/14 11:26:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:26:50 ruptelaNet.go:231: Sent ACK (client: [::1]:56207, IMEI: 352094087982671) +2018/08/14 11:26:56 ruptelaNet.go:239: Close connection(client: [::1]:56207) +2018/08/14 11:27:00 ruptelaNet.go:239: Close connection(client: [::1]:56208) +2018/08/14 11:27:19 ruptelaNet.go:170: New connection(client: [::1]:56274) +2018/08/14 11:27:20 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:27:20 ruptelaNet.go:217: Data received(client: [::1]:56274, IMEI: 352094087982671) +2018/08/14 11:27:20 ruptelaNet.go:231: Sent ACK (client: [::1]:56274, IMEI: 352094087982671) +2018/08/14 11:27:25 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:27:25 ruptelaNet.go:217: Data received(client: [::1]:56274, IMEI: 352094087982671) +2018/08/14 11:27:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:27:25 ruptelaNet.go:231: Sent ACK (client: [::1]:56274, IMEI: 352094087982671) +2018/08/14 11:27:26 ruptelaNet.go:170: New connection(client: [::1]:56290) +2018/08/14 11:27:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:27:26 ruptelaNet.go:217: Data received(client: [::1]:56290, IMEI: 352094087230394) +2018/08/14 11:27:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56290, IMEI: 352094087230394) +2018/08/14 11:27:27 ruptelaNet.go:239: Close connection(client: [::1]:56274) +2018/08/14 11:27:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:27:28 ruptelaNet.go:217: Data received(client: [::1]:56290, IMEI: 352094087230394) +2018/08/14 11:27:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:27:28 ruptelaNet.go:231: Sent ACK (client: [::1]:56290, IMEI: 352094087230394) +2018/08/14 11:27:29 ruptelaNet.go:239: Close connection(client: [::1]:56290) +2018/08/14 11:27:50 ruptelaNet.go:170: New connection(client: [::1]:56343) +2018/08/14 11:27:52 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:27:52 ruptelaNet.go:217: Data received(client: [::1]:56343, IMEI: 352094087982671) +2018/08/14 11:27:52 ruptelaNet.go:231: Sent ACK (client: [::1]:56343, IMEI: 352094087982671) +2018/08/14 11:27:55 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:27:55 ruptelaNet.go:217: Data received(client: [::1]:56343, IMEI: 352094087982671) +2018/08/14 11:27:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:27:55 ruptelaNet.go:231: Sent ACK (client: [::1]:56343, IMEI: 352094087982671) +2018/08/14 11:27:58 ruptelaNet.go:239: Close connection(client: [::1]:56343) +2018/08/14 11:28:21 ruptelaNet.go:170: New connection(client: [::1]:56403) +2018/08/14 11:28:22 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:28:22 ruptelaNet.go:217: Data received(client: [::1]:56403, IMEI: 352094087982671) +2018/08/14 11:28:22 ruptelaNet.go:231: Sent ACK (client: [::1]:56403, IMEI: 352094087982671) +2018/08/14 11:28:26 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:28:26 ruptelaNet.go:217: Data received(client: [::1]:56403, IMEI: 352094087982671) +2018/08/14 11:28:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:28:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56403, IMEI: 352094087982671) +2018/08/14 11:28:26 ruptelaNet.go:170: New connection(client: [::1]:56413) +2018/08/14 11:28:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:28:26 ruptelaNet.go:217: Data received(client: [::1]:56413, IMEI: 352094087230394) +2018/08/14 11:28:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56413, IMEI: 352094087230394) +2018/08/14 11:28:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:28:28 ruptelaNet.go:217: Data received(client: [::1]:56413, IMEI: 352094087230394) +2018/08/14 11:28:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:28:28 ruptelaNet.go:231: Sent ACK (client: [::1]:56413, IMEI: 352094087230394) +2018/08/14 11:28:28 ruptelaNet.go:239: Close connection(client: [::1]:56403) +2018/08/14 11:28:30 ruptelaNet.go:239: Close connection(client: [::1]:56413) +2018/08/14 11:28:51 ruptelaNet.go:170: New connection(client: [::1]:56461) +2018/08/14 11:28:52 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:28:52 ruptelaNet.go:217: Data received(client: [::1]:56461, IMEI: 352094087982671) +2018/08/14 11:28:52 ruptelaNet.go:231: Sent ACK (client: [::1]:56461, IMEI: 352094087982671) +2018/08/14 11:28:56 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:28:56 ruptelaNet.go:217: Data received(client: [::1]:56461, IMEI: 352094087982671) +2018/08/14 11:28:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:28:56 ruptelaNet.go:231: Sent ACK (client: [::1]:56461, IMEI: 352094087982671) +2018/08/14 11:28:59 ruptelaNet.go:239: Close connection(client: [::1]:56461) +2018/08/14 11:29:22 ruptelaNet.go:170: New connection(client: [::1]:56524) +2018/08/14 11:29:23 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:29:23 ruptelaNet.go:217: Data received(client: [::1]:56524, IMEI: 352094087982671) +2018/08/14 11:29:23 ruptelaNet.go:231: Sent ACK (client: [::1]:56524, IMEI: 352094087982671) +2018/08/14 11:29:27 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:29:27 ruptelaNet.go:217: Data received(client: [::1]:56524, IMEI: 352094087982671) +2018/08/14 11:29:27 ruptelaNet.go:170: New connection(client: [::1]:56533) +2018/08/14 11:29:27 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:29:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:29:27 ruptelaNet.go:217: Data received(client: [::1]:56533, IMEI: 352094087230394) +2018/08/14 11:29:27 ruptelaNet.go:231: Sent ACK (client: [::1]:56533, IMEI: 352094087230394) +2018/08/14 11:29:27 ruptelaNet.go:231: Sent ACK (client: [::1]:56524, IMEI: 352094087982671) +2018/08/14 11:29:29 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:29:29 ruptelaNet.go:217: Data received(client: [::1]:56533, IMEI: 352094087230394) +2018/08/14 11:29:29 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:29:29 ruptelaNet.go:231: Sent ACK (client: [::1]:56533, IMEI: 352094087230394) +2018/08/14 11:29:29 ruptelaNet.go:239: Close connection(client: [::1]:56524) +2018/08/14 11:29:30 ruptelaNet.go:239: Close connection(client: [::1]:56533) +2018/08/14 11:29:52 ruptelaNet.go:170: New connection(client: [::1]:56583) +2018/08/14 11:29:53 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:29:53 ruptelaNet.go:217: Data received(client: [::1]:56583, IMEI: 352094087982671) +2018/08/14 11:29:53 ruptelaNet.go:231: Sent ACK (client: [::1]:56583, IMEI: 352094087982671) +2018/08/14 11:29:57 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:29:57 ruptelaNet.go:217: Data received(client: [::1]:56583, IMEI: 352094087982671) +2018/08/14 11:29:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:29:57 ruptelaNet.go:231: Sent ACK (client: [::1]:56583, IMEI: 352094087982671) +2018/08/14 11:30:00 ruptelaNet.go:239: Close connection(client: [::1]:56583) +2018/08/14 11:30:23 ruptelaNet.go:170: New connection(client: [::1]:56642) +2018/08/14 11:30:25 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:30:25 ruptelaNet.go:217: Data received(client: [::1]:56642, IMEI: 352094087982671) +2018/08/14 11:30:25 ruptelaNet.go:231: Sent ACK (client: [::1]:56642, IMEI: 352094087982671) +2018/08/14 11:30:26 ruptelaNet.go:170: New connection(client: [::1]:56650) +2018/08/14 11:30:26 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:30:26 ruptelaNet.go:217: Data received(client: [::1]:56650, IMEI: 352094087230394) +2018/08/14 11:30:26 ruptelaNet.go:231: Sent ACK (client: [::1]:56650, IMEI: 352094087230394) +2018/08/14 11:30:28 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:30:28 ruptelaNet.go:217: Data received(client: [::1]:56650, IMEI: 352094087230394) +2018/08/14 11:30:28 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:30:28 ruptelaNet.go:231: Sent ACK (client: [::1]:56650, IMEI: 352094087230394) +2018/08/14 11:30:29 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:30:29 ruptelaNet.go:217: Data received(client: [::1]:56642, IMEI: 352094087982671) +2018/08/14 11:30:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:30:29 ruptelaNet.go:231: Sent ACK (client: [::1]:56642, IMEI: 352094087982671) +2018/08/14 11:30:29 ruptelaNet.go:239: Close connection(client: [::1]:56650) +2018/08/14 11:30:31 ruptelaNet.go:239: Close connection(client: [::1]:56642) +2018/08/14 11:30:54 ruptelaNet.go:170: New connection(client: [::1]:56704) +2018/08/14 11:30:55 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:30:55 ruptelaNet.go:217: Data received(client: [::1]:56704, IMEI: 352094087982671) +2018/08/14 11:30:55 ruptelaNet.go:231: Sent ACK (client: [::1]:56704, IMEI: 352094087982671) +2018/08/14 11:30:58 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:30:58 ruptelaNet.go:217: Data received(client: [::1]:56704, IMEI: 352094087982671) +2018/08/14 11:30:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:30:58 ruptelaNet.go:231: Sent ACK (client: [::1]:56704, IMEI: 352094087982671) +2018/08/14 11:31:01 ruptelaNet.go:239: Close connection(client: [::1]:56704) +2018/08/14 11:31:12 ruptelaNet.go:151: Signal: interrupt +2018/08/14 11:56:14 ruptelaNet.go:145: listening: [::]:4000 +2018/08/14 11:56:18 ruptelaNet.go:170: New connection(client: [::1]:59896) +2018/08/14 11:56:20 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:56:20 ruptelaNet.go:217: Data received(client: [::1]:59896, IMEI: 352094087982671) +2018/08/14 11:56:20 ruptelaNet.go:231: Sent ACK (client: [::1]:59896, IMEI: 352094087982671) +2018/08/14 11:56:24 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:56:24 ruptelaNet.go:217: Data received(client: [::1]:59896, IMEI: 352094087982671) +2018/08/14 11:56:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:56:24 ruptelaNet.go:231: Sent ACK (client: [::1]:59896, IMEI: 352094087982671) +2018/08/14 11:56:26 ruptelaNet.go:239: Close connection(client: [::1]:59896) +2018/08/14 11:56:29 ruptelaNet.go:170: New connection(client: [::1]:59917) +2018/08/14 11:56:29 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:56:29 ruptelaNet.go:217: Data received(client: [::1]:59917, IMEI: 352094087230394) +2018/08/14 11:56:29 ruptelaNet.go:231: Sent ACK (client: [::1]:59917, IMEI: 352094087230394) +2018/08/14 11:56:31 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:56:31 ruptelaNet.go:217: Data received(client: [::1]:59917, IMEI: 352094087230394) +2018/08/14 11:56:31 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:56:31 ruptelaNet.go:231: Sent ACK (client: [::1]:59917, IMEI: 352094087230394) +2018/08/14 11:56:32 ruptelaNet.go:239: Close connection(client: [::1]:59917) +2018/08/14 11:56:48 ruptelaNet.go:170: New connection(client: [::1]:59950) +2018/08/14 11:56:50 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:56:50 ruptelaNet.go:217: Data received(client: [::1]:59950, IMEI: 352094087982671) +2018/08/14 11:56:50 ruptelaNet.go:231: Sent ACK (client: [::1]:59950, IMEI: 352094087982671) +2018/08/14 11:56:53 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:56:53 ruptelaNet.go:217: Data received(client: [::1]:59950, IMEI: 352094087982671) +2018/08/14 11:56:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:56:53 ruptelaNet.go:231: Sent ACK (client: [::1]:59950, IMEI: 352094087982671) +2018/08/14 11:56:55 ruptelaNet.go:239: Close connection(client: [::1]:59950) +2018/08/14 11:57:18 ruptelaNet.go:170: New connection(client: [::1]:60004) +2018/08/14 11:57:19 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:57:19 ruptelaNet.go:217: Data received(client: [::1]:60004, IMEI: 352094087982671) +2018/08/14 11:57:19 ruptelaNet.go:231: Sent ACK (client: [::1]:60004, IMEI: 352094087982671) +2018/08/14 11:57:22 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:57:22 ruptelaNet.go:217: Data received(client: [::1]:60004, IMEI: 352094087982671) +2018/08/14 11:57:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:57:22 ruptelaNet.go:231: Sent ACK (client: [::1]:60004, IMEI: 352094087982671) +2018/08/14 11:57:24 ruptelaNet.go:239: Close connection(client: [::1]:60004) +2018/08/14 11:57:29 ruptelaNet.go:170: New connection(client: [::1]:60031) +2018/08/14 11:57:29 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:57:29 ruptelaNet.go:217: Data received(client: [::1]:60031, IMEI: 352094087230394) +2018/08/14 11:57:29 ruptelaNet.go:231: Sent ACK (client: [::1]:60031, IMEI: 352094087230394) +2018/08/14 11:57:31 ruptelaNet.go:301: data packet length : 978 +2018/08/14 11:57:31 ruptelaNet.go:217: Data received(client: [::1]:60031, IMEI: 352094087230394) +2018/08/14 11:57:31 ruptela.go:183: IMEI: 352094087230394, insert-id: 0, nrows: 1 +2018/08/14 11:57:31 ruptelaNet.go:231: Sent ACK (client: [::1]:60031, IMEI: 352094087230394) +2018/08/14 11:57:32 ruptelaNet.go:239: Close connection(client: [::1]:60031) +2018/08/14 11:57:47 ruptelaNet.go:170: New connection(client: [::1]:60067) +2018/08/14 11:57:49 ruptelaNet.go:301: data packet length : 15 +2018/08/14 11:57:49 ruptelaNet.go:217: Data received(client: [::1]:60067, IMEI: 352094087982671) +2018/08/14 11:57:49 ruptelaNet.go:231: Sent ACK (client: [::1]:60067, IMEI: 352094087982671) +2018/08/14 11:57:52 ruptelaNet.go:301: data packet length : 462 +2018/08/14 11:57:52 ruptelaNet.go:217: Data received(client: [::1]:60067, IMEI: 352094087982671) +2018/08/14 11:57:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/08/14 11:57:52 ruptelaNet.go:231: Sent ACK (client: [::1]:60067, IMEI: 352094087982671) +2018/08/14 11:57:54 ruptelaNet.go:239: Close connection(client: [::1]:60067) +2018/08/14 11:58:00 ruptelaNet.go:151: Signal: interrupt +2018/08/14 11:59:09 ruptelaNet.go:145: listening: [::]:4000 +2018/08/14 12:03:33 ruptelaNet.go:151: Signal: interrupt +2018/09/04 12:34:50 deviceServer.go:89: PID file will be created +2018/09/04 12:34:50 deviceServer.go:92: PID: 72036 +2018/09/04 12:34:50 deviceServer.go:98: PID file created +2018/09/04 12:34:50 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:35:01 ruptelaNet.go:156: Signal: interrupt +2018/09/04 12:49:29 deviceServer.go:89: PID file will be created +2018/09/04 12:49:29 deviceServer.go:92: PID: 72843 +2018/09/04 12:49:29 deviceServer.go:98: PID file created +2018/09/04 12:49:29 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:50:00 deviceServer.go:89: PID file will be created +2018/09/04 12:50:00 deviceServer.go:92: PID: 72914 +2018/09/04 12:50:00 deviceServer.go:98: PID file created +2018/09/04 12:50:00 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:50:18 ruptelaNet.go:156: Signal: interrupt +2018/09/04 12:52:51 deviceServer.go:89: PID file will be created +2018/09/04 12:52:51 deviceServer.go:92: PID: 73033 +2018/09/04 12:52:51 deviceServer.go:98: PID file created +2018/09/04 12:52:51 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:53:15 ruptelaNet.go:156: Signal: interrupt +2018/09/04 12:57:20 deviceServer.go:89: PID file will be created +2018/09/04 12:57:20 deviceServer.go:92: PID: 73366 +2018/09/04 12:57:20 deviceServer.go:98: PID file created +2018/09/04 12:57:20 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:57:51 deviceServer.go:89: PID file will be created +2018/09/04 12:57:51 deviceServer.go:92: PID: 73378 +2018/09/04 12:57:51 deviceServer.go:98: PID file created +2018/09/04 12:57:51 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:58:22 deviceServer.go:89: PID file will be created +2018/09/04 12:58:22 deviceServer.go:92: PID: 73389 +2018/09/04 12:58:22 deviceServer.go:98: PID file created +2018/09/04 12:58:22 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:58:53 deviceServer.go:89: PID file will be created +2018/09/04 12:58:53 deviceServer.go:92: PID: 73401 +2018/09/04 12:58:53 deviceServer.go:98: PID file created +2018/09/04 12:58:53 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:59:24 deviceServer.go:89: PID file will be created +2018/09/04 12:59:24 deviceServer.go:92: PID: 73412 +2018/09/04 12:59:24 deviceServer.go:98: PID file created +2018/09/04 12:59:24 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 12:59:55 deviceServer.go:89: PID file will be created +2018/09/04 12:59:55 deviceServer.go:92: PID: 73424 +2018/09/04 12:59:55 deviceServer.go:98: PID file created +2018/09/04 12:59:55 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:00:26 deviceServer.go:89: PID file will be created +2018/09/04 13:00:26 deviceServer.go:92: PID: 73436 +2018/09/04 13:00:26 deviceServer.go:98: PID file created +2018/09/04 13:00:26 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:00:57 deviceServer.go:89: PID file will be created +2018/09/04 13:00:57 deviceServer.go:92: PID: 73449 +2018/09/04 13:00:57 deviceServer.go:98: PID file created +2018/09/04 13:00:57 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:01:28 deviceServer.go:89: PID file will be created +2018/09/04 13:01:28 deviceServer.go:92: PID: 73460 +2018/09/04 13:01:28 deviceServer.go:98: PID file created +2018/09/04 13:01:28 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:01:59 deviceServer.go:89: PID file will be created +2018/09/04 13:01:59 deviceServer.go:92: PID: 73472 +2018/09/04 13:01:59 deviceServer.go:98: PID file created +2018/09/04 13:01:59 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:02:30 deviceServer.go:89: PID file will be created +2018/09/04 13:02:30 deviceServer.go:92: PID: 73483 +2018/09/04 13:02:30 deviceServer.go:98: PID file created +2018/09/04 13:02:30 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:03:01 deviceServer.go:89: PID file will be created +2018/09/04 13:03:01 deviceServer.go:92: PID: 73495 +2018/09/04 13:03:01 deviceServer.go:98: PID file created +2018/09/04 13:03:01 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:03:32 deviceServer.go:89: PID file will be created +2018/09/04 13:03:32 deviceServer.go:92: PID: 73507 +2018/09/04 13:03:32 deviceServer.go:98: PID file created +2018/09/04 13:03:32 ruptelaNet.go:150: listening: [::]:4000 +2018/09/04 13:03:40 ruptelaNet.go:156: Signal: interrupt +2018/09/06 20:06:21 deviceServer.go:89: PID file will be created +2018/09/06 20:06:21 deviceServer.go:92: PID: 2145 +2018/09/06 20:06:21 deviceServer.go:98: PID file created +2018/09/06 20:06:21 ruptelaNet.go:150: listening: [::]:4000 +2018/09/06 20:06:29 ruptelaNet.go:156: Signal: interrupt +2018/09/06 20:07:29 deviceServer.go:89: PID file will be created +2018/09/06 20:07:29 deviceServer.go:92: PID: 2173 +2018/09/06 20:07:29 deviceServer.go:98: PID file created +2018/09/06 20:07:29 ruptelaNet.go:150: listening: [::]:4000 +2018/09/06 20:07:40 ruptelaNet.go:156: Signal: interrupt +2018/09/06 20:11:08 deviceServer.go:89: PID file will be created +2018/09/06 20:11:08 deviceServer.go:92: PID: 2212 +2018/09/06 20:11:08 deviceServer.go:98: PID file created +2018/09/06 20:11:08 ruptelaNet.go:150: listening: [::]:4000 +2018/09/06 20:11:39 deviceServer.go:89: PID file will be created +2018/09/06 20:11:39 deviceServer.go:92: PID: 2282 +2018/09/06 20:11:39 deviceServer.go:98: PID file created +2018/09/06 20:11:39 ruptelaNet.go:150: listening: [::]:4000 +2018/09/06 20:11:56 ruptelaNet.go:156: Signal: interrupt +2018/09/15 16:48:55 deviceServer.go:89: PID file will be created +2018/09/15 16:48:55 deviceServer.go:92: PID: 9828 +2018/09/15 16:48:55 deviceServer.go:98: PID file created +2018/09/15 16:48:55 ruptelaNet.go:151: listening: [::]:4000 +2018/09/15 16:49:14 ruptelaNet.go:176: teltonika New connection(client: [::1]:63162) +2018/09/15 16:49:14 ruptelaNet.go:179: teltonika addrString = [::1]:63162) +2018/09/15 16:49:14 ruptelaNet.go:310: data packet length : 15 +2018/09/15 16:49:14 ruptelaNet.go:226: Data received(client: [::1]:63162, IMEI: 352094089712860) +2018/09/15 16:49:14 ruptelaNet.go:240: Sent ACK (client: [::1]:63162, IMEI: 352094089712860) +2018/09/15 16:49:17 ruptelaNet.go:310: data packet length : 978 +2018/09/15 16:49:17 ruptelaNet.go:226: Data received(client: [::1]:63162, IMEI: 352094089712860) +2018/09/15 16:49:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/15 16:49:17 ruptelaNet.go:240: Sent ACK (client: [::1]:63162, IMEI: 352094089712860) +2018/09/15 16:49:17 ruptelaNet.go:248: teltonika Close connection(client: [::1]:63162) +2018/09/15 16:50:15 ruptelaNet.go:176: teltonika New connection(client: [::1]:63171) +2018/09/15 16:50:15 ruptelaNet.go:179: teltonika addrString = [::1]:63171) +2018/09/15 16:50:15 ruptelaNet.go:310: data packet length : 15 +2018/09/15 16:50:15 ruptelaNet.go:226: Data received(client: [::1]:63171, IMEI: 352094089712860) +2018/09/15 16:50:15 ruptelaNet.go:240: Sent ACK (client: [::1]:63171, IMEI: 352094089712860) +2018/09/15 16:50:19 ruptelaNet.go:157: Signal: interrupt +2018/09/15 16:50:19 ruptelaNet.go:248: teltonika Close connection(client: [::1]:63171) +2018/09/16 00:49:00 deviceServer.go:89: PID file will be created +2018/09/16 00:49:00 deviceServer.go:92: PID: 12115 +2018/09/16 00:49:00 deviceServer.go:98: PID file created +2018/09/16 00:49:00 ruptelaNet.go:168: listening: [::]:4000 +2018/09/16 00:49:28 ruptelaNet.go:193: teltonika New connection(client: [::1]:51015) +2018/09/16 00:49:28 ruptelaNet.go:340: data packet length : 15 +2018/09/16 00:49:28 ruptelaNet.go:253: Data received(client: [::1]:51015, IMEI: 352094089712860) +2018/09/16 00:49:28 ruptelaNet.go:270: Sent ACK (client: [::1]:51015, IMEI: 352094089712860) +2018/09/16 00:49:30 ruptelaNet.go:340: data packet length : 978 +2018/09/16 00:49:30 ruptelaNet.go:253: Data received(client: [::1]:51015, IMEI: 352094089712860) +2018/09/16 00:49:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:49:30 ruptelaNet.go:270: Sent ACK (client: [::1]:51015, IMEI: 352094089712860) +2018/09/16 00:49:30 ruptelaNet.go:278: teltonika Close connection(client: [::1]:51015) +2018/09/16 00:50:28 ruptelaNet.go:193: teltonika New connection(client: [::1]:51019) +2018/09/16 00:50:28 ruptelaNet.go:340: data packet length : 15 +2018/09/16 00:50:28 ruptelaNet.go:253: Data received(client: [::1]:51019, IMEI: 352094089712860) +2018/09/16 00:50:28 ruptelaNet.go:270: Sent ACK (client: [::1]:51019, IMEI: 352094089712860) +2018/09/16 00:50:29 ruptelaNet.go:340: data packet length : 978 +2018/09/16 00:50:29 ruptelaNet.go:253: Data received(client: [::1]:51019, IMEI: 352094089712860) +2018/09/16 00:50:29 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:50:29 ruptelaNet.go:270: Sent ACK (client: [::1]:51019, IMEI: 352094089712860) +2018/09/16 00:50:30 ruptelaNet.go:278: teltonika Close connection(client: [::1]:51019) +2018/09/16 00:51:28 ruptelaNet.go:193: teltonika New connection(client: [::1]:51044) +2018/09/16 00:51:28 ruptelaNet.go:340: data packet length : 15 +2018/09/16 00:51:28 ruptelaNet.go:253: Data received(client: [::1]:51044, IMEI: 352094089712860) +2018/09/16 00:51:28 ruptelaNet.go:270: Sent ACK (client: [::1]:51044, IMEI: 352094089712860) +2018/09/16 00:51:30 ruptelaNet.go:340: data packet length : 978 +2018/09/16 00:51:30 ruptelaNet.go:253: Data received(client: [::1]:51044, IMEI: 352094089712860) +2018/09/16 00:51:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:51:30 ruptelaNet.go:270: Sent ACK (client: [::1]:51044, IMEI: 352094089712860) +2018/09/16 00:51:31 ruptelaNet.go:278: teltonika Close connection(client: [::1]:51044) +2018/09/16 00:51:41 ruptelaNet.go:174: Signal: interrupt +2018/09/16 00:56:10 deviceServer.go:89: PID file will be created +2018/09/16 00:56:10 deviceServer.go:92: PID: 12215 +2018/09/16 00:56:10 deviceServer.go:98: PID file created +2018/09/16 00:56:10 ruptelaNet.go:174: listening: [::]:4000 +2018/09/16 00:56:28 ruptelaNet.go:199: teltonika New connection(client: [::1]:51090) +2018/09/16 00:56:28 ruptelaNet.go:347: data packet length : 15 +2018/09/16 00:56:28 ruptelaNet.go:259: Data received(client: [::1]:51090, IMEI: 352094089712860) +2018/09/16 00:56:28 ruptelaNet.go:276: Sent ACK (client: [::1]:51090, IMEI: 352094089712860) +2018/09/16 00:56:30 ruptelaNet.go:347: data packet length : 978 +2018/09/16 00:56:30 ruptelaNet.go:259: Data received(client: [::1]:51090, IMEI: 352094089712860) +2018/09/16 00:56:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:56:30 ruptelaNet.go:276: Sent ACK (client: [::1]:51090, IMEI: 352094089712860) +2018/09/16 00:56:31 ruptelaNet.go:285: teltonika Close connection(client: [::1]:51090) +2018/09/16 00:57:28 ruptelaNet.go:199: teltonika New connection(client: [::1]:51421) +2018/09/16 00:57:28 ruptelaNet.go:347: data packet length : 15 +2018/09/16 00:57:28 ruptelaNet.go:259: Data received(client: [::1]:51421, IMEI: 352094089712860) +2018/09/16 00:57:28 ruptelaNet.go:276: Sent ACK (client: [::1]:51421, IMEI: 352094089712860) +2018/09/16 00:57:30 ruptelaNet.go:347: data packet length : 978 +2018/09/16 00:57:30 ruptelaNet.go:259: Data received(client: [::1]:51421, IMEI: 352094089712860) +2018/09/16 00:57:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:57:30 ruptelaNet.go:276: Sent ACK (client: [::1]:51421, IMEI: 352094089712860) +2018/09/16 00:57:31 ruptelaNet.go:285: teltonika Close connection(client: [::1]:51421) +2018/09/16 00:58:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:51732) +2018/09/16 00:58:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 00:58:29 ruptelaNet.go:259: Data received(client: [::1]:51732, IMEI: 352094089712860) +2018/09/16 00:58:29 ruptelaNet.go:276: Sent ACK (client: [::1]:51732, IMEI: 352094089712860) +2018/09/16 00:58:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 00:58:31 ruptelaNet.go:259: Data received(client: [::1]:51732, IMEI: 352094089712860) +2018/09/16 00:58:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:58:31 ruptelaNet.go:276: Sent ACK (client: [::1]:51732, IMEI: 352094089712860) +2018/09/16 00:58:31 ruptelaNet.go:285: teltonika Close connection(client: [::1]:51732) +2018/09/16 00:59:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:52035) +2018/09/16 00:59:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 00:59:29 ruptelaNet.go:259: Data received(client: [::1]:52035, IMEI: 352094089712860) +2018/09/16 00:59:29 ruptelaNet.go:276: Sent ACK (client: [::1]:52035, IMEI: 352094089712860) +2018/09/16 00:59:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 00:59:31 ruptelaNet.go:259: Data received(client: [::1]:52035, IMEI: 352094089712860) +2018/09/16 00:59:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 00:59:31 ruptelaNet.go:276: Sent ACK (client: [::1]:52035, IMEI: 352094089712860) +2018/09/16 00:59:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:52035) +2018/09/16 01:00:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:52329) +2018/09/16 01:00:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:00:29 ruptelaNet.go:259: Data received(client: [::1]:52329, IMEI: 352094089712860) +2018/09/16 01:00:29 ruptelaNet.go:276: Sent ACK (client: [::1]:52329, IMEI: 352094089712860) +2018/09/16 01:00:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:00:31 ruptelaNet.go:259: Data received(client: [::1]:52329, IMEI: 352094089712860) +2018/09/16 01:00:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:00:31 ruptelaNet.go:276: Sent ACK (client: [::1]:52329, IMEI: 352094089712860) +2018/09/16 01:00:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:52329) +2018/09/16 01:01:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:52634) +2018/09/16 01:01:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:01:29 ruptelaNet.go:259: Data received(client: [::1]:52634, IMEI: 352094089712860) +2018/09/16 01:01:29 ruptelaNet.go:276: Sent ACK (client: [::1]:52634, IMEI: 352094089712860) +2018/09/16 01:01:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:01:31 ruptelaNet.go:259: Data received(client: [::1]:52634, IMEI: 352094089712860) +2018/09/16 01:01:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:01:31 ruptelaNet.go:276: Sent ACK (client: [::1]:52634, IMEI: 352094089712860) +2018/09/16 01:01:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:52634) +2018/09/16 01:02:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:52947) +2018/09/16 01:02:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:02:29 ruptelaNet.go:259: Data received(client: [::1]:52947, IMEI: 352094089712860) +2018/09/16 01:02:29 ruptelaNet.go:276: Sent ACK (client: [::1]:52947, IMEI: 352094089712860) +2018/09/16 01:02:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:02:31 ruptelaNet.go:259: Data received(client: [::1]:52947, IMEI: 352094089712860) +2018/09/16 01:02:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:02:31 ruptelaNet.go:276: Sent ACK (client: [::1]:52947, IMEI: 352094089712860) +2018/09/16 01:02:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:52947) +2018/09/16 01:03:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:53226) +2018/09/16 01:03:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:03:29 ruptelaNet.go:259: Data received(client: [::1]:53226, IMEI: 352094089712860) +2018/09/16 01:03:29 ruptelaNet.go:276: Sent ACK (client: [::1]:53226, IMEI: 352094089712860) +2018/09/16 01:03:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:03:32 ruptelaNet.go:259: Data received(client: [::1]:53226, IMEI: 352094089712860) +2018/09/16 01:03:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:03:32 ruptelaNet.go:276: Sent ACK (client: [::1]:53226, IMEI: 352094089712860) +2018/09/16 01:03:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53226) +2018/09/16 01:04:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:53402) +2018/09/16 01:04:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:04:29 ruptelaNet.go:259: Data received(client: [::1]:53402, IMEI: 352094089712860) +2018/09/16 01:04:29 ruptelaNet.go:276: Sent ACK (client: [::1]:53402, IMEI: 352094089712860) +2018/09/16 01:04:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:04:31 ruptelaNet.go:259: Data received(client: [::1]:53402, IMEI: 352094089712860) +2018/09/16 01:04:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:04:31 ruptelaNet.go:276: Sent ACK (client: [::1]:53402, IMEI: 352094089712860) +2018/09/16 01:04:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53402) +2018/09/16 01:05:29 ruptelaNet.go:199: teltonika New connection(client: [::1]:53565) +2018/09/16 01:05:29 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:05:29 ruptelaNet.go:259: Data received(client: [::1]:53565, IMEI: 352094089712860) +2018/09/16 01:05:29 ruptelaNet.go:276: Sent ACK (client: [::1]:53565, IMEI: 352094089712860) +2018/09/16 01:05:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:05:31 ruptelaNet.go:259: Data received(client: [::1]:53565, IMEI: 352094089712860) +2018/09/16 01:05:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:05:31 ruptelaNet.go:276: Sent ACK (client: [::1]:53565, IMEI: 352094089712860) +2018/09/16 01:05:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53565) +2018/09/16 01:06:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:53720) +2018/09/16 01:06:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:06:30 ruptelaNet.go:259: Data received(client: [::1]:53720, IMEI: 352094089712860) +2018/09/16 01:06:30 ruptelaNet.go:276: Sent ACK (client: [::1]:53720, IMEI: 352094089712860) +2018/09/16 01:06:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:06:31 ruptelaNet.go:259: Data received(client: [::1]:53720, IMEI: 352094089712860) +2018/09/16 01:06:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:06:32 ruptelaNet.go:276: Sent ACK (client: [::1]:53720, IMEI: 352094089712860) +2018/09/16 01:06:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53720) +2018/09/16 01:07:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:53830) +2018/09/16 01:07:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:07:30 ruptelaNet.go:259: Data received(client: [::1]:53830, IMEI: 352094089712860) +2018/09/16 01:07:30 ruptelaNet.go:276: Sent ACK (client: [::1]:53830, IMEI: 352094089712860) +2018/09/16 01:07:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:07:32 ruptelaNet.go:259: Data received(client: [::1]:53830, IMEI: 352094089712860) +2018/09/16 01:07:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:07:32 ruptelaNet.go:276: Sent ACK (client: [::1]:53830, IMEI: 352094089712860) +2018/09/16 01:07:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53830) +2018/09/16 01:08:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:53944) +2018/09/16 01:08:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:08:30 ruptelaNet.go:259: Data received(client: [::1]:53944, IMEI: 352094089712860) +2018/09/16 01:08:30 ruptelaNet.go:276: Sent ACK (client: [::1]:53944, IMEI: 352094089712860) +2018/09/16 01:08:31 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:08:31 ruptelaNet.go:259: Data received(client: [::1]:53944, IMEI: 352094089712860) +2018/09/16 01:08:31 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:08:31 ruptelaNet.go:276: Sent ACK (client: [::1]:53944, IMEI: 352094089712860) +2018/09/16 01:08:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:53944) +2018/09/16 01:09:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54049) +2018/09/16 01:09:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:09:30 ruptelaNet.go:259: Data received(client: [::1]:54049, IMEI: 352094089712860) +2018/09/16 01:09:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54049, IMEI: 352094089712860) +2018/09/16 01:09:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:09:32 ruptelaNet.go:259: Data received(client: [::1]:54049, IMEI: 352094089712860) +2018/09/16 01:09:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:09:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54049, IMEI: 352094089712860) +2018/09/16 01:09:32 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54049) +2018/09/16 01:10:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54160) +2018/09/16 01:10:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:10:30 ruptelaNet.go:259: Data received(client: [::1]:54160, IMEI: 352094089712860) +2018/09/16 01:10:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54160, IMEI: 352094089712860) +2018/09/16 01:10:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:10:32 ruptelaNet.go:259: Data received(client: [::1]:54160, IMEI: 352094089712860) +2018/09/16 01:10:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:10:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54160, IMEI: 352094089712860) +2018/09/16 01:10:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54160) +2018/09/16 01:11:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54276) +2018/09/16 01:11:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:11:30 ruptelaNet.go:259: Data received(client: [::1]:54276, IMEI: 352094089712860) +2018/09/16 01:11:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54276, IMEI: 352094089712860) +2018/09/16 01:11:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:11:32 ruptelaNet.go:259: Data received(client: [::1]:54276, IMEI: 352094089712860) +2018/09/16 01:11:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:11:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54276, IMEI: 352094089712860) +2018/09/16 01:11:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54276) +2018/09/16 01:12:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54402) +2018/09/16 01:12:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:12:30 ruptelaNet.go:259: Data received(client: [::1]:54402, IMEI: 352094089712860) +2018/09/16 01:12:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54402, IMEI: 352094089712860) +2018/09/16 01:12:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:12:32 ruptelaNet.go:259: Data received(client: [::1]:54402, IMEI: 352094089712860) +2018/09/16 01:12:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:12:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54402, IMEI: 352094089712860) +2018/09/16 01:12:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54402) +2018/09/16 01:13:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54523) +2018/09/16 01:13:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:13:30 ruptelaNet.go:259: Data received(client: [::1]:54523, IMEI: 352094089712860) +2018/09/16 01:13:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54523, IMEI: 352094089712860) +2018/09/16 01:13:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:13:32 ruptelaNet.go:259: Data received(client: [::1]:54523, IMEI: 352094089712860) +2018/09/16 01:13:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:13:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54523, IMEI: 352094089712860) +2018/09/16 01:13:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54523) +2018/09/16 01:14:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:54649) +2018/09/16 01:14:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:14:31 ruptelaNet.go:259: Data received(client: [::1]:54649, IMEI: 352094089712860) +2018/09/16 01:14:31 ruptelaNet.go:276: Sent ACK (client: [::1]:54649, IMEI: 352094089712860) +2018/09/16 01:14:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:14:33 ruptelaNet.go:259: Data received(client: [::1]:54649, IMEI: 352094089712860) +2018/09/16 01:14:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:14:33 ruptelaNet.go:276: Sent ACK (client: [::1]:54649, IMEI: 352094089712860) +2018/09/16 01:14:36 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54649) +2018/09/16 01:15:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:54769) +2018/09/16 01:15:30 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:15:30 ruptelaNet.go:259: Data received(client: [::1]:54769, IMEI: 352094089712860) +2018/09/16 01:15:30 ruptelaNet.go:276: Sent ACK (client: [::1]:54769, IMEI: 352094089712860) +2018/09/16 01:15:32 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:15:32 ruptelaNet.go:259: Data received(client: [::1]:54769, IMEI: 352094089712860) +2018/09/16 01:15:32 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:15:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54769, IMEI: 352094089712860) +2018/09/16 01:15:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54769) +2018/09/16 01:16:32 ruptelaNet.go:199: teltonika New connection(client: [::1]:54884) +2018/09/16 01:16:32 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:16:32 ruptelaNet.go:259: Data received(client: [::1]:54884, IMEI: 352094089712860) +2018/09/16 01:16:32 ruptelaNet.go:276: Sent ACK (client: [::1]:54884, IMEI: 352094089712860) +2018/09/16 01:16:34 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:16:34 ruptelaNet.go:259: Data received(client: [::1]:54884, IMEI: 352094089712860) +2018/09/16 01:16:34 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:16:34 ruptelaNet.go:276: Sent ACK (client: [::1]:54884, IMEI: 352094089712860) +2018/09/16 01:16:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54884) +2018/09/16 01:17:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:54994) +2018/09/16 01:17:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:17:31 ruptelaNet.go:259: Data received(client: [::1]:54994, IMEI: 352094089712860) +2018/09/16 01:17:31 ruptelaNet.go:276: Sent ACK (client: [::1]:54994, IMEI: 352094089712860) +2018/09/16 01:17:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:17:33 ruptelaNet.go:259: Data received(client: [::1]:54994, IMEI: 352094089712860) +2018/09/16 01:17:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:17:33 ruptelaNet.go:276: Sent ACK (client: [::1]:54994, IMEI: 352094089712860) +2018/09/16 01:17:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:54994) +2018/09/16 01:18:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:55107) +2018/09/16 01:18:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:18:31 ruptelaNet.go:259: Data received(client: [::1]:55107, IMEI: 352094089712860) +2018/09/16 01:18:31 ruptelaNet.go:276: Sent ACK (client: [::1]:55107, IMEI: 352094089712860) +2018/09/16 01:18:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:18:33 ruptelaNet.go:259: Data received(client: [::1]:55107, IMEI: 352094089712860) +2018/09/16 01:18:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:18:33 ruptelaNet.go:276: Sent ACK (client: [::1]:55107, IMEI: 352094089712860) +2018/09/16 01:18:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55107) +2018/09/16 01:19:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:55231) +2018/09/16 01:19:34 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:19:34 ruptelaNet.go:259: Data received(client: [::1]:55231, IMEI: 352094089712860) +2018/09/16 01:19:34 ruptelaNet.go:276: Sent ACK (client: [::1]:55231, IMEI: 352094089712860) +2018/09/16 01:19:39 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:19:39 ruptelaNet.go:259: Data received(client: [::1]:55231, IMEI: 352094089712860) +2018/09/16 01:19:39 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:19:39 ruptelaNet.go:276: Sent ACK (client: [::1]:55231, IMEI: 352094089712860) +2018/09/16 01:19:40 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55231) +2018/09/16 01:20:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:55347) +2018/09/16 01:20:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:20:31 ruptelaNet.go:259: Data received(client: [::1]:55347, IMEI: 352094089712860) +2018/09/16 01:20:31 ruptelaNet.go:276: Sent ACK (client: [::1]:55347, IMEI: 352094089712860) +2018/09/16 01:20:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:20:33 ruptelaNet.go:259: Data received(client: [::1]:55347, IMEI: 352094089712860) +2018/09/16 01:20:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:20:33 ruptelaNet.go:276: Sent ACK (client: [::1]:55347, IMEI: 352094089712860) +2018/09/16 01:20:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55347) +2018/09/16 01:21:08 ruptelaNet.go:199: teltonika New connection(client: [::1]:55418) +2018/09/16 01:21:24 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55418) +2018/09/16 01:21:24 ruptelaNet.go:199: teltonika New connection(client: [::1]:55448) +2018/09/16 01:21:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:55462) +2018/09/16 01:21:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:21:31 ruptelaNet.go:259: Data received(client: [::1]:55462, IMEI: 352094089712860) +2018/09/16 01:21:31 ruptelaNet.go:276: Sent ACK (client: [::1]:55462, IMEI: 352094089712860) +2018/09/16 01:21:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:21:33 ruptelaNet.go:259: Data received(client: [::1]:55462, IMEI: 352094089712860) +2018/09/16 01:21:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:21:33 ruptelaNet.go:276: Sent ACK (client: [::1]:55462, IMEI: 352094089712860) +2018/09/16 01:21:33 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55462) +2018/09/16 01:21:40 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55448) +2018/09/16 01:22:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:55573) +2018/09/16 01:22:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:22:31 ruptelaNet.go:259: Data received(client: [::1]:55573, IMEI: 352094089712860) +2018/09/16 01:22:31 ruptelaNet.go:276: Sent ACK (client: [::1]:55573, IMEI: 352094089712860) +2018/09/16 01:22:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:22:33 ruptelaNet.go:259: Data received(client: [::1]:55573, IMEI: 352094089712860) +2018/09/16 01:22:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:22:33 ruptelaNet.go:276: Sent ACK (client: [::1]:55573, IMEI: 352094089712860) +2018/09/16 01:22:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55573) +2018/09/16 01:23:31 ruptelaNet.go:199: teltonika New connection(client: [::1]:55688) +2018/09/16 01:23:31 ruptelaNet.go:347: data packet length : 15 +2018/09/16 01:23:31 ruptelaNet.go:259: Data received(client: [::1]:55688, IMEI: 352094089712860) +2018/09/16 01:23:31 ruptelaNet.go:276: Sent ACK (client: [::1]:55688, IMEI: 352094089712860) +2018/09/16 01:23:33 ruptelaNet.go:347: data packet length : 978 +2018/09/16 01:23:33 ruptelaNet.go:259: Data received(client: [::1]:55688, IMEI: 352094089712860) +2018/09/16 01:23:33 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:23:33 ruptelaNet.go:276: Sent ACK (client: [::1]:55688, IMEI: 352094089712860) +2018/09/16 01:23:34 ruptelaNet.go:285: teltonika Close connection(client: [::1]:55688) +2018/09/16 01:23:45 ruptelaNet.go:180: Signal: interrupt +2018/09/16 01:40:09 deviceServer.go:89: PID file will be created +2018/09/16 01:40:09 deviceServer.go:92: PID: 12644 +2018/09/16 01:40:09 deviceServer.go:98: PID file created +2018/09/16 01:40:09 ruptelaNet.go:174: listening: [::]:4000 +2018/09/16 01:40:33 ruptelaNet.go:199: teltonika New connection(client: [::1]:60118) +2018/09/16 01:40:33 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:40:33 ruptelaNet.go:259: Data received(client: [::1]:60118, IMEI: 352094089712860) +2018/09/16 01:40:33 ruptelaNet.go:276: Sent ACK (client: [::1]:60118, IMEI: 352094089712860) +2018/09/16 01:40:35 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:40:35 ruptelaNet.go:259: Data received(client: [::1]:60118, IMEI: 352094089712860) +2018/09/16 01:40:35 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:40:35 ruptelaNet.go:276: Sent ACK (client: [::1]:60118, IMEI: 352094089712860) +2018/09/16 01:40:36 ruptelaNet.go:285: teltonika Close connection(client: [::1]:60118) +2018/09/16 01:40:38 ruptelaNet.go:180: Signal: interrupt +2018/09/16 01:45:56 deviceServer.go:89: PID file will be created +2018/09/16 01:45:56 deviceServer.go:92: PID: 12696 +2018/09/16 01:45:56 deviceServer.go:98: PID file created +2018/09/16 01:45:56 ruptelaNet.go:174: listening: [::]:4000 +2018/09/16 01:46:33 ruptelaNet.go:199: teltonika New connection(client: [::1]:61997) +2018/09/16 01:46:33 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:46:33 ruptelaNet.go:259: Data received(client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 01:46:33 ruptelaNet.go:276: Sent ACK (client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 01:46:35 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:46:35 ruptelaNet.go:259: Data received(client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 01:46:35 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:46:35 ruptelaNet.go:276: Sent ACK (client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 01:46:36 ruptelaNet.go:285: teltonika Close connection(client: [::1]:61997) +2018/09/16 01:46:44 ruptelaNet.go:199: teltonika New connection(client: [::1]:62049) +2018/09/16 01:46:45 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:46:45 ruptelaNet.go:259: Data received(client: [::1]:62049, IMEI: 352094087982671) +2018/09/16 01:46:45 ruptelaNet.go:276: Sent ACK (client: [::1]:62049, IMEI: 352094087982671) +2018/09/16 01:46:48 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:46:48 ruptelaNet.go:259: Data received(client: [::1]:62049, IMEI: 352094087982671) +2018/09/16 01:46:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:46:48 ruptelaNet.go:276: Sent ACK (client: [::1]:62049, IMEI: 352094087982671) +2018/09/16 01:46:50 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62049) +2018/09/16 01:47:14 ruptelaNet.go:199: teltonika New connection(client: [::1]:62207) +2018/09/16 01:47:15 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:47:15 ruptelaNet.go:259: Data received(client: [::1]:62207, IMEI: 352094087982671) +2018/09/16 01:47:15 ruptelaNet.go:276: Sent ACK (client: [::1]:62207, IMEI: 352094087982671) +2018/09/16 01:47:18 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:47:18 ruptelaNet.go:259: Data received(client: [::1]:62207, IMEI: 352094087982671) +2018/09/16 01:47:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:47:18 ruptelaNet.go:276: Sent ACK (client: [::1]:62207, IMEI: 352094087982671) +2018/09/16 01:47:20 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62207) +2018/09/16 01:47:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:62301) +2018/09/16 01:47:34 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:47:34 ruptelaNet.go:259: Data received(client: [::1]:62301, IMEI: 352094089712860) +2018/09/16 01:47:34 ruptelaNet.go:276: Sent ACK (client: [::1]:62301, IMEI: 352094089712860) +2018/09/16 01:47:36 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:47:36 ruptelaNet.go:259: Data received(client: [::1]:62301, IMEI: 352094089712860) +2018/09/16 01:47:36 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:47:36 ruptelaNet.go:276: Sent ACK (client: [::1]:62301, IMEI: 352094089712860) +2018/09/16 01:47:36 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62301) +2018/09/16 01:47:44 ruptelaNet.go:199: teltonika New connection(client: [::1]:62357) +2018/09/16 01:47:45 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:47:45 ruptelaNet.go:259: Data received(client: [::1]:62357, IMEI: 352094087982671) +2018/09/16 01:47:45 ruptelaNet.go:276: Sent ACK (client: [::1]:62357, IMEI: 352094087982671) +2018/09/16 01:47:48 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:47:48 ruptelaNet.go:259: Data received(client: [::1]:62357, IMEI: 352094087982671) +2018/09/16 01:47:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:47:48 ruptelaNet.go:276: Sent ACK (client: [::1]:62357, IMEI: 352094087982671) +2018/09/16 01:47:50 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62357) +2018/09/16 01:48:13 ruptelaNet.go:199: teltonika New connection(client: [::1]:62507) +2018/09/16 01:48:14 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:48:14 ruptelaNet.go:259: Data received(client: [::1]:62507, IMEI: 352094087982671) +2018/09/16 01:48:14 ruptelaNet.go:276: Sent ACK (client: [::1]:62507, IMEI: 352094087982671) +2018/09/16 01:48:17 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:48:17 ruptelaNet.go:259: Data received(client: [::1]:62507, IMEI: 352094087982671) +2018/09/16 01:48:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:48:17 ruptelaNet.go:276: Sent ACK (client: [::1]:62507, IMEI: 352094087982671) +2018/09/16 01:48:19 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62507) +2018/09/16 01:48:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:62615) +2018/09/16 01:48:34 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:48:34 ruptelaNet.go:259: Data received(client: [::1]:62615, IMEI: 352094089712860) +2018/09/16 01:48:34 ruptelaNet.go:276: Sent ACK (client: [::1]:62615, IMEI: 352094089712860) +2018/09/16 01:48:36 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:48:36 ruptelaNet.go:259: Data received(client: [::1]:62615, IMEI: 352094089712860) +2018/09/16 01:48:36 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:48:36 ruptelaNet.go:276: Sent ACK (client: [::1]:62615, IMEI: 352094089712860) +2018/09/16 01:48:37 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62615) +2018/09/16 01:48:43 ruptelaNet.go:199: teltonika New connection(client: [::1]:62662) +2018/09/16 01:48:44 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:48:44 ruptelaNet.go:259: Data received(client: [::1]:62662, IMEI: 352094087982671) +2018/09/16 01:48:44 ruptelaNet.go:276: Sent ACK (client: [::1]:62662, IMEI: 352094087982671) +2018/09/16 01:48:47 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:48:47 ruptelaNet.go:259: Data received(client: [::1]:62662, IMEI: 352094087982671) +2018/09/16 01:48:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:48:47 ruptelaNet.go:276: Sent ACK (client: [::1]:62662, IMEI: 352094087982671) +2018/09/16 01:48:49 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62662) +2018/09/16 01:49:13 ruptelaNet.go:199: teltonika New connection(client: [::1]:62816) +2018/09/16 01:49:14 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:49:14 ruptelaNet.go:259: Data received(client: [::1]:62816, IMEI: 352094087982671) +2018/09/16 01:49:14 ruptelaNet.go:276: Sent ACK (client: [::1]:62816, IMEI: 352094087982671) +2018/09/16 01:49:17 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:49:17 ruptelaNet.go:259: Data received(client: [::1]:62816, IMEI: 352094087982671) +2018/09/16 01:49:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:49:17 ruptelaNet.go:276: Sent ACK (client: [::1]:62816, IMEI: 352094087982671) +2018/09/16 01:49:19 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62816) +2018/09/16 01:49:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:62924) +2018/09/16 01:49:34 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:49:34 ruptelaNet.go:259: Data received(client: [::1]:62924, IMEI: 352094089712860) +2018/09/16 01:49:34 ruptelaNet.go:276: Sent ACK (client: [::1]:62924, IMEI: 352094089712860) +2018/09/16 01:49:36 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:49:36 ruptelaNet.go:259: Data received(client: [::1]:62924, IMEI: 352094089712860) +2018/09/16 01:49:36 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:49:36 ruptelaNet.go:276: Sent ACK (client: [::1]:62924, IMEI: 352094089712860) +2018/09/16 01:49:37 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62924) +2018/09/16 01:49:43 ruptelaNet.go:199: teltonika New connection(client: [::1]:62972) +2018/09/16 01:49:44 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:49:44 ruptelaNet.go:259: Data received(client: [::1]:62972, IMEI: 352094087982671) +2018/09/16 01:49:44 ruptelaNet.go:276: Sent ACK (client: [::1]:62972, IMEI: 352094087982671) +2018/09/16 01:49:48 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:49:48 ruptelaNet.go:259: Data received(client: [::1]:62972, IMEI: 352094087982671) +2018/09/16 01:49:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:49:48 ruptelaNet.go:276: Sent ACK (client: [::1]:62972, IMEI: 352094087982671) +2018/09/16 01:49:50 ruptelaNet.go:285: teltonika Close connection(client: [::1]:62972) +2018/09/16 01:50:13 ruptelaNet.go:199: teltonika New connection(client: [::1]:63127) +2018/09/16 01:50:14 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:50:14 ruptelaNet.go:259: Data received(client: [::1]:63127, IMEI: 352094087982671) +2018/09/16 01:50:14 ruptelaNet.go:276: Sent ACK (client: [::1]:63127, IMEI: 352094087982671) +2018/09/16 01:50:17 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:50:17 ruptelaNet.go:259: Data received(client: [::1]:63127, IMEI: 352094087982671) +2018/09/16 01:50:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:50:17 ruptelaNet.go:276: Sent ACK (client: [::1]:63127, IMEI: 352094087982671) +2018/09/16 01:50:19 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63127) +2018/09/16 01:50:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:63236) +2018/09/16 01:50:34 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:50:34 ruptelaNet.go:259: Data received(client: [::1]:63236, IMEI: 352094089712860) +2018/09/16 01:50:34 ruptelaNet.go:276: Sent ACK (client: [::1]:63236, IMEI: 352094089712860) +2018/09/16 01:50:36 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:50:36 ruptelaNet.go:259: Data received(client: [::1]:63236, IMEI: 352094089712860) +2018/09/16 01:50:36 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:50:36 ruptelaNet.go:276: Sent ACK (client: [::1]:63236, IMEI: 352094089712860) +2018/09/16 01:50:37 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63236) +2018/09/16 01:50:42 ruptelaNet.go:199: teltonika New connection(client: [::1]:63276) +2018/09/16 01:50:43 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:50:43 ruptelaNet.go:259: Data received(client: [::1]:63276, IMEI: 352094087982671) +2018/09/16 01:50:43 ruptelaNet.go:276: Sent ACK (client: [::1]:63276, IMEI: 352094087982671) +2018/09/16 01:50:46 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:50:46 ruptelaNet.go:259: Data received(client: [::1]:63276, IMEI: 352094087982671) +2018/09/16 01:50:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:50:46 ruptelaNet.go:276: Sent ACK (client: [::1]:63276, IMEI: 352094087982671) +2018/09/16 01:50:48 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63276) +2018/09/16 01:51:12 ruptelaNet.go:199: teltonika New connection(client: [::1]:63433) +2018/09/16 01:51:13 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:51:13 ruptelaNet.go:259: Data received(client: [::1]:63433, IMEI: 352094087982671) +2018/09/16 01:51:13 ruptelaNet.go:276: Sent ACK (client: [::1]:63433, IMEI: 352094087982671) +2018/09/16 01:51:16 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:51:16 ruptelaNet.go:259: Data received(client: [::1]:63433, IMEI: 352094087982671) +2018/09/16 01:51:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:51:16 ruptelaNet.go:276: Sent ACK (client: [::1]:63433, IMEI: 352094087982671) +2018/09/16 01:51:18 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63433) +2018/09/16 01:51:34 ruptelaNet.go:199: teltonika New connection(client: [::1]:63547) +2018/09/16 01:51:34 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:51:34 ruptelaNet.go:259: Data received(client: [::1]:63547, IMEI: 352094089712860) +2018/09/16 01:51:34 ruptelaNet.go:276: Sent ACK (client: [::1]:63547, IMEI: 352094089712860) +2018/09/16 01:51:36 ruptelaNet.go:349: data packet length : 978 +2018/09/16 01:51:36 ruptelaNet.go:259: Data received(client: [::1]:63547, IMEI: 352094089712860) +2018/09/16 01:51:36 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 01:51:36 ruptelaNet.go:276: Sent ACK (client: [::1]:63547, IMEI: 352094089712860) +2018/09/16 01:51:37 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63547) +2018/09/16 01:51:41 ruptelaNet.go:199: teltonika New connection(client: [::1]:63581) +2018/09/16 01:51:42 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:51:42 ruptelaNet.go:259: Data received(client: [::1]:63581, IMEI: 352094087982671) +2018/09/16 01:51:42 ruptelaNet.go:276: Sent ACK (client: [::1]:63581, IMEI: 352094087982671) +2018/09/16 01:51:45 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:51:45 ruptelaNet.go:259: Data received(client: [::1]:63581, IMEI: 352094087982671) +2018/09/16 01:51:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:51:45 ruptelaNet.go:276: Sent ACK (client: [::1]:63581, IMEI: 352094087982671) +2018/09/16 01:51:47 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63581) +2018/09/16 01:52:11 ruptelaNet.go:199: teltonika New connection(client: [::1]:63699) +2018/09/16 01:52:12 ruptelaNet.go:349: data packet length : 15 +2018/09/16 01:52:12 ruptelaNet.go:259: Data received(client: [::1]:63699, IMEI: 352094087982671) +2018/09/16 01:52:12 ruptelaNet.go:276: Sent ACK (client: [::1]:63699, IMEI: 352094087982671) +2018/09/16 01:52:15 ruptelaNet.go:349: data packet length : 427 +2018/09/16 01:52:15 ruptelaNet.go:259: Data received(client: [::1]:63699, IMEI: 352094087982671) +2018/09/16 01:52:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 01:52:15 ruptelaNet.go:276: Sent ACK (client: [::1]:63699, IMEI: 352094087982671) +2018/09/16 01:52:17 ruptelaNet.go:285: teltonika Close connection(client: [::1]:63699) +2018/09/16 01:52:19 ruptelaNet.go:180: Signal: interrupt +2018/09/16 02:17:32 deviceServer.go:89: PID file will be created +2018/09/16 02:17:32 deviceServer.go:92: PID: 13096 +2018/09/16 02:17:32 deviceServer.go:98: PID file created +2018/09/16 02:17:32 ruptelaNet.go:174: listening: [::]:4000 +2018/09/16 02:17:35 ruptelaNet.go:199: teltonika New connection(client: [::1]:51047) +2018/09/16 02:17:36 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:17:36 ruptelaNet.go:259: Data received(client: [::1]:51047, IMEI: 352094087982671) +2018/09/16 02:17:36 ruptelaNet.go:276: Sent ACK (client: [::1]:51047, IMEI: 352094087982671) +2018/09/16 02:17:37 ruptelaNet.go:199: teltonika New connection(client: [::1]:51053) +2018/09/16 02:17:37 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:17:37 ruptelaNet.go:259: Data received(client: [::1]:51053, IMEI: 352094089712860) +2018/09/16 02:17:37 ruptelaNet.go:276: Sent ACK (client: [::1]:51053, IMEI: 352094089712860) +2018/09/16 02:17:38 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:17:38 ruptelaNet.go:259: Data received(client: [::1]:51047, IMEI: 352094087982671) +2018/09/16 02:17:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:17:38 ruptelaNet.go:276: Sent ACK (client: [::1]:51047, IMEI: 352094087982671) +2018/09/16 02:17:39 ruptelaNet.go:353: data packet length : 978 +2018/09/16 02:17:39 ruptelaNet.go:259: Data received(client: [::1]:51053, IMEI: 352094089712860) +2018/09/16 02:17:39 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:17:39 ruptelaNet.go:276: Sent ACK (client: [::1]:51053, IMEI: 352094089712860) +2018/09/16 02:17:40 ruptelaNet.go:289: teltonika Close connection with duration 2.762724477 s (client: [::1]:51053) +2018/09/16 02:17:41 ruptelaNet.go:289: teltonika Close connection with duration 6.061902747 s (client: [::1]:51047) +2018/09/16 02:18:03 ruptelaNet.go:199: teltonika New connection(client: [::1]:51117) +2018/09/16 02:18:04 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:18:04 ruptelaNet.go:259: Data received(client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 02:18:04 ruptelaNet.go:276: Sent ACK (client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 02:18:07 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:18:07 ruptelaNet.go:259: Data received(client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 02:18:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:18:07 ruptelaNet.go:276: Sent ACK (client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 02:18:09 ruptelaNet.go:289: teltonika Close connection with duration 6.141166679 s (client: [::1]:51117) +2018/09/16 02:18:32 ruptelaNet.go:199: teltonika New connection(client: [::1]:51179) +2018/09/16 02:18:33 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:18:33 ruptelaNet.go:259: Data received(client: [::1]:51179, IMEI: 352094087982671) +2018/09/16 02:18:33 ruptelaNet.go:276: Sent ACK (client: [::1]:51179, IMEI: 352094087982671) +2018/09/16 02:18:36 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:18:36 ruptelaNet.go:259: Data received(client: [::1]:51179, IMEI: 352094087982671) +2018/09/16 02:18:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:18:36 ruptelaNet.go:276: Sent ACK (client: [::1]:51179, IMEI: 352094087982671) +2018/09/16 02:18:37 ruptelaNet.go:199: teltonika New connection(client: [::1]:51191) +2018/09/16 02:18:37 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:18:37 ruptelaNet.go:259: Data received(client: [::1]:51191, IMEI: 352094089712860) +2018/09/16 02:18:37 ruptelaNet.go:276: Sent ACK (client: [::1]:51191, IMEI: 352094089712860) +2018/09/16 02:18:38 ruptelaNet.go:289: teltonika Close connection with duration 6.026642737 s (client: [::1]:51179) +2018/09/16 02:18:39 ruptelaNet.go:353: data packet length : 978 +2018/09/16 02:18:39 ruptelaNet.go:259: Data received(client: [::1]:51191, IMEI: 352094089712860) +2018/09/16 02:18:39 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:18:39 ruptelaNet.go:276: Sent ACK (client: [::1]:51191, IMEI: 352094089712860) +2018/09/16 02:18:40 ruptelaNet.go:289: teltonika Close connection with duration 3.144702962 s (client: [::1]:51191) +2018/09/16 02:19:01 ruptelaNet.go:199: teltonika New connection(client: [::1]:51239) +2018/09/16 02:19:02 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:19:02 ruptelaNet.go:259: Data received(client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 02:19:02 ruptelaNet.go:276: Sent ACK (client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 02:19:05 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:19:05 ruptelaNet.go:259: Data received(client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 02:19:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:19:05 ruptelaNet.go:276: Sent ACK (client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 02:19:07 ruptelaNet.go:289: teltonika Close connection with duration 6.039040345 s (client: [::1]:51239) +2018/09/16 02:19:30 ruptelaNet.go:199: teltonika New connection(client: [::1]:51298) +2018/09/16 02:19:31 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:19:31 ruptelaNet.go:259: Data received(client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 02:19:31 ruptelaNet.go:276: Sent ACK (client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 02:19:34 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:19:34 ruptelaNet.go:259: Data received(client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 02:19:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:19:34 ruptelaNet.go:276: Sent ACK (client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 02:19:36 ruptelaNet.go:289: teltonika Close connection with duration 6.233994019 s (client: [::1]:51298) +2018/09/16 02:19:39 ruptelaNet.go:199: teltonika New connection(client: [::1]:51317) +2018/09/16 02:19:40 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:19:40 ruptelaNet.go:259: Data received(client: [::1]:51317, IMEI: 352094089712860) +2018/09/16 02:19:40 ruptelaNet.go:276: Sent ACK (client: [::1]:51317, IMEI: 352094089712860) +2018/09/16 02:19:43 ruptelaNet.go:353: data packet length : 978 +2018/09/16 02:19:43 ruptelaNet.go:259: Data received(client: [::1]:51317, IMEI: 352094089712860) +2018/09/16 02:19:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:19:43 ruptelaNet.go:276: Sent ACK (client: [::1]:51317, IMEI: 352094089712860) +2018/09/16 02:19:44 ruptelaNet.go:289: teltonika Close connection with duration 5.012382417 s (client: [::1]:51317) +2018/09/16 02:19:59 ruptelaNet.go:199: teltonika New connection(client: [::1]:51358) +2018/09/16 02:20:00 ruptelaNet.go:353: data packet length : 15 +2018/09/16 02:20:00 ruptelaNet.go:259: Data received(client: [::1]:51358, IMEI: 352094087982671) +2018/09/16 02:20:00 ruptelaNet.go:276: Sent ACK (client: [::1]:51358, IMEI: 352094087982671) +2018/09/16 02:20:03 ruptelaNet.go:353: data packet length : 427 +2018/09/16 02:20:03 ruptelaNet.go:259: Data received(client: [::1]:51358, IMEI: 352094087982671) +2018/09/16 02:20:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:20:03 ruptelaNet.go:276: Sent ACK (client: [::1]:51358, IMEI: 352094087982671) +2018/09/16 02:20:05 ruptelaNet.go:289: teltonika Close connection with duration 5.934158028 s (client: [::1]:51358) +2018/09/16 02:20:18 ruptelaNet.go:180: Signal: interrupt +2018/09/16 02:20:43 deviceServer.go:89: PID file will be created +2018/09/16 02:20:43 deviceServer.go:92: PID: 13164 +2018/09/16 02:20:43 deviceServer.go:98: PID file created +2018/09/16 02:20:43 ruptelaNet.go:175: listening: [::]:4000 +2018/09/16 02:20:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:51468) +2018/09/16 02:20:47 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:20:47 ruptelaNet.go:260: Data received(client: [::1]:51468, IMEI: 352094087982671) +2018/09/16 02:20:47 ruptelaNet.go:277: Sent ACK (client: [::1]:51468, IMEI: 352094087982671) +2018/09/16 02:20:50 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:20:50 ruptelaNet.go:260: Data received(client: [::1]:51468, IMEI: 352094087982671) +2018/09/16 02:20:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:20:50 ruptelaNet.go:277: Sent ACK (client: [::1]:51468, IMEI: 352094087982671) +2018/09/16 02:20:52 ruptelaNet.go:290: teltonika Close connection with duration 5.87 s (client: [::1]:51468) +2018/09/16 02:21:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:51534) +2018/09/16 02:21:16 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:21:16 ruptelaNet.go:260: Data received(client: [::1]:51534, IMEI: 352094087982671) +2018/09/16 02:21:16 ruptelaNet.go:277: Sent ACK (client: [::1]:51534, IMEI: 352094087982671) +2018/09/16 02:21:19 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:21:19 ruptelaNet.go:260: Data received(client: [::1]:51534, IMEI: 352094087982671) +2018/09/16 02:21:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:21:19 ruptelaNet.go:277: Sent ACK (client: [::1]:51534, IMEI: 352094087982671) +2018/09/16 02:21:21 ruptelaNet.go:290: teltonika Close connection with duration 6.14 s (client: [::1]:51534) +2018/09/16 02:21:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:51599) +2018/09/16 02:21:44 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:21:44 ruptelaNet.go:260: Data received(client: [::1]:51599, IMEI: 352094089712860) +2018/09/16 02:21:44 ruptelaNet.go:277: Sent ACK (client: [::1]:51599, IMEI: 352094089712860) +2018/09/16 02:21:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:51600) +2018/09/16 02:21:45 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:21:45 ruptelaNet.go:260: Data received(client: [::1]:51600, IMEI: 352094087982671) +2018/09/16 02:21:45 ruptelaNet.go:277: Sent ACK (client: [::1]:51600, IMEI: 352094087982671) +2018/09/16 02:21:46 ruptelaNet.go:354: data packet length : 978 +2018/09/16 02:21:46 ruptelaNet.go:260: Data received(client: [::1]:51599, IMEI: 352094089712860) +2018/09/16 02:21:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:21:46 ruptelaNet.go:277: Sent ACK (client: [::1]:51599, IMEI: 352094089712860) +2018/09/16 02:21:47 ruptelaNet.go:290: teltonika Close connection with duration 2.76 s (client: [::1]:51599) +2018/09/16 02:21:48 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:21:48 ruptelaNet.go:260: Data received(client: [::1]:51600, IMEI: 352094087982671) +2018/09/16 02:21:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:21:48 ruptelaNet.go:277: Sent ACK (client: [::1]:51600, IMEI: 352094087982671) +2018/09/16 02:21:50 ruptelaNet.go:290: teltonika Close connection with duration 5.69 s (client: [::1]:51600) +2018/09/16 02:22:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:51670) +2018/09/16 02:22:14 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:22:14 ruptelaNet.go:260: Data received(client: [::1]:51670, IMEI: 352094087982671) +2018/09/16 02:22:14 ruptelaNet.go:277: Sent ACK (client: [::1]:51670, IMEI: 352094087982671) +2018/09/16 02:22:17 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:22:17 ruptelaNet.go:260: Data received(client: [::1]:51670, IMEI: 352094087982671) +2018/09/16 02:22:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:22:17 ruptelaNet.go:277: Sent ACK (client: [::1]:51670, IMEI: 352094087982671) +2018/09/16 02:22:19 ruptelaNet.go:290: teltonika Close connection with duration 6.04 s (client: [::1]:51670) +2018/09/16 02:22:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:51730) +2018/09/16 02:22:38 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:22:38 ruptelaNet.go:260: Data received(client: [::1]:51730, IMEI: 352094089712860) +2018/09/16 02:22:38 ruptelaNet.go:277: Sent ACK (client: [::1]:51730, IMEI: 352094089712860) +2018/09/16 02:22:40 ruptelaNet.go:354: data packet length : 978 +2018/09/16 02:22:40 ruptelaNet.go:260: Data received(client: [::1]:51730, IMEI: 352094089712860) +2018/09/16 02:22:40 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:22:40 ruptelaNet.go:277: Sent ACK (client: [::1]:51730, IMEI: 352094089712860) +2018/09/16 02:22:42 ruptelaNet.go:290: teltonika Close connection with duration 3.89 s (client: [::1]:51730) +2018/09/16 02:22:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:51741) +2018/09/16 02:22:43 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:22:43 ruptelaNet.go:260: Data received(client: [::1]:51741, IMEI: 352094087982671) +2018/09/16 02:22:43 ruptelaNet.go:277: Sent ACK (client: [::1]:51741, IMEI: 352094087982671) +2018/09/16 02:22:46 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:22:46 ruptelaNet.go:260: Data received(client: [::1]:51741, IMEI: 352094087982671) +2018/09/16 02:22:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:22:46 ruptelaNet.go:277: Sent ACK (client: [::1]:51741, IMEI: 352094087982671) +2018/09/16 02:22:48 ruptelaNet.go:290: teltonika Close connection with duration 6.35 s (client: [::1]:51741) +2018/09/16 02:23:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:51806) +2018/09/16 02:23:12 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:23:12 ruptelaNet.go:260: Data received(client: [::1]:51806, IMEI: 352094087982671) +2018/09/16 02:23:12 ruptelaNet.go:277: Sent ACK (client: [::1]:51806, IMEI: 352094087982671) +2018/09/16 02:23:15 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:23:15 ruptelaNet.go:260: Data received(client: [::1]:51806, IMEI: 352094087982671) +2018/09/16 02:23:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:23:15 ruptelaNet.go:277: Sent ACK (client: [::1]:51806, IMEI: 352094087982671) +2018/09/16 02:23:17 ruptelaNet.go:290: teltonika Close connection with duration 6.04 s (client: [::1]:51806) +2018/09/16 02:23:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:51862) +2018/09/16 02:23:37 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:23:37 ruptelaNet.go:260: Data received(client: [::1]:51862, IMEI: 352094089712860) +2018/09/16 02:23:37 ruptelaNet.go:277: Sent ACK (client: [::1]:51862, IMEI: 352094089712860) +2018/09/16 02:23:39 ruptelaNet.go:354: data packet length : 978 +2018/09/16 02:23:39 ruptelaNet.go:260: Data received(client: [::1]:51862, IMEI: 352094089712860) +2018/09/16 02:23:39 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:23:39 ruptelaNet.go:277: Sent ACK (client: [::1]:51862, IMEI: 352094089712860) +2018/09/16 02:23:40 ruptelaNet.go:290: teltonika Close connection with duration 2.76 s (client: [::1]:51862) +2018/09/16 02:23:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:51869) +2018/09/16 02:23:41 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:23:41 ruptelaNet.go:260: Data received(client: [::1]:51869, IMEI: 352094087982671) +2018/09/16 02:23:41 ruptelaNet.go:277: Sent ACK (client: [::1]:51869, IMEI: 352094087982671) +2018/09/16 02:23:44 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:23:44 ruptelaNet.go:260: Data received(client: [::1]:51869, IMEI: 352094087982671) +2018/09/16 02:23:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:23:44 ruptelaNet.go:277: Sent ACK (client: [::1]:51869, IMEI: 352094087982671) +2018/09/16 02:23:46 ruptelaNet.go:290: teltonika Close connection with duration 5.93 s (client: [::1]:51869) +2018/09/16 02:24:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:51939) +2018/09/16 02:24:10 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:24:10 ruptelaNet.go:260: Data received(client: [::1]:51939, IMEI: 352094087982671) +2018/09/16 02:24:10 ruptelaNet.go:277: Sent ACK (client: [::1]:51939, IMEI: 352094087982671) +2018/09/16 02:24:13 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:24:13 ruptelaNet.go:260: Data received(client: [::1]:51939, IMEI: 352094087982671) +2018/09/16 02:24:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:24:13 ruptelaNet.go:277: Sent ACK (client: [::1]:51939, IMEI: 352094087982671) +2018/09/16 02:24:15 ruptelaNet.go:290: teltonika Close connection with duration 5.94 s (client: [::1]:51939) +2018/09/16 02:24:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:52009) +2018/09/16 02:24:39 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:24:39 ruptelaNet.go:260: Data received(client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 02:24:39 ruptelaNet.go:277: Sent ACK (client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 02:24:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:52015) +2018/09/16 02:24:40 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:24:40 ruptelaNet.go:260: Data received(client: [::1]:52015, IMEI: 352094089712860) +2018/09/16 02:24:40 ruptelaNet.go:277: Sent ACK (client: [::1]:52015, IMEI: 352094089712860) +2018/09/16 02:24:42 ruptelaNet.go:354: data packet length : 978 +2018/09/16 02:24:42 ruptelaNet.go:260: Data received(client: [::1]:52015, IMEI: 352094089712860) +2018/09/16 02:24:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:24:42 ruptelaNet.go:277: Sent ACK (client: [::1]:52015, IMEI: 352094089712860) +2018/09/16 02:24:42 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:24:42 ruptelaNet.go:260: Data received(client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 02:24:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:24:42 ruptelaNet.go:277: Sent ACK (client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 02:24:43 ruptelaNet.go:290: teltonika Close connection with duration 2.87 s (client: [::1]:52015) +2018/09/16 02:24:44 ruptelaNet.go:290: teltonika Close connection with duration 6.34 s (client: [::1]:52009) +2018/09/16 02:25:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:52079) +2018/09/16 02:25:08 ruptelaNet.go:354: data packet length : 15 +2018/09/16 02:25:08 ruptelaNet.go:260: Data received(client: [::1]:52079, IMEI: 352094087982671) +2018/09/16 02:25:08 ruptelaNet.go:277: Sent ACK (client: [::1]:52079, IMEI: 352094087982671) +2018/09/16 02:25:11 ruptelaNet.go:354: data packet length : 427 +2018/09/16 02:25:11 ruptelaNet.go:260: Data received(client: [::1]:52079, IMEI: 352094087982671) +2018/09/16 02:25:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:25:11 ruptelaNet.go:277: Sent ACK (client: [::1]:52079, IMEI: 352094087982671) +2018/09/16 02:25:13 ruptelaNet.go:290: teltonika Close connection with duration 6.04 s (client: [::1]:52079) +2018/09/16 02:25:36 ruptelaNet.go:181: Signal: interrupt +2018/09/16 02:25:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:52142) +2018/09/16 02:25:36 ruptelaNet.go:290: teltonika Close connection with duration 0 s (client: [::1]:52142) +2018/09/16 02:28:34 deviceServer.go:89: PID file will be created +2018/09/16 02:28:34 deviceServer.go:92: PID: 13270 +2018/09/16 02:28:34 deviceServer.go:98: PID file created +2018/09/16 02:28:34 ruptelaNet.go:175: listening: [::]:4000 +2018/09/16 02:28:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:52583) +2018/09/16 02:28:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:28:38 ruptelaNet.go:261: Data received(client: [::1]:52583, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:28:38 ruptelaNet.go:278: Sent ACK (client: [::1]:52583, IMEI: 352094087982671) +2018/09/16 02:28:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:52587) +2018/09/16 02:28:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:28:38 ruptelaNet.go:261: Data received(client: [::1]:52587, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:28:38 ruptelaNet.go:278: Sent ACK (client: [::1]:52587, IMEI: 352094089712860) +2018/09/16 02:28:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:28:41 ruptelaNet.go:261: Data received(client: [::1]:52587, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 02:28:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:28:41 ruptelaNet.go:278: Sent ACK (client: [::1]:52587, IMEI: 352094089712860) +2018/09/16 02:28:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:28:41 ruptelaNet.go:261: Data received(client: [::1]:52583, IMEI: 352094087982671) with duration 4.23 s +2018/09/16 02:28:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:28:41 ruptelaNet.go:278: Sent ACK (client: [::1]:52583, IMEI: 352094087982671) +2018/09/16 02:28:42 ruptelaNet.go:291: teltonika Close connection with duration 3.89 s (client: [::1]:52587) +2018/09/16 02:28:43 ruptelaNet.go:291: teltonika Close connection with duration 6.35 s (client: [::1]:52583) +2018/09/16 02:29:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:52646) +2018/09/16 02:29:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:29:07 ruptelaNet.go:261: Data received(client: [::1]:52646, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 02:29:07 ruptelaNet.go:278: Sent ACK (client: [::1]:52646, IMEI: 352094087982671) +2018/09/16 02:29:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:29:10 ruptelaNet.go:261: Data received(client: [::1]:52646, IMEI: 352094087982671) with duration 3.65 s +2018/09/16 02:29:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:29:10 ruptelaNet.go:278: Sent ACK (client: [::1]:52646, IMEI: 352094087982671) +2018/09/16 02:29:12 ruptelaNet.go:291: teltonika Close connection with duration 5.79 s (client: [::1]:52646) +2018/09/16 02:29:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:52715) +2018/09/16 02:29:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:29:36 ruptelaNet.go:261: Data received(client: [::1]:52715, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 02:29:36 ruptelaNet.go:278: Sent ACK (client: [::1]:52715, IMEI: 352094087982671) +2018/09/16 02:29:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:52724) +2018/09/16 02:29:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:29:38 ruptelaNet.go:261: Data received(client: [::1]:52724, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:29:38 ruptelaNet.go:278: Sent ACK (client: [::1]:52724, IMEI: 352094089712860) +2018/09/16 02:29:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:29:40 ruptelaNet.go:261: Data received(client: [::1]:52715, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 02:29:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:29:40 ruptelaNet.go:278: Sent ACK (client: [::1]:52715, IMEI: 352094087982671) +2018/09/16 02:29:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:29:41 ruptelaNet.go:261: Data received(client: [::1]:52724, IMEI: 352094089712860) with duration 2.56 s +2018/09/16 02:29:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:29:41 ruptelaNet.go:278: Sent ACK (client: [::1]:52724, IMEI: 352094089712860) +2018/09/16 02:29:42 ruptelaNet.go:291: teltonika Close connection with duration 6.45 s (client: [::1]:52715) +2018/09/16 02:29:42 ruptelaNet.go:291: teltonika Close connection with duration 3.79 s (client: [::1]:52724) +2018/09/16 02:29:43 ruptelaNet.go:181: Signal: interrupt +2018/09/16 02:31:03 deviceServer.go:89: PID file will be created +2018/09/16 02:31:03 deviceServer.go:92: PID: 13331 +2018/09/16 02:31:03 deviceServer.go:98: PID file created +2018/09/16 02:31:03 ruptelaNet.go:175: listening: [::]:4000 +2018/09/16 02:31:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:52928) +2018/09/16 02:31:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:31:06 ruptelaNet.go:261: Data received(client: [::1]:52928, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:31:06 ruptelaNet.go:278: Sent ACK (client: [::1]:52928, IMEI: 352094087982671) +2018/09/16 02:31:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:31:08 ruptelaNet.go:261: Data received(client: [::1]:52928, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:31:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:31:09 ruptelaNet.go:278: Sent ACK (client: [::1]:52928, IMEI: 352094087982671) +2018/09/16 02:31:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52928, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 02:31:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:52990) +2018/09/16 02:31:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:31:34 ruptelaNet.go:261: Data received(client: [::1]:52990, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:31:34 ruptelaNet.go:278: Sent ACK (client: [::1]:52990, IMEI: 352094087982671) +2018/09/16 02:31:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:31:37 ruptelaNet.go:261: Data received(client: [::1]:52990, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 02:31:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:31:37 ruptelaNet.go:278: Sent ACK (client: [::1]:52990, IMEI: 352094087982671) +2018/09/16 02:31:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:53005) +2018/09/16 02:31:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:31:38 ruptelaNet.go:261: Data received(client: [::1]:53005, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:31:38 ruptelaNet.go:278: Sent ACK (client: [::1]:53005, IMEI: 352094089712860) +2018/09/16 02:31:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52990, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 02:31:40 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:31:40 ruptelaNet.go:261: Data received(client: [::1]:53005, IMEI: 352094089712860) with duration 2.16 s +2018/09/16 02:31:40 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:31:40 ruptelaNet.go:278: Sent ACK (client: [::1]:53005, IMEI: 352094089712860) +2018/09/16 02:31:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53005, IMEI: 352094089712860) with duration 2.95 s +2018/09/16 02:32:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:53061) +2018/09/16 02:32:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:32:03 ruptelaNet.go:261: Data received(client: [::1]:53061, IMEI: 352094087982671) with duration 0.8 s +2018/09/16 02:32:03 ruptelaNet.go:278: Sent ACK (client: [::1]:53061, IMEI: 352094087982671) +2018/09/16 02:32:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:32:06 ruptelaNet.go:261: Data received(client: [::1]:53061, IMEI: 352094087982671) with duration 3.6 s +2018/09/16 02:32:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:32:06 ruptelaNet.go:278: Sent ACK (client: [::1]:53061, IMEI: 352094087982671) +2018/09/16 02:32:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53061, IMEI: 352094087982671) with duration 5.72 s +2018/09/16 02:32:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:53127) +2018/09/16 02:32:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:32:32 ruptelaNet.go:261: Data received(client: [::1]:53127, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:32:32 ruptelaNet.go:278: Sent ACK (client: [::1]:53127, IMEI: 352094087982671) +2018/09/16 02:32:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:32:35 ruptelaNet.go:261: Data received(client: [::1]:53127, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:32:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:32:35 ruptelaNet.go:278: Sent ACK (client: [::1]:53127, IMEI: 352094087982671) +2018/09/16 02:32:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53127, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:32:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:53145) +2018/09/16 02:32:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:32:38 ruptelaNet.go:261: Data received(client: [::1]:53145, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:32:38 ruptelaNet.go:278: Sent ACK (client: [::1]:53145, IMEI: 352094089712860) +2018/09/16 02:32:40 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:32:40 ruptelaNet.go:261: Data received(client: [::1]:53145, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 02:32:40 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:32:40 ruptelaNet.go:278: Sent ACK (client: [::1]:53145, IMEI: 352094089712860) +2018/09/16 02:32:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53145, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 02:33:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:53194) +2018/09/16 02:33:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:33:01 ruptelaNet.go:261: Data received(client: [::1]:53194, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:33:01 ruptelaNet.go:278: Sent ACK (client: [::1]:53194, IMEI: 352094087982671) +2018/09/16 02:33:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:33:04 ruptelaNet.go:261: Data received(client: [::1]:53194, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 02:33:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:33:04 ruptelaNet.go:278: Sent ACK (client: [::1]:53194, IMEI: 352094087982671) +2018/09/16 02:33:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53194, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 02:33:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:53255) +2018/09/16 02:33:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:33:30 ruptelaNet.go:261: Data received(client: [::1]:53255, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:33:30 ruptelaNet.go:278: Sent ACK (client: [::1]:53255, IMEI: 352094087982671) +2018/09/16 02:33:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:33:33 ruptelaNet.go:261: Data received(client: [::1]:53255, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 02:33:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:33:33 ruptelaNet.go:278: Sent ACK (client: [::1]:53255, IMEI: 352094087982671) +2018/09/16 02:33:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53255, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 02:33:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:53274) +2018/09/16 02:33:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:33:38 ruptelaNet.go:261: Data received(client: [::1]:53274, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:33:38 ruptelaNet.go:278: Sent ACK (client: [::1]:53274, IMEI: 352094089712860) +2018/09/16 02:33:40 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:33:40 ruptelaNet.go:261: Data received(client: [::1]:53274, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 02:33:40 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:33:40 ruptelaNet.go:278: Sent ACK (client: [::1]:53274, IMEI: 352094089712860) +2018/09/16 02:33:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53274, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 02:33:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:53319) +2018/09/16 02:33:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:33:59 ruptelaNet.go:261: Data received(client: [::1]:53319, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:33:59 ruptelaNet.go:278: Sent ACK (client: [::1]:53319, IMEI: 352094087982671) +2018/09/16 02:34:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:34:02 ruptelaNet.go:261: Data received(client: [::1]:53319, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 02:34:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:34:02 ruptelaNet.go:278: Sent ACK (client: [::1]:53319, IMEI: 352094087982671) +2018/09/16 02:34:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53319, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 02:34:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:53385) +2018/09/16 02:34:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:34:28 ruptelaNet.go:261: Data received(client: [::1]:53385, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:34:28 ruptelaNet.go:278: Sent ACK (client: [::1]:53385, IMEI: 352094087982671) +2018/09/16 02:34:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:34:31 ruptelaNet.go:261: Data received(client: [::1]:53385, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 02:34:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:34:31 ruptelaNet.go:278: Sent ACK (client: [::1]:53385, IMEI: 352094087982671) +2018/09/16 02:34:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53385, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 02:34:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:53408) +2018/09/16 02:34:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:34:39 ruptelaNet.go:261: Data received(client: [::1]:53408, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:34:39 ruptelaNet.go:278: Sent ACK (client: [::1]:53408, IMEI: 352094089712860) +2018/09/16 02:34:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:34:41 ruptelaNet.go:261: Data received(client: [::1]:53408, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 02:34:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:34:41 ruptelaNet.go:278: Sent ACK (client: [::1]:53408, IMEI: 352094089712860) +2018/09/16 02:34:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53408, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 02:34:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:53451) +2018/09/16 02:34:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:34:57 ruptelaNet.go:261: Data received(client: [::1]:53451, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 02:34:57 ruptelaNet.go:278: Sent ACK (client: [::1]:53451, IMEI: 352094087982671) +2018/09/16 02:35:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:35:00 ruptelaNet.go:261: Data received(client: [::1]:53451, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 02:35:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:35:00 ruptelaNet.go:278: Sent ACK (client: [::1]:53451, IMEI: 352094087982671) +2018/09/16 02:35:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53451, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 02:35:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:53507) +2018/09/16 02:35:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:35:26 ruptelaNet.go:261: Data received(client: [::1]:53507, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 02:35:26 ruptelaNet.go:278: Sent ACK (client: [::1]:53507, IMEI: 352094087982671) +2018/09/16 02:35:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:35:29 ruptelaNet.go:261: Data received(client: [::1]:53507, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 02:35:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:35:29 ruptelaNet.go:278: Sent ACK (client: [::1]:53507, IMEI: 352094087982671) +2018/09/16 02:35:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53507, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 02:35:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:53534) +2018/09/16 02:35:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:35:39 ruptelaNet.go:261: Data received(client: [::1]:53534, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:35:39 ruptelaNet.go:278: Sent ACK (client: [::1]:53534, IMEI: 352094089712860) +2018/09/16 02:35:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:35:43 ruptelaNet.go:261: Data received(client: [::1]:53534, IMEI: 352094089712860) with duration 4.61 s +2018/09/16 02:35:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:35:43 ruptelaNet.go:278: Sent ACK (client: [::1]:53534, IMEI: 352094089712860) +2018/09/16 02:35:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53534, IMEI: 352094089712860) with duration 7.05 s +2018/09/16 02:35:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:53565) +2018/09/16 02:35:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:35:55 ruptelaNet.go:261: Data received(client: [::1]:53565, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:35:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53565, IMEI: 352094087982671) +2018/09/16 02:35:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:35:58 ruptelaNet.go:261: Data received(client: [::1]:53565, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 02:35:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:35:58 ruptelaNet.go:278: Sent ACK (client: [::1]:53565, IMEI: 352094087982671) +2018/09/16 02:36:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53565, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 02:36:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:53632) +2018/09/16 02:36:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:36:24 ruptelaNet.go:261: Data received(client: [::1]:53632, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:36:24 ruptelaNet.go:278: Sent ACK (client: [::1]:53632, IMEI: 352094087982671) +2018/09/16 02:36:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:36:27 ruptelaNet.go:261: Data received(client: [::1]:53632, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 02:36:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:36:27 ruptelaNet.go:278: Sent ACK (client: [::1]:53632, IMEI: 352094087982671) +2018/09/16 02:36:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53632, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 02:36:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:53674) +2018/09/16 02:36:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:36:39 ruptelaNet.go:261: Data received(client: [::1]:53674, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:36:39 ruptelaNet.go:278: Sent ACK (client: [::1]:53674, IMEI: 352094089712860) +2018/09/16 02:36:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:36:41 ruptelaNet.go:261: Data received(client: [::1]:53674, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 02:36:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:36:41 ruptelaNet.go:278: Sent ACK (client: [::1]:53674, IMEI: 352094089712860) +2018/09/16 02:36:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53674, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 02:36:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:53702) +2018/09/16 02:36:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:36:53 ruptelaNet.go:261: Data received(client: [::1]:53702, IMEI: 352094087982671) with duration 1 s +2018/09/16 02:36:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53702, IMEI: 352094087982671) +2018/09/16 02:36:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:36:57 ruptelaNet.go:261: Data received(client: [::1]:53702, IMEI: 352094087982671) with duration 4.5 s +2018/09/16 02:36:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:36:57 ruptelaNet.go:278: Sent ACK (client: [::1]:53702, IMEI: 352094087982671) +2018/09/16 02:36:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53702, IMEI: 352094087982671) with duration 6.63 s +2018/09/16 02:37:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:53759) +2018/09/16 02:37:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:37:23 ruptelaNet.go:261: Data received(client: [::1]:53759, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:37:23 ruptelaNet.go:278: Sent ACK (client: [::1]:53759, IMEI: 352094087982671) +2018/09/16 02:37:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:37:26 ruptelaNet.go:261: Data received(client: [::1]:53759, IMEI: 352094087982671) with duration 3.73 s +2018/09/16 02:37:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:37:26 ruptelaNet.go:278: Sent ACK (client: [::1]:53759, IMEI: 352094087982671) +2018/09/16 02:37:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53759, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 02:37:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:53813) +2018/09/16 02:37:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:37:49 ruptelaNet.go:261: Data received(client: [::1]:53813, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:37:49 ruptelaNet.go:278: Sent ACK (client: [::1]:53813, IMEI: 352094089712860) +2018/09/16 02:37:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:53819) +2018/09/16 02:37:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:37:52 ruptelaNet.go:261: Data received(client: [::1]:53819, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 02:37:52 ruptelaNet.go:278: Sent ACK (client: [::1]:53819, IMEI: 352094087982671) +2018/09/16 02:37:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:37:55 ruptelaNet.go:261: Data received(client: [::1]:53819, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 02:37:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:37:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53819, IMEI: 352094087982671) +2018/09/16 02:37:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:37:56 ruptelaNet.go:261: Data received(client: [::1]:53813, IMEI: 352094089712860) with duration 6.82 s +2018/09/16 02:37:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:37:56 ruptelaNet.go:278: Sent ACK (client: [::1]:53813, IMEI: 352094089712860) +2018/09/16 02:37:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53813, IMEI: 352094089712860) with duration 7.58 s +2018/09/16 02:37:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53819, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 02:38:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:53871) +2018/09/16 02:38:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:38:21 ruptelaNet.go:261: Data received(client: [::1]:53871, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 02:38:21 ruptelaNet.go:278: Sent ACK (client: [::1]:53871, IMEI: 352094087982671) +2018/09/16 02:38:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:38:25 ruptelaNet.go:261: Data received(client: [::1]:53871, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 02:38:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:38:25 ruptelaNet.go:278: Sent ACK (client: [::1]:53871, IMEI: 352094087982671) +2018/09/16 02:38:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53871, IMEI: 352094087982671) with duration 6.56 s +2018/09/16 02:38:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:53917) +2018/09/16 02:38:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:38:41 ruptelaNet.go:261: Data received(client: [::1]:53917, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:38:41 ruptelaNet.go:278: Sent ACK (client: [::1]:53917, IMEI: 352094089712860) +2018/09/16 02:38:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:38:44 ruptelaNet.go:261: Data received(client: [::1]:53917, IMEI: 352094089712860) with duration 2.45 s +2018/09/16 02:38:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:38:44 ruptelaNet.go:278: Sent ACK (client: [::1]:53917, IMEI: 352094089712860) +2018/09/16 02:38:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53917, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 02:38:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:53936) +2018/09/16 02:38:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:38:51 ruptelaNet.go:261: Data received(client: [::1]:53936, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:38:51 ruptelaNet.go:278: Sent ACK (client: [::1]:53936, IMEI: 352094087982671) +2018/09/16 02:38:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:38:54 ruptelaNet.go:261: Data received(client: [::1]:53936, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:38:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:38:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53936, IMEI: 352094087982671) +2018/09/16 02:38:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53936, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 02:39:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:53990) +2018/09/16 02:39:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:39:20 ruptelaNet.go:261: Data received(client: [::1]:53990, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:39:20 ruptelaNet.go:278: Sent ACK (client: [::1]:53990, IMEI: 352094087982671) +2018/09/16 02:39:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:39:24 ruptelaNet.go:261: Data received(client: [::1]:53990, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 02:39:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:39:24 ruptelaNet.go:278: Sent ACK (client: [::1]:53990, IMEI: 352094087982671) +2018/09/16 02:39:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53990, IMEI: 352094087982671) with duration 6.38 s +2018/09/16 02:39:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:54033) +2018/09/16 02:39:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:39:41 ruptelaNet.go:261: Data received(client: [::1]:54033, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:39:41 ruptelaNet.go:278: Sent ACK (client: [::1]:54033, IMEI: 352094089712860) +2018/09/16 02:39:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:39:44 ruptelaNet.go:261: Data received(client: [::1]:54033, IMEI: 352094089712860) with duration 2.36 s +2018/09/16 02:39:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:39:44 ruptelaNet.go:278: Sent ACK (client: [::1]:54033, IMEI: 352094089712860) +2018/09/16 02:39:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54033, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 02:39:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:54052) +2018/09/16 02:39:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:39:49 ruptelaNet.go:261: Data received(client: [::1]:54052, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:39:49 ruptelaNet.go:278: Sent ACK (client: [::1]:54052, IMEI: 352094087982671) +2018/09/16 02:39:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:39:52 ruptelaNet.go:261: Data received(client: [::1]:54052, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:39:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:39:52 ruptelaNet.go:278: Sent ACK (client: [::1]:54052, IMEI: 352094087982671) +2018/09/16 02:39:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54052, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:40:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:54104) +2018/09/16 02:40:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:40:18 ruptelaNet.go:261: Data received(client: [::1]:54104, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 02:40:18 ruptelaNet.go:278: Sent ACK (client: [::1]:54104, IMEI: 352094087982671) +2018/09/16 02:40:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:40:21 ruptelaNet.go:261: Data received(client: [::1]:54104, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 02:40:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:40:21 ruptelaNet.go:278: Sent ACK (client: [::1]:54104, IMEI: 352094087982671) +2018/09/16 02:40:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54104, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 02:40:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:54147) +2018/09/16 02:40:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:40:39 ruptelaNet.go:261: Data received(client: [::1]:54147, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:40:39 ruptelaNet.go:278: Sent ACK (client: [::1]:54147, IMEI: 352094089712860) +2018/09/16 02:40:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:40:41 ruptelaNet.go:261: Data received(client: [::1]:54147, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 02:40:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:40:41 ruptelaNet.go:278: Sent ACK (client: [::1]:54147, IMEI: 352094089712860) +2018/09/16 02:40:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54147, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 02:40:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:54155) +2018/09/16 02:40:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:40:47 ruptelaNet.go:261: Data received(client: [::1]:54155, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 02:40:47 ruptelaNet.go:278: Sent ACK (client: [::1]:54155, IMEI: 352094087982671) +2018/09/16 02:40:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:40:50 ruptelaNet.go:261: Data received(client: [::1]:54155, IMEI: 352094087982671) with duration 4.21 s +2018/09/16 02:40:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:40:50 ruptelaNet.go:278: Sent ACK (client: [::1]:54155, IMEI: 352094087982671) +2018/09/16 02:40:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54155, IMEI: 352094087982671) with duration 6.36 s +2018/09/16 02:41:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:54221) +2018/09/16 02:41:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:41:16 ruptelaNet.go:261: Data received(client: [::1]:54221, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 02:41:16 ruptelaNet.go:278: Sent ACK (client: [::1]:54221, IMEI: 352094087982671) +2018/09/16 02:41:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:41:20 ruptelaNet.go:261: Data received(client: [::1]:54221, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 02:41:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:41:20 ruptelaNet.go:278: Sent ACK (client: [::1]:54221, IMEI: 352094087982671) +2018/09/16 02:41:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54221, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 02:41:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:54274) +2018/09/16 02:41:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:41:39 ruptelaNet.go:261: Data received(client: [::1]:54274, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:41:39 ruptelaNet.go:278: Sent ACK (client: [::1]:54274, IMEI: 352094089712860) +2018/09/16 02:41:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:41:41 ruptelaNet.go:261: Data received(client: [::1]:54274, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 02:41:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:41:41 ruptelaNet.go:278: Sent ACK (client: [::1]:54274, IMEI: 352094089712860) +2018/09/16 02:41:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54274, IMEI: 352094089712860) with duration 3.09 s +2018/09/16 02:41:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:54286) +2018/09/16 02:41:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:41:45 ruptelaNet.go:261: Data received(client: [::1]:54286, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:41:45 ruptelaNet.go:278: Sent ACK (client: [::1]:54286, IMEI: 352094087982671) +2018/09/16 02:41:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:41:48 ruptelaNet.go:261: Data received(client: [::1]:54286, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 02:41:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:41:48 ruptelaNet.go:278: Sent ACK (client: [::1]:54286, IMEI: 352094087982671) +2018/09/16 02:41:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54286, IMEI: 352094087982671) with duration 6.22 s +2018/09/16 02:42:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:54343) +2018/09/16 02:42:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:42:14 ruptelaNet.go:261: Data received(client: [::1]:54343, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:42:14 ruptelaNet.go:278: Sent ACK (client: [::1]:54343, IMEI: 352094087982671) +2018/09/16 02:42:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:42:17 ruptelaNet.go:261: Data received(client: [::1]:54343, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:42:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:42:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54343, IMEI: 352094087982671) +2018/09/16 02:42:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54343, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 02:42:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:54395) +2018/09/16 02:42:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:42:40 ruptelaNet.go:261: Data received(client: [::1]:54395, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:42:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54395, IMEI: 352094089712860) +2018/09/16 02:42:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:42:42 ruptelaNet.go:261: Data received(client: [::1]:54395, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 02:42:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:42:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54395, IMEI: 352094089712860) +2018/09/16 02:42:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:54401) +2018/09/16 02:42:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:42:43 ruptelaNet.go:261: Data received(client: [::1]:54401, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 02:42:43 ruptelaNet.go:278: Sent ACK (client: [::1]:54401, IMEI: 352094087982671) +2018/09/16 02:42:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54395, IMEI: 352094089712860) with duration 4.61 s +2018/09/16 02:42:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:42:46 ruptelaNet.go:261: Data received(client: [::1]:54401, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 02:42:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:42:46 ruptelaNet.go:278: Sent ACK (client: [::1]:54401, IMEI: 352094087982671) +2018/09/16 02:42:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54401, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:43:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:54460) +2018/09/16 02:43:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:43:12 ruptelaNet.go:261: Data received(client: [::1]:54460, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:43:12 ruptelaNet.go:278: Sent ACK (client: [::1]:54460, IMEI: 352094087982671) +2018/09/16 02:43:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:43:15 ruptelaNet.go:261: Data received(client: [::1]:54460, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:43:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:43:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54460, IMEI: 352094087982671) +2018/09/16 02:43:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54460, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 02:43:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:54520) +2018/09/16 02:43:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:43:39 ruptelaNet.go:261: Data received(client: [::1]:54520, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:43:39 ruptelaNet.go:278: Sent ACK (client: [::1]:54520, IMEI: 352094089712860) +2018/09/16 02:43:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:54522) +2018/09/16 02:43:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:43:41 ruptelaNet.go:261: Data received(client: [::1]:54522, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:43:41 ruptelaNet.go:278: Sent ACK (client: [::1]:54522, IMEI: 352094087982671) +2018/09/16 02:43:41 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:43:41 ruptelaNet.go:261: Data received(client: [::1]:54520, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 02:43:41 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:43:41 ruptelaNet.go:278: Sent ACK (client: [::1]:54520, IMEI: 352094089712860) +2018/09/16 02:43:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54520, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 02:43:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:43:44 ruptelaNet.go:261: Data received(client: [::1]:54522, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:43:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:43:44 ruptelaNet.go:278: Sent ACK (client: [::1]:54522, IMEI: 352094087982671) +2018/09/16 02:43:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54522, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 02:44:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:54582) +2018/09/16 02:44:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:44:10 ruptelaNet.go:261: Data received(client: [::1]:54582, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 02:44:10 ruptelaNet.go:278: Sent ACK (client: [::1]:54582, IMEI: 352094087982671) +2018/09/16 02:44:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:44:13 ruptelaNet.go:261: Data received(client: [::1]:54582, IMEI: 352094087982671) with duration 3.57 s +2018/09/16 02:44:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:44:13 ruptelaNet.go:278: Sent ACK (client: [::1]:54582, IMEI: 352094087982671) +2018/09/16 02:44:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54582, IMEI: 352094087982671) with duration 5.72 s +2018/09/16 02:44:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:54644) +2018/09/16 02:44:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:44:39 ruptelaNet.go:261: Data received(client: [::1]:54644, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:44:39 ruptelaNet.go:278: Sent ACK (client: [::1]:54644, IMEI: 352094087982671) +2018/09/16 02:44:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:54648) +2018/09/16 02:44:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:44:40 ruptelaNet.go:261: Data received(client: [::1]:54648, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:44:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54648, IMEI: 352094089712860) +2018/09/16 02:44:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:44:42 ruptelaNet.go:261: Data received(client: [::1]:54648, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 02:44:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:44:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54648, IMEI: 352094089712860) +2018/09/16 02:44:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:44:42 ruptelaNet.go:261: Data received(client: [::1]:54644, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:44:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:44:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54644, IMEI: 352094087982671) +2018/09/16 02:44:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54648, IMEI: 352094089712860) with duration 3.24 s +2018/09/16 02:44:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54644, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:45:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:54712) +2018/09/16 02:45:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:45:08 ruptelaNet.go:261: Data received(client: [::1]:54712, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:45:08 ruptelaNet.go:278: Sent ACK (client: [::1]:54712, IMEI: 352094087982671) +2018/09/16 02:45:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:45:11 ruptelaNet.go:261: Data received(client: [::1]:54712, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 02:45:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:45:11 ruptelaNet.go:278: Sent ACK (client: [::1]:54712, IMEI: 352094087982671) +2018/09/16 02:45:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54712, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 02:45:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:54772) +2018/09/16 02:45:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:45:37 ruptelaNet.go:261: Data received(client: [::1]:54772, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 02:45:37 ruptelaNet.go:278: Sent ACK (client: [::1]:54772, IMEI: 352094087982671) +2018/09/16 02:45:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:45:40 ruptelaNet.go:261: Data received(client: [::1]:54772, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 02:45:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:45:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54772, IMEI: 352094087982671) +2018/09/16 02:45:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:54787) +2018/09/16 02:45:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:45:42 ruptelaNet.go:261: Data received(client: [::1]:54787, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:45:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54787, IMEI: 352094089712860) +2018/09/16 02:45:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54772, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 02:45:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:45:44 ruptelaNet.go:261: Data received(client: [::1]:54787, IMEI: 352094089712860) with duration 2.55 s +2018/09/16 02:45:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:45:44 ruptelaNet.go:278: Sent ACK (client: [::1]:54787, IMEI: 352094089712860) +2018/09/16 02:45:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54787, IMEI: 352094089712860) with duration 3.37 s +2018/09/16 02:46:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:54838) +2018/09/16 02:46:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:46:06 ruptelaNet.go:261: Data received(client: [::1]:54838, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 02:46:06 ruptelaNet.go:278: Sent ACK (client: [::1]:54838, IMEI: 352094087982671) +2018/09/16 02:46:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:46:09 ruptelaNet.go:261: Data received(client: [::1]:54838, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 02:46:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:46:09 ruptelaNet.go:278: Sent ACK (client: [::1]:54838, IMEI: 352094087982671) +2018/09/16 02:46:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54838, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 02:46:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:54901) +2018/09/16 02:46:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:46:35 ruptelaNet.go:261: Data received(client: [::1]:54901, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 02:46:35 ruptelaNet.go:278: Sent ACK (client: [::1]:54901, IMEI: 352094087982671) +2018/09/16 02:46:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:46:38 ruptelaNet.go:261: Data received(client: [::1]:54901, IMEI: 352094087982671) with duration 3.96 s +2018/09/16 02:46:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:46:38 ruptelaNet.go:278: Sent ACK (client: [::1]:54901, IMEI: 352094087982671) +2018/09/16 02:46:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54901, IMEI: 352094087982671) with duration 6.11 s +2018/09/16 02:46:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:54912) +2018/09/16 02:46:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:46:40 ruptelaNet.go:261: Data received(client: [::1]:54912, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:46:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54912, IMEI: 352094089712860) +2018/09/16 02:46:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:46:44 ruptelaNet.go:261: Data received(client: [::1]:54912, IMEI: 352094089712860) with duration 3.9 s +2018/09/16 02:46:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:46:44 ruptelaNet.go:278: Sent ACK (client: [::1]:54912, IMEI: 352094089712860) +2018/09/16 02:46:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54912, IMEI: 352094089712860) with duration 4.75 s +2018/09/16 02:47:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:54964) +2018/09/16 02:47:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:47:04 ruptelaNet.go:261: Data received(client: [::1]:54964, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:47:04 ruptelaNet.go:278: Sent ACK (client: [::1]:54964, IMEI: 352094087982671) +2018/09/16 02:47:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:47:07 ruptelaNet.go:261: Data received(client: [::1]:54964, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:47:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:47:07 ruptelaNet.go:278: Sent ACK (client: [::1]:54964, IMEI: 352094087982671) +2018/09/16 02:47:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54964, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:47:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:55023) +2018/09/16 02:47:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:47:33 ruptelaNet.go:261: Data received(client: [::1]:55023, IMEI: 352094087982671) with duration 1 s +2018/09/16 02:47:33 ruptelaNet.go:278: Sent ACK (client: [::1]:55023, IMEI: 352094087982671) +2018/09/16 02:47:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:47:36 ruptelaNet.go:261: Data received(client: [::1]:55023, IMEI: 352094087982671) with duration 3.94 s +2018/09/16 02:47:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:47:36 ruptelaNet.go:278: Sent ACK (client: [::1]:55023, IMEI: 352094087982671) +2018/09/16 02:47:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55023, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 02:47:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:55039) +2018/09/16 02:47:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:47:41 ruptelaNet.go:261: Data received(client: [::1]:55039, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:47:41 ruptelaNet.go:278: Sent ACK (client: [::1]:55039, IMEI: 352094089712860) +2018/09/16 02:47:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:47:43 ruptelaNet.go:261: Data received(client: [::1]:55039, IMEI: 352094089712860) with duration 2.13 s +2018/09/16 02:47:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:47:43 ruptelaNet.go:278: Sent ACK (client: [::1]:55039, IMEI: 352094089712860) +2018/09/16 02:47:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55039, IMEI: 352094089712860) with duration 3.72 s +2018/09/16 02:48:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:55084) +2018/09/16 02:48:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:48:02 ruptelaNet.go:261: Data received(client: [::1]:55084, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 02:48:02 ruptelaNet.go:278: Sent ACK (client: [::1]:55084, IMEI: 352094087982671) +2018/09/16 02:48:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:48:05 ruptelaNet.go:261: Data received(client: [::1]:55084, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 02:48:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:48:05 ruptelaNet.go:278: Sent ACK (client: [::1]:55084, IMEI: 352094087982671) +2018/09/16 02:48:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55084, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 02:48:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:55145) +2018/09/16 02:48:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:48:31 ruptelaNet.go:261: Data received(client: [::1]:55145, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:48:31 ruptelaNet.go:278: Sent ACK (client: [::1]:55145, IMEI: 352094087982671) +2018/09/16 02:48:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:48:34 ruptelaNet.go:261: Data received(client: [::1]:55145, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:48:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:48:34 ruptelaNet.go:278: Sent ACK (client: [::1]:55145, IMEI: 352094087982671) +2018/09/16 02:48:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55145, IMEI: 352094087982671) with duration 6 s +2018/09/16 02:48:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:55168) +2018/09/16 02:48:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:48:40 ruptelaNet.go:261: Data received(client: [::1]:55168, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 02:48:40 ruptelaNet.go:278: Sent ACK (client: [::1]:55168, IMEI: 352094089712860) +2018/09/16 02:48:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:48:42 ruptelaNet.go:261: Data received(client: [::1]:55168, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 02:48:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:48:42 ruptelaNet.go:278: Sent ACK (client: [::1]:55168, IMEI: 352094089712860) +2018/09/16 02:48:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55168, IMEI: 352094089712860) with duration 3.08 s +2018/09/16 02:49:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:55213) +2018/09/16 02:49:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:49:00 ruptelaNet.go:261: Data received(client: [::1]:55213, IMEI: 352094087982671) with duration 0 s +2018/09/16 02:49:00 ruptelaNet.go:278: Sent ACK (client: [::1]:55213, IMEI: 352094087982671) +2018/09/16 02:49:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:49:03 ruptelaNet.go:261: Data received(client: [::1]:55213, IMEI: 352094087982671) with duration 2.75 s +2018/09/16 02:49:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:49:03 ruptelaNet.go:278: Sent ACK (client: [::1]:55213, IMEI: 352094087982671) +2018/09/16 02:49:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55213, IMEI: 352094087982671) with duration 4.81 s +2018/09/16 02:49:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:55274) +2018/09/16 02:49:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:49:29 ruptelaNet.go:261: Data received(client: [::1]:55274, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 02:49:29 ruptelaNet.go:278: Sent ACK (client: [::1]:55274, IMEI: 352094087982671) +2018/09/16 02:49:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:49:32 ruptelaNet.go:261: Data received(client: [::1]:55274, IMEI: 352094087982671) with duration 4 s +2018/09/16 02:49:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:49:32 ruptelaNet.go:278: Sent ACK (client: [::1]:55274, IMEI: 352094087982671) +2018/09/16 02:49:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55274, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 02:49:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:55297) +2018/09/16 02:49:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:49:40 ruptelaNet.go:261: Data received(client: [::1]:55297, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:49:40 ruptelaNet.go:278: Sent ACK (client: [::1]:55297, IMEI: 352094089712860) +2018/09/16 02:49:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:49:42 ruptelaNet.go:261: Data received(client: [::1]:55297, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 02:49:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:49:42 ruptelaNet.go:278: Sent ACK (client: [::1]:55297, IMEI: 352094089712860) +2018/09/16 02:49:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55297, IMEI: 352094089712860) with duration 4.84 s +2018/09/16 02:49:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:55338) +2018/09/16 02:49:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:49:58 ruptelaNet.go:261: Data received(client: [::1]:55338, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:49:58 ruptelaNet.go:278: Sent ACK (client: [::1]:55338, IMEI: 352094087982671) +2018/09/16 02:50:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:50:01 ruptelaNet.go:261: Data received(client: [::1]:55338, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 02:50:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:50:01 ruptelaNet.go:278: Sent ACK (client: [::1]:55338, IMEI: 352094087982671) +2018/09/16 02:50:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55338, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 02:50:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:55401) +2018/09/16 02:50:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:50:27 ruptelaNet.go:261: Data received(client: [::1]:55401, IMEI: 352094087982671) with duration 0.8 s +2018/09/16 02:50:27 ruptelaNet.go:278: Sent ACK (client: [::1]:55401, IMEI: 352094087982671) +2018/09/16 02:50:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:50:30 ruptelaNet.go:261: Data received(client: [::1]:55401, IMEI: 352094087982671) with duration 3.65 s +2018/09/16 02:50:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:50:30 ruptelaNet.go:278: Sent ACK (client: [::1]:55401, IMEI: 352094087982671) +2018/09/16 02:50:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55401, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 02:50:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:55424) +2018/09/16 02:50:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:50:40 ruptelaNet.go:261: Data received(client: [::1]:55424, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:50:40 ruptelaNet.go:278: Sent ACK (client: [::1]:55424, IMEI: 352094089712860) +2018/09/16 02:50:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:50:42 ruptelaNet.go:261: Data received(client: [::1]:55424, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 02:50:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:50:42 ruptelaNet.go:278: Sent ACK (client: [::1]:55424, IMEI: 352094089712860) +2018/09/16 02:50:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55424, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 02:50:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:55463) +2018/09/16 02:50:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:50:56 ruptelaNet.go:261: Data received(client: [::1]:55463, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 02:50:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55463, IMEI: 352094087982671) +2018/09/16 02:50:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:50:59 ruptelaNet.go:261: Data received(client: [::1]:55463, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 02:50:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:50:59 ruptelaNet.go:278: Sent ACK (client: [::1]:55463, IMEI: 352094087982671) +2018/09/16 02:51:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55463, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 02:51:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:55520) +2018/09/16 02:51:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:51:25 ruptelaNet.go:261: Data received(client: [::1]:55520, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:51:25 ruptelaNet.go:278: Sent ACK (client: [::1]:55520, IMEI: 352094087982671) +2018/09/16 02:51:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:51:28 ruptelaNet.go:261: Data received(client: [::1]:55520, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:51:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:51:28 ruptelaNet.go:278: Sent ACK (client: [::1]:55520, IMEI: 352094087982671) +2018/09/16 02:51:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55520, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:51:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:55553) +2018/09/16 02:51:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:51:43 ruptelaNet.go:261: Data received(client: [::1]:55553, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:51:43 ruptelaNet.go:278: Sent ACK (client: [::1]:55553, IMEI: 352094089712860) +2018/09/16 02:51:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:51:45 ruptelaNet.go:261: Data received(client: [::1]:55553, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 02:51:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:51:45 ruptelaNet.go:278: Sent ACK (client: [::1]:55553, IMEI: 352094089712860) +2018/09/16 02:51:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55553, IMEI: 352094089712860) with duration 3 s +2018/09/16 02:51:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:55578) +2018/09/16 02:51:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:51:54 ruptelaNet.go:261: Data received(client: [::1]:55578, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 02:51:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55578, IMEI: 352094087982671) +2018/09/16 02:51:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:51:57 ruptelaNet.go:261: Data received(client: [::1]:55578, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 02:51:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:51:57 ruptelaNet.go:278: Sent ACK (client: [::1]:55578, IMEI: 352094087982671) +2018/09/16 02:51:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55578, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 02:52:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:55643) +2018/09/16 02:52:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:52:23 ruptelaNet.go:261: Data received(client: [::1]:55643, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 02:52:23 ruptelaNet.go:278: Sent ACK (client: [::1]:55643, IMEI: 352094087982671) +2018/09/16 02:52:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:52:26 ruptelaNet.go:261: Data received(client: [::1]:55643, IMEI: 352094087982671) with duration 3.73 s +2018/09/16 02:52:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:52:26 ruptelaNet.go:278: Sent ACK (client: [::1]:55643, IMEI: 352094087982671) +2018/09/16 02:52:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55643, IMEI: 352094087982671) with duration 6.1 s +2018/09/16 02:52:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:55684) +2018/09/16 02:52:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:52:41 ruptelaNet.go:261: Data received(client: [::1]:55684, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:52:41 ruptelaNet.go:278: Sent ACK (client: [::1]:55684, IMEI: 352094089712860) +2018/09/16 02:52:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:52:43 ruptelaNet.go:261: Data received(client: [::1]:55684, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 02:52:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:52:43 ruptelaNet.go:278: Sent ACK (client: [::1]:55684, IMEI: 352094089712860) +2018/09/16 02:52:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55684, IMEI: 352094089712860) with duration 2.63 s +2018/09/16 02:52:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:55707) +2018/09/16 02:52:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:52:52 ruptelaNet.go:261: Data received(client: [::1]:55707, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 02:52:52 ruptelaNet.go:278: Sent ACK (client: [::1]:55707, IMEI: 352094087982671) +2018/09/16 02:52:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:52:55 ruptelaNet.go:261: Data received(client: [::1]:55707, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 02:52:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:52:55 ruptelaNet.go:278: Sent ACK (client: [::1]:55707, IMEI: 352094087982671) +2018/09/16 02:52:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55707, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 02:53:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:55772) +2018/09/16 02:53:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:53:21 ruptelaNet.go:261: Data received(client: [::1]:55772, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:53:21 ruptelaNet.go:278: Sent ACK (client: [::1]:55772, IMEI: 352094087982671) +2018/09/16 02:53:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:53:24 ruptelaNet.go:261: Data received(client: [::1]:55772, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 02:53:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:53:24 ruptelaNet.go:278: Sent ACK (client: [::1]:55772, IMEI: 352094087982671) +2018/09/16 02:53:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55772, IMEI: 352094087982671) with duration 6.22 s +2018/09/16 02:53:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:55816) +2018/09/16 02:53:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:53:45 ruptelaNet.go:261: Data received(client: [::1]:55816, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:53:45 ruptelaNet.go:278: Sent ACK (client: [::1]:55816, IMEI: 352094089712860) +2018/09/16 02:53:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:53:47 ruptelaNet.go:261: Data received(client: [::1]:55816, IMEI: 352094089712860) with duration 2.56 s +2018/09/16 02:53:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:53:47 ruptelaNet.go:278: Sent ACK (client: [::1]:55816, IMEI: 352094089712860) +2018/09/16 02:53:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55816, IMEI: 352094089712860) with duration 4.2 s +2018/09/16 02:53:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:55828) +2018/09/16 02:53:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:53:50 ruptelaNet.go:261: Data received(client: [::1]:55828, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:53:50 ruptelaNet.go:278: Sent ACK (client: [::1]:55828, IMEI: 352094087982671) +2018/09/16 02:53:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:53:53 ruptelaNet.go:261: Data received(client: [::1]:55828, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:53:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:53:53 ruptelaNet.go:278: Sent ACK (client: [::1]:55828, IMEI: 352094087982671) +2018/09/16 02:53:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55828, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 02:54:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:55884) +2018/09/16 02:54:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:54:19 ruptelaNet.go:261: Data received(client: [::1]:55884, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 02:54:19 ruptelaNet.go:278: Sent ACK (client: [::1]:55884, IMEI: 352094087982671) +2018/09/16 02:54:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:54:22 ruptelaNet.go:261: Data received(client: [::1]:55884, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:54:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:54:22 ruptelaNet.go:278: Sent ACK (client: [::1]:55884, IMEI: 352094087982671) +2018/09/16 02:54:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55884, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 02:54:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:55931) +2018/09/16 02:54:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:54:41 ruptelaNet.go:261: Data received(client: [::1]:55931, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:54:41 ruptelaNet.go:278: Sent ACK (client: [::1]:55931, IMEI: 352094089712860) +2018/09/16 02:54:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:54:43 ruptelaNet.go:261: Data received(client: [::1]:55931, IMEI: 352094089712860) with duration 2.37 s +2018/09/16 02:54:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:54:43 ruptelaNet.go:278: Sent ACK (client: [::1]:55931, IMEI: 352094089712860) +2018/09/16 02:54:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55931, IMEI: 352094089712860) with duration 3.79 s +2018/09/16 02:54:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:55948) +2018/09/16 02:54:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:54:48 ruptelaNet.go:261: Data received(client: [::1]:55948, IMEI: 352094087982671) with duration 0.81 s +2018/09/16 02:54:48 ruptelaNet.go:278: Sent ACK (client: [::1]:55948, IMEI: 352094087982671) +2018/09/16 02:54:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:54:51 ruptelaNet.go:261: Data received(client: [::1]:55948, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 02:54:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:54:51 ruptelaNet.go:278: Sent ACK (client: [::1]:55948, IMEI: 352094087982671) +2018/09/16 02:54:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55948, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 02:55:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:56000) +2018/09/16 02:55:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:55:17 ruptelaNet.go:261: Data received(client: [::1]:56000, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 02:55:17 ruptelaNet.go:278: Sent ACK (client: [::1]:56000, IMEI: 352094087982671) +2018/09/16 02:55:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:55:20 ruptelaNet.go:261: Data received(client: [::1]:56000, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 02:55:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:55:20 ruptelaNet.go:278: Sent ACK (client: [::1]:56000, IMEI: 352094087982671) +2018/09/16 02:55:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56000, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 02:55:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56048) +2018/09/16 02:55:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:55:41 ruptelaNet.go:261: Data received(client: [::1]:56048, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:55:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56048, IMEI: 352094089712860) +2018/09/16 02:55:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:55:43 ruptelaNet.go:261: Data received(client: [::1]:56048, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 02:55:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:55:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56048, IMEI: 352094089712860) +2018/09/16 02:55:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56048, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 02:55:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:56060) +2018/09/16 02:55:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:55:46 ruptelaNet.go:261: Data received(client: [::1]:56060, IMEI: 352094087982671) with duration 1.22 s +2018/09/16 02:55:46 ruptelaNet.go:278: Sent ACK (client: [::1]:56060, IMEI: 352094087982671) +2018/09/16 02:55:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:55:50 ruptelaNet.go:261: Data received(client: [::1]:56060, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 02:55:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:55:50 ruptelaNet.go:278: Sent ACK (client: [::1]:56060, IMEI: 352094087982671) +2018/09/16 02:55:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56060, IMEI: 352094087982671) with duration 6.46 s +2018/09/16 02:56:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:56123) +2018/09/16 02:56:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:56:15 ruptelaNet.go:261: Data received(client: [::1]:56123, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:56:15 ruptelaNet.go:278: Sent ACK (client: [::1]:56123, IMEI: 352094087982671) +2018/09/16 02:56:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:56:18 ruptelaNet.go:261: Data received(client: [::1]:56123, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 02:56:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:56:18 ruptelaNet.go:278: Sent ACK (client: [::1]:56123, IMEI: 352094087982671) +2018/09/16 02:56:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56123, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 02:56:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56177) +2018/09/16 02:56:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:56:41 ruptelaNet.go:261: Data received(client: [::1]:56177, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:56:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56177, IMEI: 352094089712860) +2018/09/16 02:56:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:56:43 ruptelaNet.go:261: Data received(client: [::1]:56177, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 02:56:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:56:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56177, IMEI: 352094089712860) +2018/09/16 02:56:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:56184) +2018/09/16 02:56:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:56:44 ruptelaNet.go:261: Data received(client: [::1]:56184, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 02:56:44 ruptelaNet.go:278: Sent ACK (client: [::1]:56184, IMEI: 352094087982671) +2018/09/16 02:56:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56177, IMEI: 352094089712860) with duration 5.2 s +2018/09/16 02:56:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:56:47 ruptelaNet.go:261: Data received(client: [::1]:56184, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 02:56:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:56:47 ruptelaNet.go:278: Sent ACK (client: [::1]:56184, IMEI: 352094087982671) +2018/09/16 02:56:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56184, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 02:57:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:56251) +2018/09/16 02:57:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:57:13 ruptelaNet.go:261: Data received(client: [::1]:56251, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 02:57:13 ruptelaNet.go:278: Sent ACK (client: [::1]:56251, IMEI: 352094087982671) +2018/09/16 02:57:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:57:18 ruptelaNet.go:261: Data received(client: [::1]:56251, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 02:57:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:57:18 ruptelaNet.go:278: Sent ACK (client: [::1]:56251, IMEI: 352094087982671) +2018/09/16 02:57:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56251, IMEI: 352094087982671) with duration 7.68 s +2018/09/16 02:57:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56312) +2018/09/16 02:57:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:57:41 ruptelaNet.go:261: Data received(client: [::1]:56312, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:57:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56312, IMEI: 352094089712860) +2018/09/16 02:57:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:57:43 ruptelaNet.go:261: Data received(client: [::1]:56312, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 02:57:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:57:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56312, IMEI: 352094089712860) +2018/09/16 02:57:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:56317) +2018/09/16 02:57:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56312, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 02:57:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:57:44 ruptelaNet.go:261: Data received(client: [::1]:56317, IMEI: 352094087982671) with duration 0.71 s +2018/09/16 02:57:44 ruptelaNet.go:278: Sent ACK (client: [::1]:56317, IMEI: 352094087982671) +2018/09/16 02:57:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:57:47 ruptelaNet.go:261: Data received(client: [::1]:56317, IMEI: 352094087982671) with duration 3.39 s +2018/09/16 02:57:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:57:47 ruptelaNet.go:278: Sent ACK (client: [::1]:56317, IMEI: 352094087982671) +2018/09/16 02:57:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56317, IMEI: 352094087982671) with duration 5.42 s +2018/09/16 02:58:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:56381) +2018/09/16 02:58:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:58:13 ruptelaNet.go:261: Data received(client: [::1]:56381, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:58:13 ruptelaNet.go:278: Sent ACK (client: [::1]:56381, IMEI: 352094087982671) +2018/09/16 02:58:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:58:16 ruptelaNet.go:261: Data received(client: [::1]:56381, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 02:58:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:58:16 ruptelaNet.go:278: Sent ACK (client: [::1]:56381, IMEI: 352094087982671) +2018/09/16 02:58:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56381, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 02:58:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56437) +2018/09/16 02:58:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:58:41 ruptelaNet.go:261: Data received(client: [::1]:56437, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:58:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56437, IMEI: 352094089712860) +2018/09/16 02:58:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56438) +2018/09/16 02:58:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:58:42 ruptelaNet.go:261: Data received(client: [::1]:56438, IMEI: 352094087982671) with duration 0.83 s +2018/09/16 02:58:42 ruptelaNet.go:278: Sent ACK (client: [::1]:56438, IMEI: 352094087982671) +2018/09/16 02:58:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:58:43 ruptelaNet.go:261: Data received(client: [::1]:56437, IMEI: 352094089712860) with duration 2.06 s +2018/09/16 02:58:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:58:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56437, IMEI: 352094089712860) +2018/09/16 02:58:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56437, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 02:58:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:58:45 ruptelaNet.go:261: Data received(client: [::1]:56438, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 02:58:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:58:45 ruptelaNet.go:278: Sent ACK (client: [::1]:56438, IMEI: 352094087982671) +2018/09/16 02:58:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56438, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 02:59:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:56498) +2018/09/16 02:59:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:59:11 ruptelaNet.go:261: Data received(client: [::1]:56498, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:59:11 ruptelaNet.go:278: Sent ACK (client: [::1]:56498, IMEI: 352094087982671) +2018/09/16 02:59:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:59:14 ruptelaNet.go:261: Data received(client: [::1]:56498, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 02:59:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:59:14 ruptelaNet.go:278: Sent ACK (client: [::1]:56498, IMEI: 352094087982671) +2018/09/16 02:59:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56498, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 02:59:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:56562) +2018/09/16 02:59:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:59:40 ruptelaNet.go:261: Data received(client: [::1]:56562, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 02:59:40 ruptelaNet.go:278: Sent ACK (client: [::1]:56562, IMEI: 352094087982671) +2018/09/16 02:59:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:56568) +2018/09/16 02:59:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 02:59:42 ruptelaNet.go:261: Data received(client: [::1]:56568, IMEI: 352094089712860) with duration 0 s +2018/09/16 02:59:42 ruptelaNet.go:278: Sent ACK (client: [::1]:56568, IMEI: 352094089712860) +2018/09/16 02:59:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 02:59:43 ruptelaNet.go:261: Data received(client: [::1]:56562, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 02:59:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 02:59:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56562, IMEI: 352094087982671) +2018/09/16 02:59:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 02:59:44 ruptelaNet.go:261: Data received(client: [::1]:56568, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 02:59:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 02:59:44 ruptelaNet.go:278: Sent ACK (client: [::1]:56568, IMEI: 352094089712860) +2018/09/16 02:59:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56562, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 02:59:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56568, IMEI: 352094089712860) with duration 3.08 s +2018/09/16 03:00:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:56622) +2018/09/16 03:00:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:00:09 ruptelaNet.go:261: Data received(client: [::1]:56622, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:00:09 ruptelaNet.go:278: Sent ACK (client: [::1]:56622, IMEI: 352094087982671) +2018/09/16 03:00:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:00:12 ruptelaNet.go:261: Data received(client: [::1]:56622, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:00:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:00:12 ruptelaNet.go:278: Sent ACK (client: [::1]:56622, IMEI: 352094087982671) +2018/09/16 03:00:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56622, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:00:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:56675) +2018/09/16 03:00:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:00:38 ruptelaNet.go:261: Data received(client: [::1]:56675, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 03:00:38 ruptelaNet.go:278: Sent ACK (client: [::1]:56675, IMEI: 352094087982671) +2018/09/16 03:00:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:00:41 ruptelaNet.go:261: Data received(client: [::1]:56675, IMEI: 352094087982671) with duration 4.03 s +2018/09/16 03:00:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:00:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56675, IMEI: 352094087982671) +2018/09/16 03:00:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56675, IMEI: 352094087982671) with duration 6.15 s +2018/09/16 03:00:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:56687) +2018/09/16 03:00:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:00:44 ruptelaNet.go:261: Data received(client: [::1]:56687, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:00:44 ruptelaNet.go:278: Sent ACK (client: [::1]:56687, IMEI: 352094089712860) +2018/09/16 03:00:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:00:58 ruptelaNet.go:261: Data received(client: [::1]:56687, IMEI: 352094089712860) with duration 14.85 s +2018/09/16 03:00:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:00:58 ruptelaNet.go:278: Sent ACK (client: [::1]:56687, IMEI: 352094089712860) +2018/09/16 03:01:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56687, IMEI: 352094089712860) with duration 19.77 s +2018/09/16 03:01:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:56740) +2018/09/16 03:01:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:01:07 ruptelaNet.go:261: Data received(client: [::1]:56740, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 03:01:07 ruptelaNet.go:278: Sent ACK (client: [::1]:56740, IMEI: 352094087982671) +2018/09/16 03:01:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:01:10 ruptelaNet.go:261: Data received(client: [::1]:56740, IMEI: 352094087982671) with duration 4 s +2018/09/16 03:01:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:01:10 ruptelaNet.go:278: Sent ACK (client: [::1]:56740, IMEI: 352094087982671) +2018/09/16 03:01:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56740, IMEI: 352094087982671) with duration 6.38 s +2018/09/16 03:01:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:56799) +2018/09/16 03:01:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:01:36 ruptelaNet.go:261: Data received(client: [::1]:56799, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:01:36 ruptelaNet.go:278: Sent ACK (client: [::1]:56799, IMEI: 352094087982671) +2018/09/16 03:01:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:01:39 ruptelaNet.go:261: Data received(client: [::1]:56799, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:01:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:01:39 ruptelaNet.go:278: Sent ACK (client: [::1]:56799, IMEI: 352094087982671) +2018/09/16 03:01:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56799, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:01:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56815) +2018/09/16 03:01:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:01:41 ruptelaNet.go:261: Data received(client: [::1]:56815, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:01:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56815, IMEI: 352094089712860) +2018/09/16 03:01:43 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:01:43 ruptelaNet.go:261: Data received(client: [::1]:56815, IMEI: 352094089712860) with duration 1.69 s +2018/09/16 03:01:43 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:01:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56815, IMEI: 352094089712860) +2018/09/16 03:01:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56815, IMEI: 352094089712860) with duration 3.56 s +2018/09/16 03:02:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:56861) +2018/09/16 03:02:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:02:05 ruptelaNet.go:261: Data received(client: [::1]:56861, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 03:02:05 ruptelaNet.go:278: Sent ACK (client: [::1]:56861, IMEI: 352094087982671) +2018/09/16 03:02:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:02:08 ruptelaNet.go:261: Data received(client: [::1]:56861, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 03:02:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:02:08 ruptelaNet.go:278: Sent ACK (client: [::1]:56861, IMEI: 352094087982671) +2018/09/16 03:02:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56861, IMEI: 352094087982671) with duration 6 s +2018/09/16 03:02:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:56921) +2018/09/16 03:02:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:02:34 ruptelaNet.go:261: Data received(client: [::1]:56921, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 03:02:34 ruptelaNet.go:278: Sent ACK (client: [::1]:56921, IMEI: 352094087982671) +2018/09/16 03:02:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:02:37 ruptelaNet.go:261: Data received(client: [::1]:56921, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 03:02:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:02:37 ruptelaNet.go:278: Sent ACK (client: [::1]:56921, IMEI: 352094087982671) +2018/09/16 03:02:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56921, IMEI: 352094087982671) with duration 6 s +2018/09/16 03:02:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:56942) +2018/09/16 03:02:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:02:43 ruptelaNet.go:261: Data received(client: [::1]:56942, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:02:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56942, IMEI: 352094089712860) +2018/09/16 03:02:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:02:46 ruptelaNet.go:261: Data received(client: [::1]:56942, IMEI: 352094089712860) with duration 2.11 s +2018/09/16 03:02:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:02:46 ruptelaNet.go:278: Sent ACK (client: [::1]:56942, IMEI: 352094089712860) +2018/09/16 03:02:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56942, IMEI: 352094089712860) with duration 3.04 s +2018/09/16 03:03:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:56983) +2018/09/16 03:03:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:03:03 ruptelaNet.go:261: Data received(client: [::1]:56983, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:03:03 ruptelaNet.go:278: Sent ACK (client: [::1]:56983, IMEI: 352094087982671) +2018/09/16 03:03:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:03:06 ruptelaNet.go:261: Data received(client: [::1]:56983, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:03:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:03:06 ruptelaNet.go:278: Sent ACK (client: [::1]:56983, IMEI: 352094087982671) +2018/09/16 03:03:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56983, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 03:03:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:57041) +2018/09/16 03:03:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:03:32 ruptelaNet.go:261: Data received(client: [::1]:57041, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:03:32 ruptelaNet.go:278: Sent ACK (client: [::1]:57041, IMEI: 352094087982671) +2018/09/16 03:03:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:03:35 ruptelaNet.go:261: Data received(client: [::1]:57041, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 03:03:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:03:35 ruptelaNet.go:278: Sent ACK (client: [::1]:57041, IMEI: 352094087982671) +2018/09/16 03:03:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57041, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:03:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57067) +2018/09/16 03:03:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:03:42 ruptelaNet.go:261: Data received(client: [::1]:57067, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:03:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57067, IMEI: 352094089712860) +2018/09/16 03:03:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:03:45 ruptelaNet.go:261: Data received(client: [::1]:57067, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 03:03:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:03:45 ruptelaNet.go:278: Sent ACK (client: [::1]:57067, IMEI: 352094089712860) +2018/09/16 03:03:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57067, IMEI: 352094089712860) with duration 4.17 s +2018/09/16 03:04:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:57104) +2018/09/16 03:04:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:04:01 ruptelaNet.go:261: Data received(client: [::1]:57104, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:04:01 ruptelaNet.go:278: Sent ACK (client: [::1]:57104, IMEI: 352094087982671) +2018/09/16 03:04:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:04:05 ruptelaNet.go:261: Data received(client: [::1]:57104, IMEI: 352094087982671) with duration 4.5 s +2018/09/16 03:04:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:04:05 ruptelaNet.go:278: Sent ACK (client: [::1]:57104, IMEI: 352094087982671) +2018/09/16 03:04:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57104, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 03:04:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:57159) +2018/09/16 03:04:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:04:31 ruptelaNet.go:261: Data received(client: [::1]:57159, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 03:04:31 ruptelaNet.go:278: Sent ACK (client: [::1]:57159, IMEI: 352094087982671) +2018/09/16 03:04:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:04:34 ruptelaNet.go:261: Data received(client: [::1]:57159, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:04:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:04:34 ruptelaNet.go:278: Sent ACK (client: [::1]:57159, IMEI: 352094087982671) +2018/09/16 03:04:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57159, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 03:04:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57180) +2018/09/16 03:04:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:04:42 ruptelaNet.go:261: Data received(client: [::1]:57180, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:04:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57180, IMEI: 352094089712860) +2018/09/16 03:04:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:04:44 ruptelaNet.go:261: Data received(client: [::1]:57180, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 03:04:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:04:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57180, IMEI: 352094089712860) +2018/09/16 03:04:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57180, IMEI: 352094089712860) with duration 2.68 s +2018/09/16 03:04:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:57224) +2018/09/16 03:05:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:05:00 ruptelaNet.go:261: Data received(client: [::1]:57224, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:05:00 ruptelaNet.go:278: Sent ACK (client: [::1]:57224, IMEI: 352094087982671) +2018/09/16 03:05:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:05:03 ruptelaNet.go:261: Data received(client: [::1]:57224, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 03:05:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:05:03 ruptelaNet.go:278: Sent ACK (client: [::1]:57224, IMEI: 352094087982671) +2018/09/16 03:05:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57224, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 03:05:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:57285) +2018/09/16 03:05:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:05:29 ruptelaNet.go:261: Data received(client: [::1]:57285, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:05:29 ruptelaNet.go:278: Sent ACK (client: [::1]:57285, IMEI: 352094087982671) +2018/09/16 03:05:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:05:32 ruptelaNet.go:261: Data received(client: [::1]:57285, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:05:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:05:32 ruptelaNet.go:278: Sent ACK (client: [::1]:57285, IMEI: 352094087982671) +2018/09/16 03:05:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57285, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:05:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57313) +2018/09/16 03:05:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:05:42 ruptelaNet.go:261: Data received(client: [::1]:57313, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:05:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57313, IMEI: 352094089712860) +2018/09/16 03:05:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:05:44 ruptelaNet.go:261: Data received(client: [::1]:57313, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 03:05:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:05:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57313, IMEI: 352094089712860) +2018/09/16 03:05:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57313, IMEI: 352094089712860) with duration 2.61 s +2018/09/16 03:05:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:57345) +2018/09/16 03:05:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:05:58 ruptelaNet.go:261: Data received(client: [::1]:57345, IMEI: 352094087982671) with duration 0.88 s +2018/09/16 03:05:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57345, IMEI: 352094087982671) +2018/09/16 03:06:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:06:01 ruptelaNet.go:261: Data received(client: [::1]:57345, IMEI: 352094087982671) with duration 3.75 s +2018/09/16 03:06:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:06:01 ruptelaNet.go:278: Sent ACK (client: [::1]:57345, IMEI: 352094087982671) +2018/09/16 03:06:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57345, IMEI: 352094087982671) with duration 6 s +2018/09/16 03:06:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:57399) +2018/09/16 03:06:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:06:27 ruptelaNet.go:261: Data received(client: [::1]:57399, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 03:06:27 ruptelaNet.go:278: Sent ACK (client: [::1]:57399, IMEI: 352094087982671) +2018/09/16 03:06:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:06:30 ruptelaNet.go:261: Data received(client: [::1]:57399, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 03:06:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:06:30 ruptelaNet.go:278: Sent ACK (client: [::1]:57399, IMEI: 352094087982671) +2018/09/16 03:06:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57399, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 03:06:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:57434) +2018/09/16 03:06:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:06:43 ruptelaNet.go:261: Data received(client: [::1]:57434, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:06:43 ruptelaNet.go:278: Sent ACK (client: [::1]:57434, IMEI: 352094089712860) +2018/09/16 03:06:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:06:49 ruptelaNet.go:261: Data received(client: [::1]:57434, IMEI: 352094089712860) with duration 6.08 s +2018/09/16 03:06:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:06:49 ruptelaNet.go:278: Sent ACK (client: [::1]:57434, IMEI: 352094089712860) +2018/09/16 03:06:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57434, IMEI: 352094089712860) with duration 6.81 s +2018/09/16 03:06:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:57463) +2018/09/16 03:06:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:06:56 ruptelaNet.go:261: Data received(client: [::1]:57463, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 03:06:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57463, IMEI: 352094087982671) +2018/09/16 03:06:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:06:59 ruptelaNet.go:261: Data received(client: [::1]:57463, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:06:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:06:59 ruptelaNet.go:278: Sent ACK (client: [::1]:57463, IMEI: 352094087982671) +2018/09/16 03:07:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57463, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:07:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:57528) +2018/09/16 03:07:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:07:25 ruptelaNet.go:261: Data received(client: [::1]:57528, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 03:07:25 ruptelaNet.go:278: Sent ACK (client: [::1]:57528, IMEI: 352094087982671) +2018/09/16 03:07:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:07:28 ruptelaNet.go:261: Data received(client: [::1]:57528, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 03:07:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:07:28 ruptelaNet.go:278: Sent ACK (client: [::1]:57528, IMEI: 352094087982671) +2018/09/16 03:07:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57528, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 03:07:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:57562) +2018/09/16 03:07:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:07:43 ruptelaNet.go:261: Data received(client: [::1]:57562, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:07:43 ruptelaNet.go:278: Sent ACK (client: [::1]:57562, IMEI: 352094089712860) +2018/09/16 03:07:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:07:45 ruptelaNet.go:261: Data received(client: [::1]:57562, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 03:07:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:07:45 ruptelaNet.go:278: Sent ACK (client: [::1]:57562, IMEI: 352094089712860) +2018/09/16 03:07:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57562, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 03:07:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:57589) +2018/09/16 03:07:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:07:54 ruptelaNet.go:261: Data received(client: [::1]:57589, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:07:54 ruptelaNet.go:278: Sent ACK (client: [::1]:57589, IMEI: 352094087982671) +2018/09/16 03:07:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:07:57 ruptelaNet.go:261: Data received(client: [::1]:57589, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 03:07:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:07:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57589, IMEI: 352094087982671) +2018/09/16 03:07:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57589, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:08:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:57654) +2018/09/16 03:08:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:08:26 ruptelaNet.go:261: Data received(client: [::1]:57654, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:08:26 ruptelaNet.go:278: Sent ACK (client: [::1]:57654, IMEI: 352094087982671) +2018/09/16 03:08:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:08:28 ruptelaNet.go:261: Data received(client: [::1]:57654, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:08:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:08:28 ruptelaNet.go:278: Sent ACK (client: [::1]:57654, IMEI: 352094087982671) +2018/09/16 03:08:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57654, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 03:08:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57688) +2018/09/16 03:08:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:08:42 ruptelaNet.go:261: Data received(client: [::1]:57688, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:08:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57688, IMEI: 352094089712860) +2018/09/16 03:08:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:08:44 ruptelaNet.go:261: Data received(client: [::1]:57688, IMEI: 352094089712860) with duration 2.37 s +2018/09/16 03:08:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:08:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57688, IMEI: 352094089712860) +2018/09/16 03:08:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57688, IMEI: 352094089712860) with duration 4.05 s +2018/09/16 03:08:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:57712) +2018/09/16 03:08:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:08:54 ruptelaNet.go:261: Data received(client: [::1]:57712, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:08:54 ruptelaNet.go:278: Sent ACK (client: [::1]:57712, IMEI: 352094087982671) +2018/09/16 03:08:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:08:57 ruptelaNet.go:261: Data received(client: [::1]:57712, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 03:08:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:08:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57712, IMEI: 352094087982671) +2018/09/16 03:08:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57712, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:09:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:57773) +2018/09/16 03:09:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:09:23 ruptelaNet.go:261: Data received(client: [::1]:57773, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:09:23 ruptelaNet.go:278: Sent ACK (client: [::1]:57773, IMEI: 352094087982671) +2018/09/16 03:09:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:09:26 ruptelaNet.go:261: Data received(client: [::1]:57773, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 03:09:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:09:26 ruptelaNet.go:278: Sent ACK (client: [::1]:57773, IMEI: 352094087982671) +2018/09/16 03:09:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57773, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 03:09:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57809) +2018/09/16 03:09:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:09:42 ruptelaNet.go:261: Data received(client: [::1]:57809, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:09:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57809, IMEI: 352094089712860) +2018/09/16 03:09:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:09:44 ruptelaNet.go:261: Data received(client: [::1]:57809, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 03:09:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:09:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57809, IMEI: 352094089712860) +2018/09/16 03:09:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57809, IMEI: 352094089712860) with duration 2.63 s +2018/09/16 03:09:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:57832) +2018/09/16 03:09:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:09:52 ruptelaNet.go:261: Data received(client: [::1]:57832, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:09:52 ruptelaNet.go:278: Sent ACK (client: [::1]:57832, IMEI: 352094087982671) +2018/09/16 03:09:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:09:56 ruptelaNet.go:261: Data received(client: [::1]:57832, IMEI: 352094087982671) with duration 4.32 s +2018/09/16 03:09:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:09:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57832, IMEI: 352094087982671) +2018/09/16 03:10:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57832, IMEI: 352094087982671) with duration 14.13 s +2018/09/16 03:10:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:57905) +2018/09/16 03:10:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:10:29 ruptelaNet.go:261: Data received(client: [::1]:57905, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 03:10:29 ruptelaNet.go:278: Sent ACK (client: [::1]:57905, IMEI: 352094087982671) +2018/09/16 03:10:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:10:32 ruptelaNet.go:261: Data received(client: [::1]:57905, IMEI: 352094087982671) with duration 3.63 s +2018/09/16 03:10:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:10:32 ruptelaNet.go:278: Sent ACK (client: [::1]:57905, IMEI: 352094087982671) +2018/09/16 03:10:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57905, IMEI: 352094087982671) with duration 5.69 s +2018/09/16 03:10:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:57930) +2018/09/16 03:10:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:10:42 ruptelaNet.go:261: Data received(client: [::1]:57930, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:10:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57930, IMEI: 352094089712860) +2018/09/16 03:10:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:10:44 ruptelaNet.go:261: Data received(client: [::1]:57930, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 03:10:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:10:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57930, IMEI: 352094089712860) +2018/09/16 03:10:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57930, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 03:10:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:57959) +2018/09/16 03:10:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:10:58 ruptelaNet.go:261: Data received(client: [::1]:57959, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:10:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57959, IMEI: 352094087982671) +2018/09/16 03:11:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:11:01 ruptelaNet.go:261: Data received(client: [::1]:57959, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:11:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:11:01 ruptelaNet.go:278: Sent ACK (client: [::1]:57959, IMEI: 352094087982671) +2018/09/16 03:11:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57959, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:11:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:58013) +2018/09/16 03:11:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:11:27 ruptelaNet.go:261: Data received(client: [::1]:58013, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:11:27 ruptelaNet.go:278: Sent ACK (client: [::1]:58013, IMEI: 352094087982671) +2018/09/16 03:11:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:11:30 ruptelaNet.go:261: Data received(client: [::1]:58013, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 03:11:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:11:30 ruptelaNet.go:278: Sent ACK (client: [::1]:58013, IMEI: 352094087982671) +2018/09/16 03:11:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58013, IMEI: 352094087982671) with duration 6.18 s +2018/09/16 03:11:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:58050) +2018/09/16 03:11:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:11:42 ruptelaNet.go:261: Data received(client: [::1]:58050, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:11:42 ruptelaNet.go:278: Sent ACK (client: [::1]:58050, IMEI: 352094089712860) +2018/09/16 03:11:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:11:44 ruptelaNet.go:261: Data received(client: [::1]:58050, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 03:11:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:11:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58050, IMEI: 352094089712860) +2018/09/16 03:11:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58050, IMEI: 352094089712860) with duration 2.72 s +2018/09/16 03:11:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:58080) +2018/09/16 03:11:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:11:56 ruptelaNet.go:261: Data received(client: [::1]:58080, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:11:56 ruptelaNet.go:278: Sent ACK (client: [::1]:58080, IMEI: 352094087982671) +2018/09/16 03:11:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:11:59 ruptelaNet.go:261: Data received(client: [::1]:58080, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 03:11:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:11:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58080, IMEI: 352094087982671) +2018/09/16 03:12:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58080, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 03:12:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:58145) +2018/09/16 03:12:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:12:25 ruptelaNet.go:261: Data received(client: [::1]:58145, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 03:12:25 ruptelaNet.go:278: Sent ACK (client: [::1]:58145, IMEI: 352094087982671) +2018/09/16 03:12:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:12:28 ruptelaNet.go:261: Data received(client: [::1]:58145, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:12:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:12:28 ruptelaNet.go:278: Sent ACK (client: [::1]:58145, IMEI: 352094087982671) +2018/09/16 03:12:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58145, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:12:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58179) +2018/09/16 03:12:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:12:43 ruptelaNet.go:261: Data received(client: [::1]:58179, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:12:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58179, IMEI: 352094089712860) +2018/09/16 03:12:44 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:12:44 ruptelaNet.go:261: Data received(client: [::1]:58179, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 03:12:44 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:12:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58179, IMEI: 352094089712860) +2018/09/16 03:12:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58179, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 03:12:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:58209) +2018/09/16 03:12:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:12:54 ruptelaNet.go:261: Data received(client: [::1]:58209, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:12:54 ruptelaNet.go:278: Sent ACK (client: [::1]:58209, IMEI: 352094087982671) +2018/09/16 03:12:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:12:57 ruptelaNet.go:261: Data received(client: [::1]:58209, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 03:12:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:12:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58209, IMEI: 352094087982671) +2018/09/16 03:12:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58209, IMEI: 352094087982671) with duration 6.26 s +2018/09/16 03:13:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:58266) +2018/09/16 03:13:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:13:23 ruptelaNet.go:261: Data received(client: [::1]:58266, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:13:23 ruptelaNet.go:278: Sent ACK (client: [::1]:58266, IMEI: 352094087982671) +2018/09/16 03:13:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:13:26 ruptelaNet.go:261: Data received(client: [::1]:58266, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 03:13:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:13:26 ruptelaNet.go:278: Sent ACK (client: [::1]:58266, IMEI: 352094087982671) +2018/09/16 03:13:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58266, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:13:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58303) +2018/09/16 03:13:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:13:43 ruptelaNet.go:261: Data received(client: [::1]:58303, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:13:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58303, IMEI: 352094089712860) +2018/09/16 03:13:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:13:45 ruptelaNet.go:261: Data received(client: [::1]:58303, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 03:13:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:13:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58303, IMEI: 352094089712860) +2018/09/16 03:13:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58303, IMEI: 352094089712860) with duration 2.91 s +2018/09/16 03:13:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:58324) +2018/09/16 03:13:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:13:52 ruptelaNet.go:261: Data received(client: [::1]:58324, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 03:13:52 ruptelaNet.go:278: Sent ACK (client: [::1]:58324, IMEI: 352094087982671) +2018/09/16 03:13:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:13:55 ruptelaNet.go:261: Data received(client: [::1]:58324, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:13:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:13:55 ruptelaNet.go:278: Sent ACK (client: [::1]:58324, IMEI: 352094087982671) +2018/09/16 03:13:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58324, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 03:14:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:58383) +2018/09/16 03:14:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:14:21 ruptelaNet.go:261: Data received(client: [::1]:58383, IMEI: 352094087982671) with duration 0.78 s +2018/09/16 03:14:21 ruptelaNet.go:278: Sent ACK (client: [::1]:58383, IMEI: 352094087982671) +2018/09/16 03:14:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:14:24 ruptelaNet.go:261: Data received(client: [::1]:58383, IMEI: 352094087982671) with duration 3.65 s +2018/09/16 03:14:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:14:24 ruptelaNet.go:278: Sent ACK (client: [::1]:58383, IMEI: 352094087982671) +2018/09/16 03:14:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58383, IMEI: 352094087982671) with duration 5.71 s +2018/09/16 03:14:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58428) +2018/09/16 03:14:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:14:43 ruptelaNet.go:261: Data received(client: [::1]:58428, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:14:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58428, IMEI: 352094089712860) +2018/09/16 03:14:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:14:45 ruptelaNet.go:261: Data received(client: [::1]:58428, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 03:14:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:14:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58428, IMEI: 352094089712860) +2018/09/16 03:14:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58428, IMEI: 352094089712860) with duration 3.09 s +2018/09/16 03:14:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:58442) +2018/09/16 03:14:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:14:50 ruptelaNet.go:261: Data received(client: [::1]:58442, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:14:50 ruptelaNet.go:278: Sent ACK (client: [::1]:58442, IMEI: 352094087982671) +2018/09/16 03:14:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:14:53 ruptelaNet.go:261: Data received(client: [::1]:58442, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 03:14:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:14:53 ruptelaNet.go:278: Sent ACK (client: [::1]:58442, IMEI: 352094087982671) +2018/09/16 03:14:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58442, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:15:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58499) +2018/09/16 03:15:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:15:19 ruptelaNet.go:261: Data received(client: [::1]:58499, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:15:19 ruptelaNet.go:278: Sent ACK (client: [::1]:58499, IMEI: 352094087982671) +2018/09/16 03:15:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:15:22 ruptelaNet.go:261: Data received(client: [::1]:58499, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 03:15:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:15:22 ruptelaNet.go:278: Sent ACK (client: [::1]:58499, IMEI: 352094087982671) +2018/09/16 03:15:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58499, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:15:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58549) +2018/09/16 03:15:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:15:43 ruptelaNet.go:261: Data received(client: [::1]:58549, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:15:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58549, IMEI: 352094089712860) +2018/09/16 03:15:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:15:45 ruptelaNet.go:261: Data received(client: [::1]:58549, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 03:15:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:15:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58549, IMEI: 352094089712860) +2018/09/16 03:15:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58549, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 03:15:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:58560) +2018/09/16 03:15:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:15:48 ruptelaNet.go:261: Data received(client: [::1]:58560, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:15:48 ruptelaNet.go:278: Sent ACK (client: [::1]:58560, IMEI: 352094087982671) +2018/09/16 03:15:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:15:51 ruptelaNet.go:261: Data received(client: [::1]:58560, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:15:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:15:51 ruptelaNet.go:278: Sent ACK (client: [::1]:58560, IMEI: 352094087982671) +2018/09/16 03:15:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58560, IMEI: 352094087982671) with duration 7.88 s +2018/09/16 03:16:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:58624) +2018/09/16 03:16:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:16:17 ruptelaNet.go:261: Data received(client: [::1]:58624, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 03:16:17 ruptelaNet.go:278: Sent ACK (client: [::1]:58624, IMEI: 352094087982671) +2018/09/16 03:16:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:16:20 ruptelaNet.go:261: Data received(client: [::1]:58624, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 03:16:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:16:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58624, IMEI: 352094087982671) +2018/09/16 03:16:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58624, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 03:16:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58678) +2018/09/16 03:16:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:16:43 ruptelaNet.go:261: Data received(client: [::1]:58678, IMEI: 352094089712860) with duration 0.26 s +2018/09/16 03:16:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58678, IMEI: 352094089712860) +2018/09/16 03:16:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:16:45 ruptelaNet.go:261: Data received(client: [::1]:58678, IMEI: 352094089712860) with duration 2.29 s +2018/09/16 03:16:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:16:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58678, IMEI: 352094089712860) +2018/09/16 03:16:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:58684) +2018/09/16 03:16:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58678, IMEI: 352094089712860) with duration 3.12 s +2018/09/16 03:16:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:16:46 ruptelaNet.go:261: Data received(client: [::1]:58684, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:16:46 ruptelaNet.go:278: Sent ACK (client: [::1]:58684, IMEI: 352094087982671) +2018/09/16 03:16:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:16:49 ruptelaNet.go:261: Data received(client: [::1]:58684, IMEI: 352094087982671) with duration 3.47 s +2018/09/16 03:16:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:16:49 ruptelaNet.go:278: Sent ACK (client: [::1]:58684, IMEI: 352094087982671) +2018/09/16 03:16:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58684, IMEI: 352094087982671) with duration 5.62 s +2018/09/16 03:17:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:58747) +2018/09/16 03:17:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:17:15 ruptelaNet.go:261: Data received(client: [::1]:58747, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 03:17:15 ruptelaNet.go:278: Sent ACK (client: [::1]:58747, IMEI: 352094087982671) +2018/09/16 03:17:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:17:18 ruptelaNet.go:261: Data received(client: [::1]:58747, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 03:17:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:17:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58747, IMEI: 352094087982671) +2018/09/16 03:17:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58747, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 03:17:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58805) +2018/09/16 03:17:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:17:43 ruptelaNet.go:261: Data received(client: [::1]:58805, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:17:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58805, IMEI: 352094089712860) +2018/09/16 03:17:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58810) +2018/09/16 03:17:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:17:44 ruptelaNet.go:261: Data received(client: [::1]:58810, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:17:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58810, IMEI: 352094087982671) +2018/09/16 03:17:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:17:45 ruptelaNet.go:261: Data received(client: [::1]:58805, IMEI: 352094089712860) with duration 1.84 s +2018/09/16 03:17:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:17:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58805, IMEI: 352094089712860) +2018/09/16 03:17:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58805, IMEI: 352094089712860) with duration 3.04 s +2018/09/16 03:17:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:17:47 ruptelaNet.go:261: Data received(client: [::1]:58810, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 03:17:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:17:47 ruptelaNet.go:278: Sent ACK (client: [::1]:58810, IMEI: 352094087982671) +2018/09/16 03:17:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58810, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:18:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:58866) +2018/09/16 03:18:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:18:13 ruptelaNet.go:261: Data received(client: [::1]:58866, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 03:18:13 ruptelaNet.go:278: Sent ACK (client: [::1]:58866, IMEI: 352094087982671) +2018/09/16 03:18:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:18:16 ruptelaNet.go:261: Data received(client: [::1]:58866, IMEI: 352094087982671) with duration 4.03 s +2018/09/16 03:18:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:18:16 ruptelaNet.go:278: Sent ACK (client: [::1]:58866, IMEI: 352094087982671) +2018/09/16 03:18:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58866, IMEI: 352094087982671) with duration 6.19 s +2018/09/16 03:18:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:58929) +2018/09/16 03:18:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:18:42 ruptelaNet.go:261: Data received(client: [::1]:58929, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:18:42 ruptelaNet.go:278: Sent ACK (client: [::1]:58929, IMEI: 352094087982671) +2018/09/16 03:18:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58935) +2018/09/16 03:18:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:18:44 ruptelaNet.go:261: Data received(client: [::1]:58935, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 03:18:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58935, IMEI: 352094089712860) +2018/09/16 03:18:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:18:45 ruptelaNet.go:261: Data received(client: [::1]:58929, IMEI: 352094087982671) with duration 3.74 s +2018/09/16 03:18:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:18:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58929, IMEI: 352094087982671) +2018/09/16 03:18:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:18:46 ruptelaNet.go:261: Data received(client: [::1]:58935, IMEI: 352094089712860) with duration 2.32 s +2018/09/16 03:18:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:18:46 ruptelaNet.go:278: Sent ACK (client: [::1]:58935, IMEI: 352094089712860) +2018/09/16 03:18:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58935, IMEI: 352094089712860) with duration 3.06 s +2018/09/16 03:18:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58929, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 03:19:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:58993) +2018/09/16 03:19:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:19:11 ruptelaNet.go:261: Data received(client: [::1]:58993, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 03:19:11 ruptelaNet.go:278: Sent ACK (client: [::1]:58993, IMEI: 352094087982671) +2018/09/16 03:19:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:19:14 ruptelaNet.go:261: Data received(client: [::1]:58993, IMEI: 352094087982671) with duration 4.32 s +2018/09/16 03:19:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:19:14 ruptelaNet.go:278: Sent ACK (client: [::1]:58993, IMEI: 352094087982671) +2018/09/16 03:19:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58993, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 03:19:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:59046) +2018/09/16 03:19:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:19:40 ruptelaNet.go:261: Data received(client: [::1]:59046, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 03:19:40 ruptelaNet.go:278: Sent ACK (client: [::1]:59046, IMEI: 352094087982671) +2018/09/16 03:19:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:19:43 ruptelaNet.go:261: Data received(client: [::1]:59046, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 03:19:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:19:43 ruptelaNet.go:278: Sent ACK (client: [::1]:59046, IMEI: 352094087982671) +2018/09/16 03:19:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:59058) +2018/09/16 03:19:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:19:43 ruptelaNet.go:261: Data received(client: [::1]:59058, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:19:43 ruptelaNet.go:278: Sent ACK (client: [::1]:59058, IMEI: 352094089712860) +2018/09/16 03:19:45 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:19:45 ruptelaNet.go:261: Data received(client: [::1]:59058, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 03:19:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59046, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 03:19:45 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:19:45 ruptelaNet.go:278: Sent ACK (client: [::1]:59058, IMEI: 352094089712860) +2018/09/16 03:19:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59058, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 03:20:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:59105) +2018/09/16 03:20:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:20:09 ruptelaNet.go:261: Data received(client: [::1]:59105, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 03:20:09 ruptelaNet.go:278: Sent ACK (client: [::1]:59105, IMEI: 352094087982671) +2018/09/16 03:20:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:20:12 ruptelaNet.go:261: Data received(client: [::1]:59105, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 03:20:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:20:12 ruptelaNet.go:278: Sent ACK (client: [::1]:59105, IMEI: 352094087982671) +2018/09/16 03:20:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59105, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 03:20:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:59163) +2018/09/16 03:20:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:20:38 ruptelaNet.go:261: Data received(client: [::1]:59163, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 03:20:38 ruptelaNet.go:278: Sent ACK (client: [::1]:59163, IMEI: 352094087982671) +2018/09/16 03:20:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:20:41 ruptelaNet.go:261: Data received(client: [::1]:59163, IMEI: 352094087982671) with duration 4.05 s +2018/09/16 03:20:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:20:41 ruptelaNet.go:278: Sent ACK (client: [::1]:59163, IMEI: 352094087982671) +2018/09/16 03:20:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59163, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 03:20:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59179) +2018/09/16 03:20:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:20:44 ruptelaNet.go:261: Data received(client: [::1]:59179, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:20:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59179, IMEI: 352094089712860) +2018/09/16 03:20:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:20:46 ruptelaNet.go:261: Data received(client: [::1]:59179, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 03:20:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:20:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59179, IMEI: 352094089712860) +2018/09/16 03:20:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59179, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:21:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:59229) +2018/09/16 03:21:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:21:07 ruptelaNet.go:261: Data received(client: [::1]:59229, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:21:07 ruptelaNet.go:278: Sent ACK (client: [::1]:59229, IMEI: 352094087982671) +2018/09/16 03:21:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:21:10 ruptelaNet.go:261: Data received(client: [::1]:59229, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:21:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:21:10 ruptelaNet.go:278: Sent ACK (client: [::1]:59229, IMEI: 352094087982671) +2018/09/16 03:21:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59229, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:21:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:59286) +2018/09/16 03:21:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:21:36 ruptelaNet.go:261: Data received(client: [::1]:59286, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:21:36 ruptelaNet.go:278: Sent ACK (client: [::1]:59286, IMEI: 352094087982671) +2018/09/16 03:21:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:21:39 ruptelaNet.go:261: Data received(client: [::1]:59286, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:21:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:21:39 ruptelaNet.go:278: Sent ACK (client: [::1]:59286, IMEI: 352094087982671) +2018/09/16 03:21:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59286, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 03:21:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:59303) +2018/09/16 03:21:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:21:44 ruptelaNet.go:261: Data received(client: [::1]:59303, IMEI: 352094089712860) with duration 0.24 s +2018/09/16 03:21:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59303, IMEI: 352094089712860) +2018/09/16 03:21:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:21:46 ruptelaNet.go:261: Data received(client: [::1]:59303, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 03:21:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:21:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59303, IMEI: 352094089712860) +2018/09/16 03:21:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59303, IMEI: 352094089712860) with duration 3.69 s +2018/09/16 03:22:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:59347) +2018/09/16 03:22:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:22:05 ruptelaNet.go:261: Data received(client: [::1]:59347, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:22:05 ruptelaNet.go:278: Sent ACK (client: [::1]:59347, IMEI: 352094087982671) +2018/09/16 03:22:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:22:08 ruptelaNet.go:261: Data received(client: [::1]:59347, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:22:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:22:08 ruptelaNet.go:278: Sent ACK (client: [::1]:59347, IMEI: 352094087982671) +2018/09/16 03:22:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59347, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:22:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:59407) +2018/09/16 03:22:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:22:34 ruptelaNet.go:261: Data received(client: [::1]:59407, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:22:34 ruptelaNet.go:278: Sent ACK (client: [::1]:59407, IMEI: 352094087982671) +2018/09/16 03:22:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:22:37 ruptelaNet.go:261: Data received(client: [::1]:59407, IMEI: 352094087982671) with duration 3.47 s +2018/09/16 03:22:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:22:37 ruptelaNet.go:278: Sent ACK (client: [::1]:59407, IMEI: 352094087982671) +2018/09/16 03:22:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59407, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 03:22:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59423) +2018/09/16 03:22:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:22:44 ruptelaNet.go:261: Data received(client: [::1]:59423, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:22:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59423, IMEI: 352094089712860) +2018/09/16 03:22:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:22:47 ruptelaNet.go:261: Data received(client: [::1]:59423, IMEI: 352094089712860) with duration 2.43 s +2018/09/16 03:22:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:22:47 ruptelaNet.go:278: Sent ACK (client: [::1]:59423, IMEI: 352094089712860) +2018/09/16 03:22:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59423, IMEI: 352094089712860) with duration 4.22 s +2018/09/16 03:23:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:59466) +2018/09/16 03:23:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:23:03 ruptelaNet.go:261: Data received(client: [::1]:59466, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 03:23:03 ruptelaNet.go:278: Sent ACK (client: [::1]:59466, IMEI: 352094087982671) +2018/09/16 03:23:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:23:06 ruptelaNet.go:261: Data received(client: [::1]:59466, IMEI: 352094087982671) with duration 4.06 s +2018/09/16 03:23:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:23:06 ruptelaNet.go:278: Sent ACK (client: [::1]:59466, IMEI: 352094087982671) +2018/09/16 03:23:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59466, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 03:23:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:59523) +2018/09/16 03:23:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:23:32 ruptelaNet.go:261: Data received(client: [::1]:59523, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:23:32 ruptelaNet.go:278: Sent ACK (client: [::1]:59523, IMEI: 352094087982671) +2018/09/16 03:23:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:23:35 ruptelaNet.go:261: Data received(client: [::1]:59523, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:23:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:23:35 ruptelaNet.go:278: Sent ACK (client: [::1]:59523, IMEI: 352094087982671) +2018/09/16 03:23:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59523, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 03:23:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59558) +2018/09/16 03:23:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:23:44 ruptelaNet.go:261: Data received(client: [::1]:59558, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:23:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59558, IMEI: 352094089712860) +2018/09/16 03:23:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:23:46 ruptelaNet.go:261: Data received(client: [::1]:59558, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 03:23:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:23:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59558, IMEI: 352094089712860) +2018/09/16 03:23:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59558, IMEI: 352094089712860) with duration 2.7 s +2018/09/16 03:24:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:59596) +2018/09/16 03:24:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:24:01 ruptelaNet.go:261: Data received(client: [::1]:59596, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:24:01 ruptelaNet.go:278: Sent ACK (client: [::1]:59596, IMEI: 352094087982671) +2018/09/16 03:24:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:24:04 ruptelaNet.go:261: Data received(client: [::1]:59596, IMEI: 352094087982671) with duration 4.02 s +2018/09/16 03:24:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:24:04 ruptelaNet.go:278: Sent ACK (client: [::1]:59596, IMEI: 352094087982671) +2018/09/16 03:24:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59596, IMEI: 352094087982671) with duration 6.23 s +2018/09/16 03:24:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:59655) +2018/09/16 03:24:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:24:30 ruptelaNet.go:261: Data received(client: [::1]:59655, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:24:30 ruptelaNet.go:278: Sent ACK (client: [::1]:59655, IMEI: 352094087982671) +2018/09/16 03:24:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:24:33 ruptelaNet.go:261: Data received(client: [::1]:59655, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 03:24:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:24:33 ruptelaNet.go:278: Sent ACK (client: [::1]:59655, IMEI: 352094087982671) +2018/09/16 03:24:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59655, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 03:24:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:59688) +2018/09/16 03:24:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:24:46 ruptelaNet.go:261: Data received(client: [::1]:59688, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 03:24:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59688, IMEI: 352094089712860) +2018/09/16 03:24:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:24:48 ruptelaNet.go:261: Data received(client: [::1]:59688, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 03:24:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:24:48 ruptelaNet.go:278: Sent ACK (client: [::1]:59688, IMEI: 352094089712860) +2018/09/16 03:24:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59688, IMEI: 352094089712860) with duration 3.99 s +2018/09/16 03:24:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59716) +2018/09/16 03:24:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:24:59 ruptelaNet.go:261: Data received(client: [::1]:59716, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 03:24:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59716, IMEI: 352094087982671) +2018/09/16 03:25:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:25:02 ruptelaNet.go:261: Data received(client: [::1]:59716, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 03:25:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:25:02 ruptelaNet.go:278: Sent ACK (client: [::1]:59716, IMEI: 352094087982671) +2018/09/16 03:25:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59716, IMEI: 352094087982671) with duration 6.69 s +2018/09/16 03:25:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:59776) +2018/09/16 03:25:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:25:29 ruptelaNet.go:261: Data received(client: [::1]:59776, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 03:25:29 ruptelaNet.go:278: Sent ACK (client: [::1]:59776, IMEI: 352094087982671) +2018/09/16 03:25:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:25:32 ruptelaNet.go:261: Data received(client: [::1]:59776, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 03:25:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:25:32 ruptelaNet.go:278: Sent ACK (client: [::1]:59776, IMEI: 352094087982671) +2018/09/16 03:25:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59776, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 03:25:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59807) +2018/09/16 03:25:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:25:44 ruptelaNet.go:261: Data received(client: [::1]:59807, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:25:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59807, IMEI: 352094089712860) +2018/09/16 03:25:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:25:46 ruptelaNet.go:261: Data received(client: [::1]:59807, IMEI: 352094089712860) with duration 2.01 s +2018/09/16 03:25:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:25:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59807, IMEI: 352094089712860) +2018/09/16 03:25:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59807, IMEI: 352094089712860) with duration 3.19 s +2018/09/16 03:25:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:59838) +2018/09/16 03:25:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:25:58 ruptelaNet.go:261: Data received(client: [::1]:59838, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:25:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59838, IMEI: 352094087982671) +2018/09/16 03:26:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:26:01 ruptelaNet.go:261: Data received(client: [::1]:59838, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:26:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:26:01 ruptelaNet.go:278: Sent ACK (client: [::1]:59838, IMEI: 352094087982671) +2018/09/16 03:26:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59838, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:26:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:59893) +2018/09/16 03:26:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:26:27 ruptelaNet.go:261: Data received(client: [::1]:59893, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 03:26:27 ruptelaNet.go:278: Sent ACK (client: [::1]:59893, IMEI: 352094087982671) +2018/09/16 03:26:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:26:30 ruptelaNet.go:261: Data received(client: [::1]:59893, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 03:26:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:26:30 ruptelaNet.go:278: Sent ACK (client: [::1]:59893, IMEI: 352094087982671) +2018/09/16 03:26:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59893, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 03:26:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59930) +2018/09/16 03:26:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:26:44 ruptelaNet.go:261: Data received(client: [::1]:59930, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:26:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59930, IMEI: 352094089712860) +2018/09/16 03:26:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:26:46 ruptelaNet.go:261: Data received(client: [::1]:59930, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 03:26:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:26:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59930, IMEI: 352094089712860) +2018/09/16 03:26:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59930, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 03:26:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:59954) +2018/09/16 03:26:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:26:56 ruptelaNet.go:261: Data received(client: [::1]:59954, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:26:56 ruptelaNet.go:278: Sent ACK (client: [::1]:59954, IMEI: 352094087982671) +2018/09/16 03:26:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:26:59 ruptelaNet.go:261: Data received(client: [::1]:59954, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:26:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:26:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59954, IMEI: 352094087982671) +2018/09/16 03:27:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59954, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:27:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:60015) +2018/09/16 03:27:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:27:25 ruptelaNet.go:261: Data received(client: [::1]:60015, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 03:27:25 ruptelaNet.go:278: Sent ACK (client: [::1]:60015, IMEI: 352094087982671) +2018/09/16 03:27:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:27:28 ruptelaNet.go:261: Data received(client: [::1]:60015, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 03:27:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:27:28 ruptelaNet.go:278: Sent ACK (client: [::1]:60015, IMEI: 352094087982671) +2018/09/16 03:27:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60015, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 03:27:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:60053) +2018/09/16 03:27:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:27:44 ruptelaNet.go:261: Data received(client: [::1]:60053, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:27:44 ruptelaNet.go:278: Sent ACK (client: [::1]:60053, IMEI: 352094089712860) +2018/09/16 03:27:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:27:46 ruptelaNet.go:261: Data received(client: [::1]:60053, IMEI: 352094089712860) with duration 2 s +2018/09/16 03:27:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:27:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60053, IMEI: 352094089712860) +2018/09/16 03:27:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60053, IMEI: 352094089712860) with duration 4.3 s +2018/09/16 03:27:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:60071) +2018/09/16 03:27:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:27:54 ruptelaNet.go:261: Data received(client: [::1]:60071, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:27:54 ruptelaNet.go:278: Sent ACK (client: [::1]:60071, IMEI: 352094087982671) +2018/09/16 03:27:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:27:58 ruptelaNet.go:261: Data received(client: [::1]:60071, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 03:27:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:27:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60071, IMEI: 352094087982671) +2018/09/16 03:28:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60071, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 03:28:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:60128) +2018/09/16 03:28:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:28:23 ruptelaNet.go:261: Data received(client: [::1]:60128, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 03:28:23 ruptelaNet.go:278: Sent ACK (client: [::1]:60128, IMEI: 352094087982671) +2018/09/16 03:28:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:28:26 ruptelaNet.go:261: Data received(client: [::1]:60128, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 03:28:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:28:26 ruptelaNet.go:278: Sent ACK (client: [::1]:60128, IMEI: 352094087982671) +2018/09/16 03:28:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60128, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:28:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:60177) +2018/09/16 03:28:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:28:46 ruptelaNet.go:261: Data received(client: [::1]:60177, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:28:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60177, IMEI: 352094089712860) +2018/09/16 03:28:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:28:48 ruptelaNet.go:261: Data received(client: [::1]:60177, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 03:28:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:28:48 ruptelaNet.go:278: Sent ACK (client: [::1]:60177, IMEI: 352094089712860) +2018/09/16 03:28:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60177, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 03:28:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:60193) +2018/09/16 03:28:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:28:52 ruptelaNet.go:261: Data received(client: [::1]:60193, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:28:52 ruptelaNet.go:278: Sent ACK (client: [::1]:60193, IMEI: 352094087982671) +2018/09/16 03:28:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:28:55 ruptelaNet.go:261: Data received(client: [::1]:60193, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:28:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:28:55 ruptelaNet.go:278: Sent ACK (client: [::1]:60193, IMEI: 352094087982671) +2018/09/16 03:28:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60193, IMEI: 352094087982671) with duration 7.84 s +2018/09/16 03:29:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:60251) +2018/09/16 03:29:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:29:21 ruptelaNet.go:261: Data received(client: [::1]:60251, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:29:21 ruptelaNet.go:278: Sent ACK (client: [::1]:60251, IMEI: 352094087982671) +2018/09/16 03:29:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:29:25 ruptelaNet.go:261: Data received(client: [::1]:60251, IMEI: 352094087982671) with duration 4.42 s +2018/09/16 03:29:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:29:25 ruptelaNet.go:278: Sent ACK (client: [::1]:60251, IMEI: 352094087982671) +2018/09/16 03:29:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60251, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 03:29:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:60303) +2018/09/16 03:29:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:29:44 ruptelaNet.go:261: Data received(client: [::1]:60303, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:29:44 ruptelaNet.go:278: Sent ACK (client: [::1]:60303, IMEI: 352094089712860) +2018/09/16 03:29:46 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:29:46 ruptelaNet.go:261: Data received(client: [::1]:60303, IMEI: 352094089712860) with duration 2 s +2018/09/16 03:29:46 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:29:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60303, IMEI: 352094089712860) +2018/09/16 03:29:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60303, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:29:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:60317) +2018/09/16 03:29:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:29:51 ruptelaNet.go:261: Data received(client: [::1]:60317, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:29:51 ruptelaNet.go:278: Sent ACK (client: [::1]:60317, IMEI: 352094087982671) +2018/09/16 03:29:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:29:54 ruptelaNet.go:261: Data received(client: [::1]:60317, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:29:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:29:54 ruptelaNet.go:278: Sent ACK (client: [::1]:60317, IMEI: 352094087982671) +2018/09/16 03:29:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60317, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 03:30:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:60373) +2018/09/16 03:30:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:30:20 ruptelaNet.go:261: Data received(client: [::1]:60373, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 03:30:20 ruptelaNet.go:278: Sent ACK (client: [::1]:60373, IMEI: 352094087982671) +2018/09/16 03:30:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:30:23 ruptelaNet.go:261: Data received(client: [::1]:60373, IMEI: 352094087982671) with duration 4.22 s +2018/09/16 03:30:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:30:23 ruptelaNet.go:278: Sent ACK (client: [::1]:60373, IMEI: 352094087982671) +2018/09/16 03:30:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60373, IMEI: 352094087982671) with duration 6.37 s +2018/09/16 03:30:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:60425) +2018/09/16 03:30:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:30:46 ruptelaNet.go:261: Data received(client: [::1]:60425, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:30:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60425, IMEI: 352094089712860) +2018/09/16 03:30:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:60433) +2018/09/16 03:30:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:30:49 ruptelaNet.go:261: Data received(client: [::1]:60425, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:30:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:30:49 ruptelaNet.go:278: Sent ACK (client: [::1]:60425, IMEI: 352094089712860) +2018/09/16 03:30:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:30:49 ruptelaNet.go:261: Data received(client: [::1]:60433, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:30:49 ruptelaNet.go:278: Sent ACK (client: [::1]:60433, IMEI: 352094087982671) +2018/09/16 03:30:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60425, IMEI: 352094089712860) with duration 3.52 s +2018/09/16 03:30:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:30:52 ruptelaNet.go:261: Data received(client: [::1]:60433, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:30:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:30:52 ruptelaNet.go:278: Sent ACK (client: [::1]:60433, IMEI: 352094087982671) +2018/09/16 03:30:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60433, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 03:31:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:60496) +2018/09/16 03:31:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:31:18 ruptelaNet.go:261: Data received(client: [::1]:60496, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 03:31:18 ruptelaNet.go:278: Sent ACK (client: [::1]:60496, IMEI: 352094087982671) +2018/09/16 03:31:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:31:21 ruptelaNet.go:261: Data received(client: [::1]:60496, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 03:31:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:31:21 ruptelaNet.go:278: Sent ACK (client: [::1]:60496, IMEI: 352094087982671) +2018/09/16 03:31:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60496, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:31:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:60555) +2018/09/16 03:31:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:31:44 ruptelaNet.go:261: Data received(client: [::1]:60555, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:31:44 ruptelaNet.go:278: Sent ACK (client: [::1]:60555, IMEI: 352094089712860) +2018/09/16 03:31:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:60559) +2018/09/16 03:31:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:31:47 ruptelaNet.go:261: Data received(client: [::1]:60555, IMEI: 352094089712860) with duration 2.07 s +2018/09/16 03:31:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:31:47 ruptelaNet.go:278: Sent ACK (client: [::1]:60555, IMEI: 352094089712860) +2018/09/16 03:31:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:31:47 ruptelaNet.go:261: Data received(client: [::1]:60559, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 03:31:47 ruptelaNet.go:278: Sent ACK (client: [::1]:60559, IMEI: 352094087982671) +2018/09/16 03:31:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60555, IMEI: 352094089712860) with duration 3.68 s +2018/09/16 03:31:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:31:50 ruptelaNet.go:261: Data received(client: [::1]:60559, IMEI: 352094087982671) with duration 4.07 s +2018/09/16 03:31:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:31:50 ruptelaNet.go:278: Sent ACK (client: [::1]:60559, IMEI: 352094087982671) +2018/09/16 03:31:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60559, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 03:32:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:60620) +2018/09/16 03:32:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:32:16 ruptelaNet.go:261: Data received(client: [::1]:60620, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:32:16 ruptelaNet.go:278: Sent ACK (client: [::1]:60620, IMEI: 352094087982671) +2018/09/16 03:32:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:32:19 ruptelaNet.go:261: Data received(client: [::1]:60620, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:32:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:32:19 ruptelaNet.go:278: Sent ACK (client: [::1]:60620, IMEI: 352094087982671) +2018/09/16 03:32:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60620, IMEI: 352094087982671) with duration 6.28 s +2018/09/16 03:32:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:60680) +2018/09/16 03:32:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:60681) +2018/09/16 03:32:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:32:45 ruptelaNet.go:261: Data received(client: [::1]:60681, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:32:45 ruptelaNet.go:278: Sent ACK (client: [::1]:60681, IMEI: 352094089712860) +2018/09/16 03:32:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:32:45 ruptelaNet.go:261: Data received(client: [::1]:60680, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:32:45 ruptelaNet.go:278: Sent ACK (client: [::1]:60680, IMEI: 352094087982671) +2018/09/16 03:32:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:32:47 ruptelaNet.go:261: Data received(client: [::1]:60681, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 03:32:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:32:47 ruptelaNet.go:278: Sent ACK (client: [::1]:60681, IMEI: 352094089712860) +2018/09/16 03:32:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60681, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 03:32:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:32:48 ruptelaNet.go:261: Data received(client: [::1]:60680, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 03:32:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:32:48 ruptelaNet.go:278: Sent ACK (client: [::1]:60680, IMEI: 352094087982671) +2018/09/16 03:32:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60680, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 03:33:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:60741) +2018/09/16 03:33:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:33:14 ruptelaNet.go:261: Data received(client: [::1]:60741, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:33:14 ruptelaNet.go:278: Sent ACK (client: [::1]:60741, IMEI: 352094087982671) +2018/09/16 03:33:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:33:17 ruptelaNet.go:261: Data received(client: [::1]:60741, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 03:33:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:33:17 ruptelaNet.go:278: Sent ACK (client: [::1]:60741, IMEI: 352094087982671) +2018/09/16 03:33:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60741, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 03:33:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:60798) +2018/09/16 03:33:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:33:43 ruptelaNet.go:261: Data received(client: [::1]:60798, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:33:43 ruptelaNet.go:278: Sent ACK (client: [::1]:60798, IMEI: 352094087982671) +2018/09/16 03:33:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:33:46 ruptelaNet.go:261: Data received(client: [::1]:60798, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 03:33:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:33:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60798, IMEI: 352094087982671) +2018/09/16 03:33:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:60807) +2018/09/16 03:33:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:33:46 ruptelaNet.go:261: Data received(client: [::1]:60807, IMEI: 352094089712860) with duration 0.09 s +2018/09/16 03:33:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60807, IMEI: 352094089712860) +2018/09/16 03:33:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60798, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 03:33:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:33:48 ruptelaNet.go:261: Data received(client: [::1]:60807, IMEI: 352094089712860) with duration 2.13 s +2018/09/16 03:33:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:33:48 ruptelaNet.go:278: Sent ACK (client: [::1]:60807, IMEI: 352094089712860) +2018/09/16 03:33:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60807, IMEI: 352094089712860) with duration 3.36 s +2018/09/16 03:34:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:60855) +2018/09/16 03:34:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:34:11 ruptelaNet.go:261: Data received(client: [::1]:60855, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:34:11 ruptelaNet.go:278: Sent ACK (client: [::1]:60855, IMEI: 352094087982671) +2018/09/16 03:34:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:34:14 ruptelaNet.go:261: Data received(client: [::1]:60855, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 03:34:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:34:14 ruptelaNet.go:278: Sent ACK (client: [::1]:60855, IMEI: 352094087982671) +2018/09/16 03:34:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60855, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 03:34:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:60915) +2018/09/16 03:34:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:34:40 ruptelaNet.go:261: Data received(client: [::1]:60915, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 03:34:40 ruptelaNet.go:278: Sent ACK (client: [::1]:60915, IMEI: 352094087982671) +2018/09/16 03:34:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:34:43 ruptelaNet.go:261: Data received(client: [::1]:60915, IMEI: 352094087982671) with duration 3.59 s +2018/09/16 03:34:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:34:43 ruptelaNet.go:278: Sent ACK (client: [::1]:60915, IMEI: 352094087982671) +2018/09/16 03:34:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:60925) +2018/09/16 03:34:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:34:45 ruptelaNet.go:261: Data received(client: [::1]:60925, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:34:45 ruptelaNet.go:278: Sent ACK (client: [::1]:60925, IMEI: 352094089712860) +2018/09/16 03:34:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60915, IMEI: 352094087982671) with duration 5.69 s +2018/09/16 03:34:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:34:47 ruptelaNet.go:261: Data received(client: [::1]:60925, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 03:34:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:34:47 ruptelaNet.go:278: Sent ACK (client: [::1]:60925, IMEI: 352094089712860) +2018/09/16 03:34:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60925, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 03:35:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:60974) +2018/09/16 03:35:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:35:09 ruptelaNet.go:261: Data received(client: [::1]:60974, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:35:09 ruptelaNet.go:278: Sent ACK (client: [::1]:60974, IMEI: 352094087982671) +2018/09/16 03:35:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:35:13 ruptelaNet.go:261: Data received(client: [::1]:60974, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 03:35:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:35:13 ruptelaNet.go:278: Sent ACK (client: [::1]:60974, IMEI: 352094087982671) +2018/09/16 03:35:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60974, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 03:35:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:61032) +2018/09/16 03:35:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:35:38 ruptelaNet.go:261: Data received(client: [::1]:61032, IMEI: 352094087982671) with duration 0.7 s +2018/09/16 03:35:38 ruptelaNet.go:278: Sent ACK (client: [::1]:61032, IMEI: 352094087982671) +2018/09/16 03:35:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:35:41 ruptelaNet.go:261: Data received(client: [::1]:61032, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 03:35:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:35:41 ruptelaNet.go:278: Sent ACK (client: [::1]:61032, IMEI: 352094087982671) +2018/09/16 03:35:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61032, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 03:35:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61048) +2018/09/16 03:35:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:35:45 ruptelaNet.go:261: Data received(client: [::1]:61048, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:35:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61048, IMEI: 352094089712860) +2018/09/16 03:35:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:35:47 ruptelaNet.go:261: Data received(client: [::1]:61048, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 03:35:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:35:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61048, IMEI: 352094089712860) +2018/09/16 03:35:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61048, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:36:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:61096) +2018/09/16 03:36:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:36:07 ruptelaNet.go:261: Data received(client: [::1]:61096, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 03:36:07 ruptelaNet.go:278: Sent ACK (client: [::1]:61096, IMEI: 352094087982671) +2018/09/16 03:36:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:36:10 ruptelaNet.go:261: Data received(client: [::1]:61096, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 03:36:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:36:10 ruptelaNet.go:278: Sent ACK (client: [::1]:61096, IMEI: 352094087982671) +2018/09/16 03:36:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61096, IMEI: 352094087982671) with duration 6 s +2018/09/16 03:36:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:61154) +2018/09/16 03:36:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:36:36 ruptelaNet.go:261: Data received(client: [::1]:61154, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:36:36 ruptelaNet.go:278: Sent ACK (client: [::1]:61154, IMEI: 352094087982671) +2018/09/16 03:36:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:36:39 ruptelaNet.go:261: Data received(client: [::1]:61154, IMEI: 352094087982671) with duration 4.12 s +2018/09/16 03:36:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:36:39 ruptelaNet.go:278: Sent ACK (client: [::1]:61154, IMEI: 352094087982671) +2018/09/16 03:36:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61154, IMEI: 352094087982671) with duration 6.22 s +2018/09/16 03:36:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61176) +2018/09/16 03:36:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:36:45 ruptelaNet.go:261: Data received(client: [::1]:61176, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:36:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61176, IMEI: 352094089712860) +2018/09/16 03:36:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:36:47 ruptelaNet.go:261: Data received(client: [::1]:61176, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 03:36:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:36:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61176, IMEI: 352094089712860) +2018/09/16 03:36:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61176, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 03:37:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:61222) +2018/09/16 03:37:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:37:05 ruptelaNet.go:261: Data received(client: [::1]:61222, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:37:05 ruptelaNet.go:278: Sent ACK (client: [::1]:61222, IMEI: 352094087982671) +2018/09/16 03:37:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:37:08 ruptelaNet.go:261: Data received(client: [::1]:61222, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 03:37:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:37:08 ruptelaNet.go:278: Sent ACK (client: [::1]:61222, IMEI: 352094087982671) +2018/09/16 03:37:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61222, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:37:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:61287) +2018/09/16 03:37:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:37:34 ruptelaNet.go:261: Data received(client: [::1]:61287, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 03:37:34 ruptelaNet.go:278: Sent ACK (client: [::1]:61287, IMEI: 352094087982671) +2018/09/16 03:37:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:37:37 ruptelaNet.go:261: Data received(client: [::1]:61287, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 03:37:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:37:37 ruptelaNet.go:278: Sent ACK (client: [::1]:61287, IMEI: 352094087982671) +2018/09/16 03:37:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61287, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 03:37:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61310) +2018/09/16 03:37:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:37:45 ruptelaNet.go:261: Data received(client: [::1]:61310, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:37:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61310, IMEI: 352094089712860) +2018/09/16 03:37:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:37:47 ruptelaNet.go:261: Data received(client: [::1]:61310, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 03:37:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:37:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61310, IMEI: 352094089712860) +2018/09/16 03:37:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61310, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:38:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:61344) +2018/09/16 03:38:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:38:03 ruptelaNet.go:261: Data received(client: [::1]:61344, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:38:03 ruptelaNet.go:278: Sent ACK (client: [::1]:61344, IMEI: 352094087982671) +2018/09/16 03:38:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:38:06 ruptelaNet.go:261: Data received(client: [::1]:61344, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 03:38:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:38:06 ruptelaNet.go:278: Sent ACK (client: [::1]:61344, IMEI: 352094087982671) +2018/09/16 03:38:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61344, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:38:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:61399) +2018/09/16 03:38:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:38:32 ruptelaNet.go:261: Data received(client: [::1]:61399, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:38:32 ruptelaNet.go:278: Sent ACK (client: [::1]:61399, IMEI: 352094087982671) +2018/09/16 03:38:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:38:35 ruptelaNet.go:261: Data received(client: [::1]:61399, IMEI: 352094087982671) with duration 4 s +2018/09/16 03:38:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:38:35 ruptelaNet.go:278: Sent ACK (client: [::1]:61399, IMEI: 352094087982671) +2018/09/16 03:38:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61399, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 03:38:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61430) +2018/09/16 03:38:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:38:45 ruptelaNet.go:261: Data received(client: [::1]:61430, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:38:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61430, IMEI: 352094089712860) +2018/09/16 03:38:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:38:47 ruptelaNet.go:261: Data received(client: [::1]:61430, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 03:38:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:38:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61430, IMEI: 352094089712860) +2018/09/16 03:38:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61430, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:38:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:61444) +2018/09/16 03:39:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:61465) +2018/09/16 03:39:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:39:01 ruptelaNet.go:261: Data received(client: [::1]:61465, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 03:39:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61465, IMEI: 352094087982671) +2018/09/16 03:39:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:39:04 ruptelaNet.go:261: Data received(client: [::1]:61465, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:39:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:39:04 ruptelaNet.go:278: Sent ACK (client: [::1]:61465, IMEI: 352094087982671) +2018/09/16 03:39:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61465, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 03:39:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61444, IMEI: 0) with duration 15.58 s +2018/09/16 03:39:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:61477) +2018/09/16 03:39:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61477, IMEI: 0) with duration 15.53 s +2018/09/16 03:39:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:61526) +2018/09/16 03:39:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:39:30 ruptelaNet.go:261: Data received(client: [::1]:61526, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:39:30 ruptelaNet.go:278: Sent ACK (client: [::1]:61526, IMEI: 352094087982671) +2018/09/16 03:39:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:39:33 ruptelaNet.go:261: Data received(client: [::1]:61526, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:39:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:39:33 ruptelaNet.go:278: Sent ACK (client: [::1]:61526, IMEI: 352094087982671) +2018/09/16 03:39:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61526, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:39:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61553) +2018/09/16 03:39:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:39:45 ruptelaNet.go:261: Data received(client: [::1]:61553, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:39:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61553, IMEI: 352094089712860) +2018/09/16 03:39:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:39:47 ruptelaNet.go:261: Data received(client: [::1]:61553, IMEI: 352094089712860) with duration 2.11 s +2018/09/16 03:39:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:39:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61553, IMEI: 352094089712860) +2018/09/16 03:39:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61553, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 03:39:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:61561) +2018/09/16 03:39:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:61582) +2018/09/16 03:39:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:39:59 ruptelaNet.go:261: Data received(client: [::1]:61582, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:39:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61582, IMEI: 352094087982671) +2018/09/16 03:40:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:40:02 ruptelaNet.go:261: Data received(client: [::1]:61582, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:40:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:40:02 ruptelaNet.go:278: Sent ACK (client: [::1]:61582, IMEI: 352094087982671) +2018/09/16 03:40:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61561, IMEI: 0) with duration 15.45 s +2018/09/16 03:40:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:61595) +2018/09/16 03:40:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61582, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 03:40:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61595, IMEI: 0) with duration 15.52 s +2018/09/16 03:40:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:61642) +2018/09/16 03:40:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:40:28 ruptelaNet.go:261: Data received(client: [::1]:61642, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 03:40:28 ruptelaNet.go:278: Sent ACK (client: [::1]:61642, IMEI: 352094087982671) +2018/09/16 03:40:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:40:31 ruptelaNet.go:261: Data received(client: [::1]:61642, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 03:40:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:40:31 ruptelaNet.go:278: Sent ACK (client: [::1]:61642, IMEI: 352094087982671) +2018/09/16 03:40:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61642, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:40:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:61682) +2018/09/16 03:40:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:40:46 ruptelaNet.go:261: Data received(client: [::1]:61682, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:40:46 ruptelaNet.go:278: Sent ACK (client: [::1]:61682, IMEI: 352094089712860) +2018/09/16 03:40:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:40:48 ruptelaNet.go:261: Data received(client: [::1]:61682, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 03:40:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:40:48 ruptelaNet.go:278: Sent ACK (client: [::1]:61682, IMEI: 352094089712860) +2018/09/16 03:40:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61682, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:40:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:61703) +2018/09/16 03:40:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:40:57 ruptelaNet.go:261: Data received(client: [::1]:61703, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 03:40:57 ruptelaNet.go:278: Sent ACK (client: [::1]:61703, IMEI: 352094087982671) +2018/09/16 03:41:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:41:00 ruptelaNet.go:261: Data received(client: [::1]:61703, IMEI: 352094087982671) with duration 3.73 s +2018/09/16 03:41:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:41:00 ruptelaNet.go:278: Sent ACK (client: [::1]:61703, IMEI: 352094087982671) +2018/09/16 03:41:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61703, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 03:41:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:61765) +2018/09/16 03:41:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:41:26 ruptelaNet.go:261: Data received(client: [::1]:61765, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:41:26 ruptelaNet.go:278: Sent ACK (client: [::1]:61765, IMEI: 352094087982671) +2018/09/16 03:41:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:41:29 ruptelaNet.go:261: Data received(client: [::1]:61765, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 03:41:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:41:29 ruptelaNet.go:278: Sent ACK (client: [::1]:61765, IMEI: 352094087982671) +2018/09/16 03:41:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61765, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 03:41:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:61804) +2018/09/16 03:41:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:41:46 ruptelaNet.go:261: Data received(client: [::1]:61804, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:41:46 ruptelaNet.go:278: Sent ACK (client: [::1]:61804, IMEI: 352094089712860) +2018/09/16 03:41:47 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:41:47 ruptelaNet.go:261: Data received(client: [::1]:61804, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 03:41:47 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:41:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61804, IMEI: 352094089712860) +2018/09/16 03:41:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61804, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 03:41:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:61827) +2018/09/16 03:41:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:41:55 ruptelaNet.go:261: Data received(client: [::1]:61827, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:41:55 ruptelaNet.go:278: Sent ACK (client: [::1]:61827, IMEI: 352094087982671) +2018/09/16 03:41:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:41:58 ruptelaNet.go:261: Data received(client: [::1]:61827, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:41:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:41:58 ruptelaNet.go:278: Sent ACK (client: [::1]:61827, IMEI: 352094087982671) +2018/09/16 03:42:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61827, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:42:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:61889) +2018/09/16 03:42:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:42:24 ruptelaNet.go:261: Data received(client: [::1]:61889, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:42:24 ruptelaNet.go:278: Sent ACK (client: [::1]:61889, IMEI: 352094087982671) +2018/09/16 03:42:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:42:27 ruptelaNet.go:261: Data received(client: [::1]:61889, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:42:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:42:27 ruptelaNet.go:278: Sent ACK (client: [::1]:61889, IMEI: 352094087982671) +2018/09/16 03:42:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61889, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:42:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:61949) +2018/09/16 03:42:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:42:50 ruptelaNet.go:261: Data received(client: [::1]:61949, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:42:50 ruptelaNet.go:278: Sent ACK (client: [::1]:61949, IMEI: 352094089712860) +2018/09/16 03:42:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:61950) +2018/09/16 03:42:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:42:52 ruptelaNet.go:261: Data received(client: [::1]:61949, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 03:42:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:42:52 ruptelaNet.go:278: Sent ACK (client: [::1]:61949, IMEI: 352094089712860) +2018/09/16 03:42:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61949, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 03:42:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:42:53 ruptelaNet.go:261: Data received(client: [::1]:61950, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:42:53 ruptelaNet.go:278: Sent ACK (client: [::1]:61950, IMEI: 352094087982671) +2018/09/16 03:42:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:42:56 ruptelaNet.go:261: Data received(client: [::1]:61950, IMEI: 352094087982671) with duration 4.03 s +2018/09/16 03:42:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:42:56 ruptelaNet.go:278: Sent ACK (client: [::1]:61950, IMEI: 352094087982671) +2018/09/16 03:42:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61950, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:43:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62009) +2018/09/16 03:43:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:43:22 ruptelaNet.go:261: Data received(client: [::1]:62009, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:43:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62009, IMEI: 352094087982671) +2018/09/16 03:43:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:43:25 ruptelaNet.go:261: Data received(client: [::1]:62009, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 03:43:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:43:25 ruptelaNet.go:278: Sent ACK (client: [::1]:62009, IMEI: 352094087982671) +2018/09/16 03:43:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62009, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 03:43:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62061) +2018/09/16 03:43:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:43:46 ruptelaNet.go:261: Data received(client: [::1]:62061, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:43:46 ruptelaNet.go:278: Sent ACK (client: [::1]:62061, IMEI: 352094089712860) +2018/09/16 03:43:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:43:48 ruptelaNet.go:261: Data received(client: [::1]:62061, IMEI: 352094089712860) with duration 2.27 s +2018/09/16 03:43:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:43:48 ruptelaNet.go:278: Sent ACK (client: [::1]:62061, IMEI: 352094089712860) +2018/09/16 03:43:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62061, IMEI: 352094089712860) with duration 3.91 s +2018/09/16 03:43:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:62074) +2018/09/16 03:43:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:43:51 ruptelaNet.go:261: Data received(client: [::1]:62074, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:43:51 ruptelaNet.go:278: Sent ACK (client: [::1]:62074, IMEI: 352094087982671) +2018/09/16 03:43:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:43:55 ruptelaNet.go:261: Data received(client: [::1]:62074, IMEI: 352094087982671) with duration 4.42 s +2018/09/16 03:43:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:43:55 ruptelaNet.go:278: Sent ACK (client: [::1]:62074, IMEI: 352094087982671) +2018/09/16 03:43:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62074, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 03:44:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:62127) +2018/09/16 03:44:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:44:20 ruptelaNet.go:261: Data received(client: [::1]:62127, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 03:44:20 ruptelaNet.go:278: Sent ACK (client: [::1]:62127, IMEI: 352094087982671) +2018/09/16 03:44:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:44:23 ruptelaNet.go:261: Data received(client: [::1]:62127, IMEI: 352094087982671) with duration 3.94 s +2018/09/16 03:44:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:44:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62127, IMEI: 352094087982671) +2018/09/16 03:44:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62127, IMEI: 352094087982671) with duration 6.09 s +2018/09/16 03:44:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62175) +2018/09/16 03:44:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:44:46 ruptelaNet.go:261: Data received(client: [::1]:62175, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:44:46 ruptelaNet.go:278: Sent ACK (client: [::1]:62175, IMEI: 352094089712860) +2018/09/16 03:44:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:44:48 ruptelaNet.go:261: Data received(client: [::1]:62175, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 03:44:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:44:48 ruptelaNet.go:278: Sent ACK (client: [::1]:62175, IMEI: 352094089712860) +2018/09/16 03:44:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:62183) +2018/09/16 03:44:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62175, IMEI: 352094089712860) with duration 2.69 s +2018/09/16 03:44:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:44:49 ruptelaNet.go:261: Data received(client: [::1]:62183, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 03:44:49 ruptelaNet.go:278: Sent ACK (client: [::1]:62183, IMEI: 352094087982671) +2018/09/16 03:44:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:44:52 ruptelaNet.go:261: Data received(client: [::1]:62183, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 03:44:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:44:52 ruptelaNet.go:278: Sent ACK (client: [::1]:62183, IMEI: 352094087982671) +2018/09/16 03:44:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62183, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 03:45:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:62235) +2018/09/16 03:45:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:45:18 ruptelaNet.go:261: Data received(client: [::1]:62235, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:45:18 ruptelaNet.go:278: Sent ACK (client: [::1]:62235, IMEI: 352094087982671) +2018/09/16 03:45:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:45:21 ruptelaNet.go:261: Data received(client: [::1]:62235, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:45:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:45:21 ruptelaNet.go:278: Sent ACK (client: [::1]:62235, IMEI: 352094087982671) +2018/09/16 03:45:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62235, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:45:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62290) +2018/09/16 03:45:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:45:47 ruptelaNet.go:261: Data received(client: [::1]:62290, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:45:47 ruptelaNet.go:278: Sent ACK (client: [::1]:62290, IMEI: 352094087982671) +2018/09/16 03:45:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:62296) +2018/09/16 03:45:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:45:48 ruptelaNet.go:261: Data received(client: [::1]:62296, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:45:48 ruptelaNet.go:278: Sent ACK (client: [::1]:62296, IMEI: 352094089712860) +2018/09/16 03:45:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:45:50 ruptelaNet.go:261: Data received(client: [::1]:62296, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 03:45:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:45:50 ruptelaNet.go:278: Sent ACK (client: [::1]:62296, IMEI: 352094089712860) +2018/09/16 03:45:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:45:50 ruptelaNet.go:261: Data received(client: [::1]:62290, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 03:45:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:45:50 ruptelaNet.go:278: Sent ACK (client: [::1]:62290, IMEI: 352094087982671) +2018/09/16 03:45:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62296, IMEI: 352094089712860) with duration 3.91 s +2018/09/16 03:45:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62290, IMEI: 352094087982671) with duration 6.22 s +2018/09/16 03:46:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:62353) +2018/09/16 03:46:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:46:16 ruptelaNet.go:261: Data received(client: [::1]:62353, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 03:46:16 ruptelaNet.go:278: Sent ACK (client: [::1]:62353, IMEI: 352094087982671) +2018/09/16 03:46:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:46:19 ruptelaNet.go:261: Data received(client: [::1]:62353, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:46:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:46:19 ruptelaNet.go:278: Sent ACK (client: [::1]:62353, IMEI: 352094087982671) +2018/09/16 03:46:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62353, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 03:46:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:62413) +2018/09/16 03:46:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:46:45 ruptelaNet.go:261: Data received(client: [::1]:62413, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:46:45 ruptelaNet.go:278: Sent ACK (client: [::1]:62413, IMEI: 352094087982671) +2018/09/16 03:46:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62420) +2018/09/16 03:46:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:46:46 ruptelaNet.go:261: Data received(client: [::1]:62420, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:46:46 ruptelaNet.go:278: Sent ACK (client: [::1]:62420, IMEI: 352094089712860) +2018/09/16 03:46:48 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:46:48 ruptelaNet.go:261: Data received(client: [::1]:62420, IMEI: 352094089712860) with duration 2.18 s +2018/09/16 03:46:48 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:46:48 ruptelaNet.go:278: Sent ACK (client: [::1]:62420, IMEI: 352094089712860) +2018/09/16 03:46:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:46:48 ruptelaNet.go:261: Data received(client: [::1]:62413, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 03:46:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:46:48 ruptelaNet.go:278: Sent ACK (client: [::1]:62413, IMEI: 352094087982671) +2018/09/16 03:46:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62420, IMEI: 352094089712860) with duration 3.31 s +2018/09/16 03:46:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62413, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 03:47:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:62474) +2018/09/16 03:47:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:47:14 ruptelaNet.go:261: Data received(client: [::1]:62474, IMEI: 352094087982671) with duration 0.84 s +2018/09/16 03:47:14 ruptelaNet.go:278: Sent ACK (client: [::1]:62474, IMEI: 352094087982671) +2018/09/16 03:47:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:47:17 ruptelaNet.go:261: Data received(client: [::1]:62474, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 03:47:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:47:17 ruptelaNet.go:278: Sent ACK (client: [::1]:62474, IMEI: 352094087982671) +2018/09/16 03:47:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62474, IMEI: 352094087982671) with duration 7.89 s +2018/09/16 03:47:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:62536) +2018/09/16 03:47:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:47:43 ruptelaNet.go:261: Data received(client: [::1]:62536, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:47:43 ruptelaNet.go:278: Sent ACK (client: [::1]:62536, IMEI: 352094087982671) +2018/09/16 03:47:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62546) +2018/09/16 03:47:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:47:46 ruptelaNet.go:261: Data received(client: [::1]:62546, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:47:46 ruptelaNet.go:278: Sent ACK (client: [::1]:62546, IMEI: 352094089712860) +2018/09/16 03:47:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:47:47 ruptelaNet.go:261: Data received(client: [::1]:62536, IMEI: 352094087982671) with duration 4.36 s +2018/09/16 03:47:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:47:47 ruptelaNet.go:278: Sent ACK (client: [::1]:62536, IMEI: 352094087982671) +2018/09/16 03:47:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62536, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 03:47:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:47:49 ruptelaNet.go:261: Data received(client: [::1]:62546, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 03:47:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:47:49 ruptelaNet.go:278: Sent ACK (client: [::1]:62546, IMEI: 352094089712860) +2018/09/16 03:47:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62546, IMEI: 352094089712860) with duration 3.49 s +2018/09/16 03:48:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:62598) +2018/09/16 03:48:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:48:12 ruptelaNet.go:261: Data received(client: [::1]:62598, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 03:48:12 ruptelaNet.go:278: Sent ACK (client: [::1]:62598, IMEI: 352094087982671) +2018/09/16 03:48:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:48:15 ruptelaNet.go:261: Data received(client: [::1]:62598, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 03:48:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:48:15 ruptelaNet.go:278: Sent ACK (client: [::1]:62598, IMEI: 352094087982671) +2018/09/16 03:48:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62598, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 03:48:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:62661) +2018/09/16 03:48:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:48:41 ruptelaNet.go:261: Data received(client: [::1]:62661, IMEI: 352094087982671) with duration 1 s +2018/09/16 03:48:41 ruptelaNet.go:278: Sent ACK (client: [::1]:62661, IMEI: 352094087982671) +2018/09/16 03:48:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:48:44 ruptelaNet.go:261: Data received(client: [::1]:62661, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 03:48:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:48:44 ruptelaNet.go:278: Sent ACK (client: [::1]:62661, IMEI: 352094087982671) +2018/09/16 03:48:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:62674) +2018/09/16 03:48:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:48:46 ruptelaNet.go:261: Data received(client: [::1]:62674, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:48:46 ruptelaNet.go:278: Sent ACK (client: [::1]:62674, IMEI: 352094089712860) +2018/09/16 03:48:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62661, IMEI: 352094087982671) with duration 6.63 s +2018/09/16 03:48:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:48:49 ruptelaNet.go:261: Data received(client: [::1]:62674, IMEI: 352094089712860) with duration 2.43 s +2018/09/16 03:48:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:48:49 ruptelaNet.go:278: Sent ACK (client: [::1]:62674, IMEI: 352094089712860) +2018/09/16 03:48:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62674, IMEI: 352094089712860) with duration 4.04 s +2018/09/16 03:49:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:62723) +2018/09/16 03:49:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:49:11 ruptelaNet.go:261: Data received(client: [::1]:62723, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:49:11 ruptelaNet.go:278: Sent ACK (client: [::1]:62723, IMEI: 352094087982671) +2018/09/16 03:49:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:49:14 ruptelaNet.go:261: Data received(client: [::1]:62723, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 03:49:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:49:14 ruptelaNet.go:278: Sent ACK (client: [::1]:62723, IMEI: 352094087982671) +2018/09/16 03:49:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62723, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 03:49:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:62779) +2018/09/16 03:49:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:49:40 ruptelaNet.go:261: Data received(client: [::1]:62779, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:49:40 ruptelaNet.go:278: Sent ACK (client: [::1]:62779, IMEI: 352094087982671) +2018/09/16 03:49:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:49:43 ruptelaNet.go:261: Data received(client: [::1]:62779, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:49:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:49:43 ruptelaNet.go:278: Sent ACK (client: [::1]:62779, IMEI: 352094087982671) +2018/09/16 03:49:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62779, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:49:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:62800) +2018/09/16 03:49:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:49:47 ruptelaNet.go:261: Data received(client: [::1]:62800, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:49:47 ruptelaNet.go:278: Sent ACK (client: [::1]:62800, IMEI: 352094089712860) +2018/09/16 03:49:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:49:50 ruptelaNet.go:261: Data received(client: [::1]:62800, IMEI: 352094089712860) with duration 3.14 s +2018/09/16 03:49:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:49:50 ruptelaNet.go:278: Sent ACK (client: [::1]:62800, IMEI: 352094089712860) +2018/09/16 03:49:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62800, IMEI: 352094089712860) with duration 3.94 s +2018/09/16 03:50:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:62845) +2018/09/16 03:50:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:50:09 ruptelaNet.go:261: Data received(client: [::1]:62845, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 03:50:09 ruptelaNet.go:278: Sent ACK (client: [::1]:62845, IMEI: 352094087982671) +2018/09/16 03:50:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:50:12 ruptelaNet.go:261: Data received(client: [::1]:62845, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 03:50:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:50:12 ruptelaNet.go:278: Sent ACK (client: [::1]:62845, IMEI: 352094087982671) +2018/09/16 03:50:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62845, IMEI: 352094087982671) with duration 6.1 s +2018/09/16 03:50:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:62902) +2018/09/16 03:50:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:50:38 ruptelaNet.go:261: Data received(client: [::1]:62902, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:50:38 ruptelaNet.go:278: Sent ACK (client: [::1]:62902, IMEI: 352094087982671) +2018/09/16 03:50:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:50:41 ruptelaNet.go:261: Data received(client: [::1]:62902, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:50:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:50:41 ruptelaNet.go:278: Sent ACK (client: [::1]:62902, IMEI: 352094087982671) +2018/09/16 03:50:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62902, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:50:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:62925) +2018/09/16 03:50:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:50:47 ruptelaNet.go:261: Data received(client: [::1]:62925, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:50:47 ruptelaNet.go:278: Sent ACK (client: [::1]:62925, IMEI: 352094089712860) +2018/09/16 03:50:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:50:49 ruptelaNet.go:261: Data received(client: [::1]:62925, IMEI: 352094089712860) with duration 2.14 s +2018/09/16 03:50:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:50:49 ruptelaNet.go:278: Sent ACK (client: [::1]:62925, IMEI: 352094089712860) +2018/09/16 03:50:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62925, IMEI: 352094089712860) with duration 3.35 s +2018/09/16 03:51:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:62961) +2018/09/16 03:51:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:51:07 ruptelaNet.go:261: Data received(client: [::1]:62961, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 03:51:07 ruptelaNet.go:278: Sent ACK (client: [::1]:62961, IMEI: 352094087982671) +2018/09/16 03:51:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:51:10 ruptelaNet.go:261: Data received(client: [::1]:62961, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 03:51:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:51:10 ruptelaNet.go:278: Sent ACK (client: [::1]:62961, IMEI: 352094087982671) +2018/09/16 03:51:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62961, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 03:51:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:63020) +2018/09/16 03:51:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:51:37 ruptelaNet.go:261: Data received(client: [::1]:63020, IMEI: 352094087982671) with duration 1.61 s +2018/09/16 03:51:37 ruptelaNet.go:278: Sent ACK (client: [::1]:63020, IMEI: 352094087982671) +2018/09/16 03:51:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:51:40 ruptelaNet.go:261: Data received(client: [::1]:63020, IMEI: 352094087982671) with duration 4.59 s +2018/09/16 03:51:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:51:40 ruptelaNet.go:278: Sent ACK (client: [::1]:63020, IMEI: 352094087982671) +2018/09/16 03:51:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63020, IMEI: 352094087982671) with duration 6.79 s +2018/09/16 03:51:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63049) +2018/09/16 03:51:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:51:47 ruptelaNet.go:261: Data received(client: [::1]:63049, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:51:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63049, IMEI: 352094089712860) +2018/09/16 03:51:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:51:49 ruptelaNet.go:261: Data received(client: [::1]:63049, IMEI: 352094089712860) with duration 2.16 s +2018/09/16 03:51:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:51:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63049, IMEI: 352094089712860) +2018/09/16 03:51:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63049, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 03:52:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:63086) +2018/09/16 03:52:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:52:06 ruptelaNet.go:261: Data received(client: [::1]:63086, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 03:52:06 ruptelaNet.go:278: Sent ACK (client: [::1]:63086, IMEI: 352094087982671) +2018/09/16 03:52:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:52:10 ruptelaNet.go:261: Data received(client: [::1]:63086, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 03:52:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:52:10 ruptelaNet.go:278: Sent ACK (client: [::1]:63086, IMEI: 352094087982671) +2018/09/16 03:52:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63086, IMEI: 352094087982671) with duration 6.41 s +2018/09/16 03:52:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:63143) +2018/09/16 03:52:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:52:35 ruptelaNet.go:261: Data received(client: [::1]:63143, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 03:52:35 ruptelaNet.go:278: Sent ACK (client: [::1]:63143, IMEI: 352094087982671) +2018/09/16 03:52:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:52:38 ruptelaNet.go:261: Data received(client: [::1]:63143, IMEI: 352094087982671) with duration 3.56 s +2018/09/16 03:52:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:52:38 ruptelaNet.go:278: Sent ACK (client: [::1]:63143, IMEI: 352094087982671) +2018/09/16 03:52:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63143, IMEI: 352094087982671) with duration 5.71 s +2018/09/16 03:52:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63166) +2018/09/16 03:52:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:52:47 ruptelaNet.go:261: Data received(client: [::1]:63166, IMEI: 352094089712860) with duration 0.29 s +2018/09/16 03:52:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63166, IMEI: 352094089712860) +2018/09/16 03:52:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:52:49 ruptelaNet.go:261: Data received(client: [::1]:63166, IMEI: 352094089712860) with duration 2.44 s +2018/09/16 03:52:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:52:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63166, IMEI: 352094089712860) +2018/09/16 03:52:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63166, IMEI: 352094089712860) with duration 3.15 s +2018/09/16 03:53:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:63197) +2018/09/16 03:53:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:53:04 ruptelaNet.go:261: Data received(client: [::1]:63197, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 03:53:04 ruptelaNet.go:278: Sent ACK (client: [::1]:63197, IMEI: 352094087982671) +2018/09/16 03:53:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:53:07 ruptelaNet.go:261: Data received(client: [::1]:63197, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:53:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:53:07 ruptelaNet.go:278: Sent ACK (client: [::1]:63197, IMEI: 352094087982671) +2018/09/16 03:53:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63197, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:53:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:63258) +2018/09/16 03:53:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:53:33 ruptelaNet.go:261: Data received(client: [::1]:63258, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 03:53:33 ruptelaNet.go:278: Sent ACK (client: [::1]:63258, IMEI: 352094087982671) +2018/09/16 03:53:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:53:36 ruptelaNet.go:261: Data received(client: [::1]:63258, IMEI: 352094087982671) with duration 4.05 s +2018/09/16 03:53:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:53:36 ruptelaNet.go:278: Sent ACK (client: [::1]:63258, IMEI: 352094087982671) +2018/09/16 03:53:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63258, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 03:53:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63285) +2018/09/16 03:53:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:53:47 ruptelaNet.go:261: Data received(client: [::1]:63285, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:53:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63285, IMEI: 352094089712860) +2018/09/16 03:53:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:53:49 ruptelaNet.go:261: Data received(client: [::1]:63285, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 03:53:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:53:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63285, IMEI: 352094089712860) +2018/09/16 03:53:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63285, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 03:54:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63320) +2018/09/16 03:54:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:54:02 ruptelaNet.go:261: Data received(client: [::1]:63320, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:54:02 ruptelaNet.go:278: Sent ACK (client: [::1]:63320, IMEI: 352094087982671) +2018/09/16 03:54:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:54:05 ruptelaNet.go:261: Data received(client: [::1]:63320, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 03:54:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:54:05 ruptelaNet.go:278: Sent ACK (client: [::1]:63320, IMEI: 352094087982671) +2018/09/16 03:54:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63320, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 03:54:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:63377) +2018/09/16 03:54:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:54:32 ruptelaNet.go:261: Data received(client: [::1]:63377, IMEI: 352094087982671) with duration 1.43 s +2018/09/16 03:54:32 ruptelaNet.go:278: Sent ACK (client: [::1]:63377, IMEI: 352094087982671) +2018/09/16 03:54:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:54:35 ruptelaNet.go:261: Data received(client: [::1]:63377, IMEI: 352094087982671) with duration 4.32 s +2018/09/16 03:54:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:54:35 ruptelaNet.go:278: Sent ACK (client: [::1]:63377, IMEI: 352094087982671) +2018/09/16 03:54:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63377, IMEI: 352094087982671) with duration 6.39 s +2018/09/16 03:54:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63412) +2018/09/16 03:54:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:54:47 ruptelaNet.go:261: Data received(client: [::1]:63412, IMEI: 352094089712860) with duration 0.33 s +2018/09/16 03:54:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63412, IMEI: 352094089712860) +2018/09/16 03:54:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:54:49 ruptelaNet.go:261: Data received(client: [::1]:63412, IMEI: 352094089712860) with duration 2.37 s +2018/09/16 03:54:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:54:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63412, IMEI: 352094089712860) +2018/09/16 03:54:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63412, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 03:54:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:63439) +2018/09/16 03:55:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:55:00 ruptelaNet.go:261: Data received(client: [::1]:63439, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:55:00 ruptelaNet.go:278: Sent ACK (client: [::1]:63439, IMEI: 352094087982671) +2018/09/16 03:55:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:55:03 ruptelaNet.go:261: Data received(client: [::1]:63439, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:55:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:55:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63439, IMEI: 352094087982671) +2018/09/16 03:55:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63439, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:55:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:63491) +2018/09/16 03:55:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:55:29 ruptelaNet.go:261: Data received(client: [::1]:63491, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 03:55:29 ruptelaNet.go:278: Sent ACK (client: [::1]:63491, IMEI: 352094087982671) +2018/09/16 03:55:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:55:32 ruptelaNet.go:261: Data received(client: [::1]:63491, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 03:55:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:55:32 ruptelaNet.go:278: Sent ACK (client: [::1]:63491, IMEI: 352094087982671) +2018/09/16 03:55:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63491, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 03:55:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63529) +2018/09/16 03:55:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:55:47 ruptelaNet.go:261: Data received(client: [::1]:63529, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:55:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63529, IMEI: 352094089712860) +2018/09/16 03:55:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:55:50 ruptelaNet.go:261: Data received(client: [::1]:63529, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 03:55:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:55:50 ruptelaNet.go:278: Sent ACK (client: [::1]:63529, IMEI: 352094089712860) +2018/09/16 03:55:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63529, IMEI: 352094089712860) with duration 6.35 s +2018/09/16 03:55:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:63551) +2018/09/16 03:55:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:55:58 ruptelaNet.go:261: Data received(client: [::1]:63551, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 03:55:58 ruptelaNet.go:278: Sent ACK (client: [::1]:63551, IMEI: 352094087982671) +2018/09/16 03:56:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:56:01 ruptelaNet.go:261: Data received(client: [::1]:63551, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:56:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:56:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63551, IMEI: 352094087982671) +2018/09/16 03:56:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63551, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 03:56:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:63608) +2018/09/16 03:56:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:56:27 ruptelaNet.go:261: Data received(client: [::1]:63608, IMEI: 352094087982671) with duration 0.65 s +2018/09/16 03:56:27 ruptelaNet.go:278: Sent ACK (client: [::1]:63608, IMEI: 352094087982671) +2018/09/16 03:56:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:56:30 ruptelaNet.go:261: Data received(client: [::1]:63608, IMEI: 352094087982671) with duration 3.61 s +2018/09/16 03:56:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:56:30 ruptelaNet.go:278: Sent ACK (client: [::1]:63608, IMEI: 352094087982671) +2018/09/16 03:56:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63608, IMEI: 352094087982671) with duration 5.76 s +2018/09/16 03:56:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63648) +2018/09/16 03:56:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:56:47 ruptelaNet.go:261: Data received(client: [::1]:63648, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:56:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63648, IMEI: 352094089712860) +2018/09/16 03:56:49 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:56:49 ruptelaNet.go:261: Data received(client: [::1]:63648, IMEI: 352094089712860) with duration 2.14 s +2018/09/16 03:56:49 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:56:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63648, IMEI: 352094089712860) +2018/09/16 03:56:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63648, IMEI: 352094089712860) with duration 3.34 s +2018/09/16 03:56:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:63667) +2018/09/16 03:56:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:56:56 ruptelaNet.go:261: Data received(client: [::1]:63667, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 03:56:56 ruptelaNet.go:278: Sent ACK (client: [::1]:63667, IMEI: 352094087982671) +2018/09/16 03:56:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:56:59 ruptelaNet.go:261: Data received(client: [::1]:63667, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 03:56:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:56:59 ruptelaNet.go:278: Sent ACK (client: [::1]:63667, IMEI: 352094087982671) +2018/09/16 03:57:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63667, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 03:57:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:63728) +2018/09/16 03:57:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:57:25 ruptelaNet.go:261: Data received(client: [::1]:63728, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 03:57:25 ruptelaNet.go:278: Sent ACK (client: [::1]:63728, IMEI: 352094087982671) +2018/09/16 03:57:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:57:28 ruptelaNet.go:261: Data received(client: [::1]:63728, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:57:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:57:28 ruptelaNet.go:278: Sent ACK (client: [::1]:63728, IMEI: 352094087982671) +2018/09/16 03:57:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63728, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 03:57:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63775) +2018/09/16 03:57:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:57:47 ruptelaNet.go:261: Data received(client: [::1]:63775, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:57:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63775, IMEI: 352094089712860) +2018/09/16 03:57:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:57:52 ruptelaNet.go:261: Data received(client: [::1]:63775, IMEI: 352094089712860) with duration 4.77 s +2018/09/16 03:57:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:57:52 ruptelaNet.go:278: Sent ACK (client: [::1]:63775, IMEI: 352094089712860) +2018/09/16 03:57:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:63787) +2018/09/16 03:57:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:57:54 ruptelaNet.go:261: Data received(client: [::1]:63787, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 03:57:54 ruptelaNet.go:278: Sent ACK (client: [::1]:63787, IMEI: 352094087982671) +2018/09/16 03:57:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63775, IMEI: 352094089712860) with duration 6.94 s +2018/09/16 03:57:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:57:57 ruptelaNet.go:261: Data received(client: [::1]:63787, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 03:57:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:57:57 ruptelaNet.go:278: Sent ACK (client: [::1]:63787, IMEI: 352094087982671) +2018/09/16 03:57:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63787, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 03:58:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63848) +2018/09/16 03:58:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:58:23 ruptelaNet.go:261: Data received(client: [::1]:63848, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 03:58:23 ruptelaNet.go:278: Sent ACK (client: [::1]:63848, IMEI: 352094087982671) +2018/09/16 03:58:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:58:26 ruptelaNet.go:261: Data received(client: [::1]:63848, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 03:58:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:58:26 ruptelaNet.go:278: Sent ACK (client: [::1]:63848, IMEI: 352094087982671) +2018/09/16 03:58:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63848, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 03:58:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:63900) +2018/09/16 03:58:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:58:47 ruptelaNet.go:261: Data received(client: [::1]:63900, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:58:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63900, IMEI: 352094089712860) +2018/09/16 03:58:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:58:50 ruptelaNet.go:261: Data received(client: [::1]:63900, IMEI: 352094089712860) with duration 2.47 s +2018/09/16 03:58:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:58:50 ruptelaNet.go:278: Sent ACK (client: [::1]:63900, IMEI: 352094089712860) +2018/09/16 03:58:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63900, IMEI: 352094089712860) with duration 3.89 s +2018/09/16 03:58:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:63911) +2018/09/16 03:58:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:58:52 ruptelaNet.go:261: Data received(client: [::1]:63911, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 03:58:52 ruptelaNet.go:278: Sent ACK (client: [::1]:63911, IMEI: 352094087982671) +2018/09/16 03:58:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:58:55 ruptelaNet.go:261: Data received(client: [::1]:63911, IMEI: 352094087982671) with duration 3.62 s +2018/09/16 03:58:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:58:55 ruptelaNet.go:278: Sent ACK (client: [::1]:63911, IMEI: 352094087982671) +2018/09/16 03:58:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63911, IMEI: 352094087982671) with duration 5.81 s +2018/09/16 03:59:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:63970) +2018/09/16 03:59:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:59:21 ruptelaNet.go:261: Data received(client: [::1]:63970, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:59:21 ruptelaNet.go:278: Sent ACK (client: [::1]:63970, IMEI: 352094087982671) +2018/09/16 03:59:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:59:24 ruptelaNet.go:261: Data received(client: [::1]:63970, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 03:59:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:59:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63970, IMEI: 352094087982671) +2018/09/16 03:59:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63970, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 03:59:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:64024) +2018/09/16 03:59:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:59:47 ruptelaNet.go:261: Data received(client: [::1]:64024, IMEI: 352094089712860) with duration 0 s +2018/09/16 03:59:47 ruptelaNet.go:278: Sent ACK (client: [::1]:64024, IMEI: 352094089712860) +2018/09/16 03:59:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:64030) +2018/09/16 03:59:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 03:59:50 ruptelaNet.go:261: Data received(client: [::1]:64024, IMEI: 352094089712860) with duration 2.23 s +2018/09/16 03:59:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 03:59:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64024, IMEI: 352094089712860) +2018/09/16 03:59:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 03:59:50 ruptelaNet.go:261: Data received(client: [::1]:64030, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 03:59:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64030, IMEI: 352094087982671) +2018/09/16 03:59:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64024, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 03:59:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 03:59:53 ruptelaNet.go:261: Data received(client: [::1]:64030, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 03:59:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 03:59:53 ruptelaNet.go:278: Sent ACK (client: [::1]:64030, IMEI: 352094087982671) +2018/09/16 03:59:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64030, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:00:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:64084) +2018/09/16 04:00:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:00:19 ruptelaNet.go:261: Data received(client: [::1]:64084, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:00:19 ruptelaNet.go:278: Sent ACK (client: [::1]:64084, IMEI: 352094087982671) +2018/09/16 04:00:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:00:22 ruptelaNet.go:261: Data received(client: [::1]:64084, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:00:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:00:22 ruptelaNet.go:278: Sent ACK (client: [::1]:64084, IMEI: 352094087982671) +2018/09/16 04:00:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64084, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:00:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:64149) +2018/09/16 04:00:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64150) +2018/09/16 04:00:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:00:48 ruptelaNet.go:261: Data received(client: [::1]:64150, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:00:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64150, IMEI: 352094089712860) +2018/09/16 04:00:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:00:48 ruptelaNet.go:261: Data received(client: [::1]:64149, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 04:00:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64149, IMEI: 352094087982671) +2018/09/16 04:00:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:00:50 ruptelaNet.go:261: Data received(client: [::1]:64150, IMEI: 352094089712860) with duration 2.11 s +2018/09/16 04:00:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:00:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64150, IMEI: 352094089712860) +2018/09/16 04:00:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64150, IMEI: 352094089712860) with duration 2.93 s +2018/09/16 04:00:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:00:51 ruptelaNet.go:261: Data received(client: [::1]:64149, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 04:00:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:00:51 ruptelaNet.go:278: Sent ACK (client: [::1]:64149, IMEI: 352094087982671) +2018/09/16 04:00:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64149, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 04:01:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:64209) +2018/09/16 04:01:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:01:17 ruptelaNet.go:261: Data received(client: [::1]:64209, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:01:17 ruptelaNet.go:278: Sent ACK (client: [::1]:64209, IMEI: 352094087982671) +2018/09/16 04:01:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:01:20 ruptelaNet.go:261: Data received(client: [::1]:64209, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 04:01:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:01:20 ruptelaNet.go:278: Sent ACK (client: [::1]:64209, IMEI: 352094087982671) +2018/09/16 04:01:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64209, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:01:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:64268) +2018/09/16 04:01:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:01:46 ruptelaNet.go:261: Data received(client: [::1]:64268, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:01:46 ruptelaNet.go:278: Sent ACK (client: [::1]:64268, IMEI: 352094087982671) +2018/09/16 04:01:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64274) +2018/09/16 04:01:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:01:48 ruptelaNet.go:261: Data received(client: [::1]:64274, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:01:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64274, IMEI: 352094089712860) +2018/09/16 04:01:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:01:49 ruptelaNet.go:261: Data received(client: [::1]:64268, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:01:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:01:49 ruptelaNet.go:278: Sent ACK (client: [::1]:64268, IMEI: 352094087982671) +2018/09/16 04:01:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:01:50 ruptelaNet.go:261: Data received(client: [::1]:64274, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 04:01:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:01:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64274, IMEI: 352094089712860) +2018/09/16 04:01:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64274, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 04:01:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64268, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 04:02:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:64325) +2018/09/16 04:02:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:02:15 ruptelaNet.go:261: Data received(client: [::1]:64325, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:02:15 ruptelaNet.go:278: Sent ACK (client: [::1]:64325, IMEI: 352094087982671) +2018/09/16 04:02:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:02:18 ruptelaNet.go:261: Data received(client: [::1]:64325, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:02:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:02:18 ruptelaNet.go:278: Sent ACK (client: [::1]:64325, IMEI: 352094087982671) +2018/09/16 04:02:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64325, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:02:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:64388) +2018/09/16 04:02:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:02:44 ruptelaNet.go:261: Data received(client: [::1]:64388, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:02:44 ruptelaNet.go:278: Sent ACK (client: [::1]:64388, IMEI: 352094087982671) +2018/09/16 04:02:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:02:47 ruptelaNet.go:261: Data received(client: [::1]:64388, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:02:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:02:47 ruptelaNet.go:278: Sent ACK (client: [::1]:64388, IMEI: 352094087982671) +2018/09/16 04:02:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64398) +2018/09/16 04:02:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:02:48 ruptelaNet.go:261: Data received(client: [::1]:64398, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:02:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64398, IMEI: 352094089712860) +2018/09/16 04:02:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64388, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 04:02:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:02:50 ruptelaNet.go:261: Data received(client: [::1]:64398, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 04:02:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:02:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64398, IMEI: 352094089712860) +2018/09/16 04:02:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64398, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:03:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:64447) +2018/09/16 04:03:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:03:13 ruptelaNet.go:261: Data received(client: [::1]:64447, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:03:13 ruptelaNet.go:278: Sent ACK (client: [::1]:64447, IMEI: 352094087982671) +2018/09/16 04:03:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:03:16 ruptelaNet.go:261: Data received(client: [::1]:64447, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 04:03:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:03:16 ruptelaNet.go:278: Sent ACK (client: [::1]:64447, IMEI: 352094087982671) +2018/09/16 04:03:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64447, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 04:03:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:64508) +2018/09/16 04:03:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:03:42 ruptelaNet.go:261: Data received(client: [::1]:64508, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:03:42 ruptelaNet.go:278: Sent ACK (client: [::1]:64508, IMEI: 352094087982671) +2018/09/16 04:03:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:03:45 ruptelaNet.go:261: Data received(client: [::1]:64508, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 04:03:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:03:45 ruptelaNet.go:278: Sent ACK (client: [::1]:64508, IMEI: 352094087982671) +2018/09/16 04:03:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64508, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 04:03:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64522) +2018/09/16 04:03:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:03:48 ruptelaNet.go:261: Data received(client: [::1]:64522, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:03:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64522, IMEI: 352094089712860) +2018/09/16 04:03:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:03:50 ruptelaNet.go:261: Data received(client: [::1]:64522, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 04:03:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:03:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64522, IMEI: 352094089712860) +2018/09/16 04:03:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64522, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 04:04:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:64569) +2018/09/16 04:04:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:04:11 ruptelaNet.go:261: Data received(client: [::1]:64569, IMEI: 352094087982671) with duration 1 s +2018/09/16 04:04:11 ruptelaNet.go:278: Sent ACK (client: [::1]:64569, IMEI: 352094087982671) +2018/09/16 04:04:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:04:14 ruptelaNet.go:261: Data received(client: [::1]:64569, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 04:04:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:04:14 ruptelaNet.go:278: Sent ACK (client: [::1]:64569, IMEI: 352094087982671) +2018/09/16 04:04:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64569, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 04:04:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:64626) +2018/09/16 04:04:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:04:40 ruptelaNet.go:261: Data received(client: [::1]:64626, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 04:04:40 ruptelaNet.go:278: Sent ACK (client: [::1]:64626, IMEI: 352094087982671) +2018/09/16 04:04:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:04:43 ruptelaNet.go:261: Data received(client: [::1]:64626, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:04:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:04:43 ruptelaNet.go:278: Sent ACK (client: [::1]:64626, IMEI: 352094087982671) +2018/09/16 04:04:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64626, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:04:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64646) +2018/09/16 04:04:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:04:48 ruptelaNet.go:261: Data received(client: [::1]:64646, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 04:04:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64646, IMEI: 352094089712860) +2018/09/16 04:04:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:04:50 ruptelaNet.go:261: Data received(client: [::1]:64646, IMEI: 352094089712860) with duration 2.36 s +2018/09/16 04:04:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:04:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64646, IMEI: 352094089712860) +2018/09/16 04:04:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64646, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 04:05:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:64693) +2018/09/16 04:05:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:05:12 ruptelaNet.go:261: Data received(client: [::1]:64693, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:05:12 ruptelaNet.go:278: Sent ACK (client: [::1]:64693, IMEI: 352094087982671) +2018/09/16 04:05:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:05:15 ruptelaNet.go:261: Data received(client: [::1]:64693, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 04:05:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:05:15 ruptelaNet.go:278: Sent ACK (client: [::1]:64693, IMEI: 352094087982671) +2018/09/16 04:05:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64693, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 04:05:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:64749) +2018/09/16 04:05:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:05:40 ruptelaNet.go:261: Data received(client: [::1]:64749, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:05:40 ruptelaNet.go:278: Sent ACK (client: [::1]:64749, IMEI: 352094087982671) +2018/09/16 04:05:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:05:43 ruptelaNet.go:261: Data received(client: [::1]:64749, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 04:05:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:05:43 ruptelaNet.go:278: Sent ACK (client: [::1]:64749, IMEI: 352094087982671) +2018/09/16 04:05:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64749, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 04:05:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64772) +2018/09/16 04:05:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:05:48 ruptelaNet.go:261: Data received(client: [::1]:64772, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:05:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64772, IMEI: 352094089712860) +2018/09/16 04:05:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:05:50 ruptelaNet.go:261: Data received(client: [::1]:64772, IMEI: 352094089712860) with duration 2.18 s +2018/09/16 04:05:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:05:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64772, IMEI: 352094089712860) +2018/09/16 04:05:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64772, IMEI: 352094089712860) with duration 2.99 s +2018/09/16 04:06:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:64809) +2018/09/16 04:06:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:06:09 ruptelaNet.go:261: Data received(client: [::1]:64809, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:06:09 ruptelaNet.go:278: Sent ACK (client: [::1]:64809, IMEI: 352094087982671) +2018/09/16 04:06:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:06:12 ruptelaNet.go:261: Data received(client: [::1]:64809, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:06:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:06:12 ruptelaNet.go:278: Sent ACK (client: [::1]:64809, IMEI: 352094087982671) +2018/09/16 04:06:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64809, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:06:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:64878) +2018/09/16 04:06:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:06:38 ruptelaNet.go:261: Data received(client: [::1]:64878, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:06:38 ruptelaNet.go:278: Sent ACK (client: [::1]:64878, IMEI: 352094087982671) +2018/09/16 04:06:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:06:41 ruptelaNet.go:261: Data received(client: [::1]:64878, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:06:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:06:41 ruptelaNet.go:278: Sent ACK (client: [::1]:64878, IMEI: 352094087982671) +2018/09/16 04:06:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64878, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:06:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64902) +2018/09/16 04:06:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:06:48 ruptelaNet.go:261: Data received(client: [::1]:64902, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:06:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64902, IMEI: 352094089712860) +2018/09/16 04:06:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:06:50 ruptelaNet.go:261: Data received(client: [::1]:64902, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 04:06:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:06:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64902, IMEI: 352094089712860) +2018/09/16 04:06:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64902, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:07:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:64935) +2018/09/16 04:07:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:07:07 ruptelaNet.go:261: Data received(client: [::1]:64935, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 04:07:07 ruptelaNet.go:278: Sent ACK (client: [::1]:64935, IMEI: 352094087982671) +2018/09/16 04:07:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:07:10 ruptelaNet.go:261: Data received(client: [::1]:64935, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:07:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:07:10 ruptelaNet.go:278: Sent ACK (client: [::1]:64935, IMEI: 352094087982671) +2018/09/16 04:07:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64935, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 04:07:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:64996) +2018/09/16 04:07:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:07:36 ruptelaNet.go:261: Data received(client: [::1]:64996, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:07:36 ruptelaNet.go:278: Sent ACK (client: [::1]:64996, IMEI: 352094087982671) +2018/09/16 04:07:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:07:39 ruptelaNet.go:261: Data received(client: [::1]:64996, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 04:07:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:07:39 ruptelaNet.go:278: Sent ACK (client: [::1]:64996, IMEI: 352094087982671) +2018/09/16 04:07:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64996, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:07:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:65028) +2018/09/16 04:07:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:07:49 ruptelaNet.go:261: Data received(client: [::1]:65028, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:07:49 ruptelaNet.go:278: Sent ACK (client: [::1]:65028, IMEI: 352094089712860) +2018/09/16 04:07:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:07:51 ruptelaNet.go:261: Data received(client: [::1]:65028, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 04:07:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:07:51 ruptelaNet.go:278: Sent ACK (client: [::1]:65028, IMEI: 352094089712860) +2018/09/16 04:07:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65028, IMEI: 352094089712860) with duration 2.75 s +2018/09/16 04:08:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:65055) +2018/09/16 04:08:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:65062) +2018/09/16 04:08:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:08:05 ruptelaNet.go:261: Data received(client: [::1]:65062, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:08:05 ruptelaNet.go:278: Sent ACK (client: [::1]:65062, IMEI: 352094087982671) +2018/09/16 04:08:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:08:08 ruptelaNet.go:261: Data received(client: [::1]:65062, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:08:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:08:08 ruptelaNet.go:278: Sent ACK (client: [::1]:65062, IMEI: 352094087982671) +2018/09/16 04:08:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65062, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:08:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65055, IMEI: 0) with duration 15.61 s +2018/09/16 04:08:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:65088) +2018/09/16 04:08:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65088, IMEI: 0) with duration 15.56 s +2018/09/16 04:08:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:65120) +2018/09/16 04:08:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:08:34 ruptelaNet.go:261: Data received(client: [::1]:65120, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:08:34 ruptelaNet.go:278: Sent ACK (client: [::1]:65120, IMEI: 352094087982671) +2018/09/16 04:08:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:08:37 ruptelaNet.go:261: Data received(client: [::1]:65120, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:08:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:08:37 ruptelaNet.go:278: Sent ACK (client: [::1]:65120, IMEI: 352094087982671) +2018/09/16 04:08:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65120, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:08:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:65154) +2018/09/16 04:08:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:08:48 ruptelaNet.go:261: Data received(client: [::1]:65154, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:08:48 ruptelaNet.go:278: Sent ACK (client: [::1]:65154, IMEI: 352094089712860) +2018/09/16 04:08:50 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:08:50 ruptelaNet.go:261: Data received(client: [::1]:65154, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 04:08:50 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:08:50 ruptelaNet.go:278: Sent ACK (client: [::1]:65154, IMEI: 352094089712860) +2018/09/16 04:08:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65154, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 04:09:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:65181) +2018/09/16 04:09:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:09:03 ruptelaNet.go:261: Data received(client: [::1]:65181, IMEI: 352094087982671) with duration 1 s +2018/09/16 04:09:03 ruptelaNet.go:278: Sent ACK (client: [::1]:65181, IMEI: 352094087982671) +2018/09/16 04:09:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:09:06 ruptelaNet.go:261: Data received(client: [::1]:65181, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:09:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:09:06 ruptelaNet.go:278: Sent ACK (client: [::1]:65181, IMEI: 352094087982671) +2018/09/16 04:09:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65181, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:09:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:65233) +2018/09/16 04:09:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:09:32 ruptelaNet.go:261: Data received(client: [::1]:65233, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:09:32 ruptelaNet.go:278: Sent ACK (client: [::1]:65233, IMEI: 352094087982671) +2018/09/16 04:09:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:09:35 ruptelaNet.go:261: Data received(client: [::1]:65233, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:09:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:09:35 ruptelaNet.go:278: Sent ACK (client: [::1]:65233, IMEI: 352094087982671) +2018/09/16 04:09:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65233, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:09:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:65268) +2018/09/16 04:09:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:09:48 ruptelaNet.go:261: Data received(client: [::1]:65268, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:09:48 ruptelaNet.go:278: Sent ACK (client: [::1]:65268, IMEI: 352094089712860) +2018/09/16 04:09:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:09:51 ruptelaNet.go:261: Data received(client: [::1]:65268, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:09:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:09:51 ruptelaNet.go:278: Sent ACK (client: [::1]:65268, IMEI: 352094089712860) +2018/09/16 04:09:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65268, IMEI: 352094089712860) with duration 2.99 s +2018/09/16 04:10:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:65291) +2018/09/16 04:10:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:10:01 ruptelaNet.go:261: Data received(client: [::1]:65291, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:10:01 ruptelaNet.go:278: Sent ACK (client: [::1]:65291, IMEI: 352094087982671) +2018/09/16 04:10:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:10:04 ruptelaNet.go:261: Data received(client: [::1]:65291, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:10:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:10:04 ruptelaNet.go:278: Sent ACK (client: [::1]:65291, IMEI: 352094087982671) +2018/09/16 04:10:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65291, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 04:10:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:65343) +2018/09/16 04:10:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:10:30 ruptelaNet.go:261: Data received(client: [::1]:65343, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:10:30 ruptelaNet.go:278: Sent ACK (client: [::1]:65343, IMEI: 352094087982671) +2018/09/16 04:10:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:10:33 ruptelaNet.go:261: Data received(client: [::1]:65343, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:10:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:10:33 ruptelaNet.go:278: Sent ACK (client: [::1]:65343, IMEI: 352094087982671) +2018/09/16 04:10:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65343, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:10:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:65387) +2018/09/16 04:10:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:10:50 ruptelaNet.go:261: Data received(client: [::1]:65387, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:10:50 ruptelaNet.go:278: Sent ACK (client: [::1]:65387, IMEI: 352094089712860) +2018/09/16 04:10:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:10:53 ruptelaNet.go:261: Data received(client: [::1]:65387, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:10:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:10:53 ruptelaNet.go:278: Sent ACK (client: [::1]:65387, IMEI: 352094089712860) +2018/09/16 04:10:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65387, IMEI: 352094089712860) with duration 3.82 s +2018/09/16 04:10:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:65409) +2018/09/16 04:10:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:10:59 ruptelaNet.go:261: Data received(client: [::1]:65409, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 04:10:59 ruptelaNet.go:278: Sent ACK (client: [::1]:65409, IMEI: 352094087982671) +2018/09/16 04:11:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:11:02 ruptelaNet.go:261: Data received(client: [::1]:65409, IMEI: 352094087982671) with duration 4.27 s +2018/09/16 04:11:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:11:02 ruptelaNet.go:278: Sent ACK (client: [::1]:65409, IMEI: 352094087982671) +2018/09/16 04:11:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65409, IMEI: 352094087982671) with duration 6.43 s +2018/09/16 04:11:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:65464) +2018/09/16 04:11:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:11:28 ruptelaNet.go:261: Data received(client: [::1]:65464, IMEI: 352094087982671) with duration 0.86 s +2018/09/16 04:11:28 ruptelaNet.go:278: Sent ACK (client: [::1]:65464, IMEI: 352094087982671) +2018/09/16 04:11:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:11:31 ruptelaNet.go:261: Data received(client: [::1]:65464, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:11:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:11:31 ruptelaNet.go:278: Sent ACK (client: [::1]:65464, IMEI: 352094087982671) +2018/09/16 04:11:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65464, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:11:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:65514) +2018/09/16 04:11:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:11:51 ruptelaNet.go:261: Data received(client: [::1]:65514, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:11:51 ruptelaNet.go:278: Sent ACK (client: [::1]:65514, IMEI: 352094089712860) +2018/09/16 04:11:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:11:53 ruptelaNet.go:261: Data received(client: [::1]:65514, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 04:11:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:11:53 ruptelaNet.go:278: Sent ACK (client: [::1]:65514, IMEI: 352094089712860) +2018/09/16 04:11:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65514, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 04:11:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:65525) +2018/09/16 04:11:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:11:57 ruptelaNet.go:261: Data received(client: [::1]:65525, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:11:57 ruptelaNet.go:278: Sent ACK (client: [::1]:65525, IMEI: 352094087982671) +2018/09/16 04:12:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:12:00 ruptelaNet.go:261: Data received(client: [::1]:65525, IMEI: 352094087982671) with duration 3.66 s +2018/09/16 04:12:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:12:00 ruptelaNet.go:278: Sent ACK (client: [::1]:65525, IMEI: 352094087982671) +2018/09/16 04:12:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65525, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 04:12:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:49204) +2018/09/16 04:12:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:12:26 ruptelaNet.go:261: Data received(client: [::1]:49204, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 04:12:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49204, IMEI: 352094087982671) +2018/09/16 04:12:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:12:29 ruptelaNet.go:261: Data received(client: [::1]:49204, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 04:12:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:12:29 ruptelaNet.go:278: Sent ACK (client: [::1]:49204, IMEI: 352094087982671) +2018/09/16 04:12:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49204, IMEI: 352094087982671) with duration 6.28 s +2018/09/16 04:12:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49258) +2018/09/16 04:12:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:12:49 ruptelaNet.go:261: Data received(client: [::1]:49258, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:12:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49258, IMEI: 352094089712860) +2018/09/16 04:12:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:12:51 ruptelaNet.go:261: Data received(client: [::1]:49258, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:12:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:12:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49258, IMEI: 352094089712860) +2018/09/16 04:12:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49258, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:12:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:49269) +2018/09/16 04:12:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:12:55 ruptelaNet.go:261: Data received(client: [::1]:49269, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:12:55 ruptelaNet.go:278: Sent ACK (client: [::1]:49269, IMEI: 352094087982671) +2018/09/16 04:12:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:12:58 ruptelaNet.go:261: Data received(client: [::1]:49269, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 04:12:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:12:58 ruptelaNet.go:278: Sent ACK (client: [::1]:49269, IMEI: 352094087982671) +2018/09/16 04:13:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49269, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:13:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:49332) +2018/09/16 04:13:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:13:24 ruptelaNet.go:261: Data received(client: [::1]:49332, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:13:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49332, IMEI: 352094087982671) +2018/09/16 04:13:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:13:27 ruptelaNet.go:261: Data received(client: [::1]:49332, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:13:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:13:27 ruptelaNet.go:278: Sent ACK (client: [::1]:49332, IMEI: 352094087982671) +2018/09/16 04:13:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49332, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:13:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49381) +2018/09/16 04:13:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:13:49 ruptelaNet.go:261: Data received(client: [::1]:49381, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:13:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49381, IMEI: 352094089712860) +2018/09/16 04:13:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:13:51 ruptelaNet.go:261: Data received(client: [::1]:49381, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 04:13:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:13:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49381, IMEI: 352094089712860) +2018/09/16 04:13:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49381, IMEI: 352094089712860) with duration 2.71 s +2018/09/16 04:13:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:49392) +2018/09/16 04:13:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:13:53 ruptelaNet.go:261: Data received(client: [::1]:49392, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 04:13:53 ruptelaNet.go:278: Sent ACK (client: [::1]:49392, IMEI: 352094087982671) +2018/09/16 04:13:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:13:56 ruptelaNet.go:261: Data received(client: [::1]:49392, IMEI: 352094087982671) with duration 3.94 s +2018/09/16 04:13:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:13:56 ruptelaNet.go:278: Sent ACK (client: [::1]:49392, IMEI: 352094087982671) +2018/09/16 04:13:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49392, IMEI: 352094087982671) with duration 6.27 s +2018/09/16 04:14:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:49443) +2018/09/16 04:14:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:14:22 ruptelaNet.go:261: Data received(client: [::1]:49443, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:14:22 ruptelaNet.go:278: Sent ACK (client: [::1]:49443, IMEI: 352094087982671) +2018/09/16 04:14:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:14:25 ruptelaNet.go:261: Data received(client: [::1]:49443, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:14:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:14:25 ruptelaNet.go:278: Sent ACK (client: [::1]:49443, IMEI: 352094087982671) +2018/09/16 04:14:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49443, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:14:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49498) +2018/09/16 04:14:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:14:49 ruptelaNet.go:261: Data received(client: [::1]:49498, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:14:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49498, IMEI: 352094089712860) +2018/09/16 04:14:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:49504) +2018/09/16 04:14:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:14:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:14:51 ruptelaNet.go:261: Data received(client: [::1]:49498, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:14:51 ruptelaNet.go:261: Data received(client: [::1]:49504, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:14:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49504, IMEI: 352094087982671) +2018/09/16 04:14:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:14:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49498, IMEI: 352094089712860) +2018/09/16 04:14:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49498, IMEI: 352094089712860) with duration 3.08 s +2018/09/16 04:14:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:14:54 ruptelaNet.go:261: Data received(client: [::1]:49504, IMEI: 352094087982671) with duration 3.75 s +2018/09/16 04:14:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:14:54 ruptelaNet.go:278: Sent ACK (client: [::1]:49504, IMEI: 352094087982671) +2018/09/16 04:14:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49504, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 04:15:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:49561) +2018/09/16 04:15:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:15:20 ruptelaNet.go:261: Data received(client: [::1]:49561, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:15:20 ruptelaNet.go:278: Sent ACK (client: [::1]:49561, IMEI: 352094087982671) +2018/09/16 04:15:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:15:23 ruptelaNet.go:261: Data received(client: [::1]:49561, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:15:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:15:23 ruptelaNet.go:278: Sent ACK (client: [::1]:49561, IMEI: 352094087982671) +2018/09/16 04:15:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49561, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 04:15:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:49621) +2018/09/16 04:15:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:15:49 ruptelaNet.go:261: Data received(client: [::1]:49621, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 04:15:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49621, IMEI: 352094087982671) +2018/09/16 04:15:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49622) +2018/09/16 04:15:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:15:49 ruptelaNet.go:261: Data received(client: [::1]:49622, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:15:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49622, IMEI: 352094089712860) +2018/09/16 04:15:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:15:51 ruptelaNet.go:261: Data received(client: [::1]:49622, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 04:15:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:15:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49622, IMEI: 352094089712860) +2018/09/16 04:15:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49622, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:15:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:15:52 ruptelaNet.go:261: Data received(client: [::1]:49621, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:15:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:15:52 ruptelaNet.go:278: Sent ACK (client: [::1]:49621, IMEI: 352094087982671) +2018/09/16 04:15:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49621, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 04:16:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:49679) +2018/09/16 04:16:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:16:18 ruptelaNet.go:261: Data received(client: [::1]:49679, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:16:18 ruptelaNet.go:278: Sent ACK (client: [::1]:49679, IMEI: 352094087982671) +2018/09/16 04:16:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:16:21 ruptelaNet.go:261: Data received(client: [::1]:49679, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:16:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:16:21 ruptelaNet.go:278: Sent ACK (client: [::1]:49679, IMEI: 352094087982671) +2018/09/16 04:16:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49679, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:16:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:49738) +2018/09/16 04:16:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:16:47 ruptelaNet.go:261: Data received(client: [::1]:49738, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 04:16:47 ruptelaNet.go:278: Sent ACK (client: [::1]:49738, IMEI: 352094087982671) +2018/09/16 04:16:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49741) +2018/09/16 04:16:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:16:49 ruptelaNet.go:261: Data received(client: [::1]:49741, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:16:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49741, IMEI: 352094089712860) +2018/09/16 04:16:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:16:50 ruptelaNet.go:261: Data received(client: [::1]:49738, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 04:16:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:16:50 ruptelaNet.go:278: Sent ACK (client: [::1]:49738, IMEI: 352094087982671) +2018/09/16 04:16:51 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:16:51 ruptelaNet.go:261: Data received(client: [::1]:49741, IMEI: 352094089712860) with duration 2.2 s +2018/09/16 04:16:51 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:16:51 ruptelaNet.go:278: Sent ACK (client: [::1]:49741, IMEI: 352094089712860) +2018/09/16 04:16:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49741, IMEI: 352094089712860) with duration 3.02 s +2018/09/16 04:16:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49738, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 04:17:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:49794) +2018/09/16 04:17:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:17:16 ruptelaNet.go:261: Data received(client: [::1]:49794, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 04:17:16 ruptelaNet.go:278: Sent ACK (client: [::1]:49794, IMEI: 352094087982671) +2018/09/16 04:17:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:17:19 ruptelaNet.go:261: Data received(client: [::1]:49794, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:17:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:17:19 ruptelaNet.go:278: Sent ACK (client: [::1]:49794, IMEI: 352094087982671) +2018/09/16 04:17:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49794, IMEI: 352094087982671) with duration 6.38 s +2018/09/16 04:17:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:49859) +2018/09/16 04:17:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:17:45 ruptelaNet.go:261: Data received(client: [::1]:49859, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 04:17:45 ruptelaNet.go:278: Sent ACK (client: [::1]:49859, IMEI: 352094087982671) +2018/09/16 04:17:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:17:48 ruptelaNet.go:261: Data received(client: [::1]:49859, IMEI: 352094087982671) with duration 3.36 s +2018/09/16 04:17:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:17:48 ruptelaNet.go:278: Sent ACK (client: [::1]:49859, IMEI: 352094087982671) +2018/09/16 04:17:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:49868) +2018/09/16 04:17:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:17:49 ruptelaNet.go:261: Data received(client: [::1]:49868, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:17:49 ruptelaNet.go:278: Sent ACK (client: [::1]:49868, IMEI: 352094089712860) +2018/09/16 04:17:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49859, IMEI: 352094087982671) with duration 5.42 s +2018/09/16 04:17:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:17:52 ruptelaNet.go:261: Data received(client: [::1]:49868, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:17:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:17:52 ruptelaNet.go:278: Sent ACK (client: [::1]:49868, IMEI: 352094089712860) +2018/09/16 04:17:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49868, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 04:18:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:49914) +2018/09/16 04:18:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:18:13 ruptelaNet.go:261: Data received(client: [::1]:49914, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 04:18:13 ruptelaNet.go:278: Sent ACK (client: [::1]:49914, IMEI: 352094087982671) +2018/09/16 04:18:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:18:16 ruptelaNet.go:261: Data received(client: [::1]:49914, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 04:18:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:18:16 ruptelaNet.go:278: Sent ACK (client: [::1]:49914, IMEI: 352094087982671) +2018/09/16 04:18:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49914, IMEI: 352094087982671) with duration 6.23 s +2018/09/16 04:18:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:49965) +2018/09/16 04:18:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:18:42 ruptelaNet.go:261: Data received(client: [::1]:49965, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:18:42 ruptelaNet.go:278: Sent ACK (client: [::1]:49965, IMEI: 352094087982671) +2018/09/16 04:18:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:18:45 ruptelaNet.go:261: Data received(client: [::1]:49965, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:18:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:18:45 ruptelaNet.go:278: Sent ACK (client: [::1]:49965, IMEI: 352094087982671) +2018/09/16 04:18:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49965, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:18:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:49984) +2018/09/16 04:18:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:18:50 ruptelaNet.go:261: Data received(client: [::1]:49984, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:18:50 ruptelaNet.go:278: Sent ACK (client: [::1]:49984, IMEI: 352094089712860) +2018/09/16 04:18:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:18:52 ruptelaNet.go:261: Data received(client: [::1]:49984, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 04:18:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:18:52 ruptelaNet.go:278: Sent ACK (client: [::1]:49984, IMEI: 352094089712860) +2018/09/16 04:18:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49984, IMEI: 352094089712860) with duration 4.4 s +2018/09/16 04:19:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:50026) +2018/09/16 04:19:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:19:11 ruptelaNet.go:261: Data received(client: [::1]:50026, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 04:19:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50026, IMEI: 352094087982671) +2018/09/16 04:19:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:19:14 ruptelaNet.go:261: Data received(client: [::1]:50026, IMEI: 352094087982671) with duration 3.67 s +2018/09/16 04:19:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:19:14 ruptelaNet.go:278: Sent ACK (client: [::1]:50026, IMEI: 352094087982671) +2018/09/16 04:19:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50026, IMEI: 352094087982671) with duration 5.79 s +2018/09/16 04:19:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:50079) +2018/09/16 04:19:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:19:40 ruptelaNet.go:261: Data received(client: [::1]:50079, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 04:19:40 ruptelaNet.go:278: Sent ACK (client: [::1]:50079, IMEI: 352094087982671) +2018/09/16 04:19:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:19:43 ruptelaNet.go:261: Data received(client: [::1]:50079, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:19:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:19:43 ruptelaNet.go:278: Sent ACK (client: [::1]:50079, IMEI: 352094087982671) +2018/09/16 04:19:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50079, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:19:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50101) +2018/09/16 04:19:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:19:50 ruptelaNet.go:261: Data received(client: [::1]:50101, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:19:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50101, IMEI: 352094089712860) +2018/09/16 04:19:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:19:52 ruptelaNet.go:261: Data received(client: [::1]:50101, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 04:19:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:19:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50101, IMEI: 352094089712860) +2018/09/16 04:19:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50101, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:20:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:50142) +2018/09/16 04:20:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:20:09 ruptelaNet.go:261: Data received(client: [::1]:50142, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 04:20:09 ruptelaNet.go:278: Sent ACK (client: [::1]:50142, IMEI: 352094087982671) +2018/09/16 04:20:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:20:12 ruptelaNet.go:261: Data received(client: [::1]:50142, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 04:20:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:20:12 ruptelaNet.go:278: Sent ACK (client: [::1]:50142, IMEI: 352094087982671) +2018/09/16 04:20:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50142, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 04:20:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:50205) +2018/09/16 04:20:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:20:38 ruptelaNet.go:261: Data received(client: [::1]:50205, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:20:38 ruptelaNet.go:278: Sent ACK (client: [::1]:50205, IMEI: 352094087982671) +2018/09/16 04:20:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:20:41 ruptelaNet.go:261: Data received(client: [::1]:50205, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:20:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:20:41 ruptelaNet.go:278: Sent ACK (client: [::1]:50205, IMEI: 352094087982671) +2018/09/16 04:20:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50205, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 04:20:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50235) +2018/09/16 04:20:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:20:50 ruptelaNet.go:261: Data received(client: [::1]:50235, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:20:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50235, IMEI: 352094089712860) +2018/09/16 04:20:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:20:52 ruptelaNet.go:261: Data received(client: [::1]:50235, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:20:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:20:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50235, IMEI: 352094089712860) +2018/09/16 04:20:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50235, IMEI: 352094089712860) with duration 3.45 s +2018/09/16 04:21:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:50264) +2018/09/16 04:21:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:21:07 ruptelaNet.go:261: Data received(client: [::1]:50264, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 04:21:07 ruptelaNet.go:278: Sent ACK (client: [::1]:50264, IMEI: 352094087982671) +2018/09/16 04:21:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:21:10 ruptelaNet.go:261: Data received(client: [::1]:50264, IMEI: 352094087982671) with duration 3.75 s +2018/09/16 04:21:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:21:10 ruptelaNet.go:278: Sent ACK (client: [::1]:50264, IMEI: 352094087982671) +2018/09/16 04:21:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50264, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 04:21:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:50324) +2018/09/16 04:21:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:21:36 ruptelaNet.go:261: Data received(client: [::1]:50324, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 04:21:36 ruptelaNet.go:278: Sent ACK (client: [::1]:50324, IMEI: 352094087982671) +2018/09/16 04:21:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:21:39 ruptelaNet.go:261: Data received(client: [::1]:50324, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 04:21:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:21:39 ruptelaNet.go:278: Sent ACK (client: [::1]:50324, IMEI: 352094087982671) +2018/09/16 04:21:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50324, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:21:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50354) +2018/09/16 04:21:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:21:50 ruptelaNet.go:261: Data received(client: [::1]:50354, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:21:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50354, IMEI: 352094089712860) +2018/09/16 04:21:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:21:52 ruptelaNet.go:261: Data received(client: [::1]:50354, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:21:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:21:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50354, IMEI: 352094089712860) +2018/09/16 04:21:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50354, IMEI: 352094089712860) with duration 2.98 s +2018/09/16 04:22:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:50385) +2018/09/16 04:22:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:22:05 ruptelaNet.go:261: Data received(client: [::1]:50385, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:22:05 ruptelaNet.go:278: Sent ACK (client: [::1]:50385, IMEI: 352094087982671) +2018/09/16 04:22:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:22:08 ruptelaNet.go:261: Data received(client: [::1]:50385, IMEI: 352094087982671) with duration 3.59 s +2018/09/16 04:22:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:22:08 ruptelaNet.go:278: Sent ACK (client: [::1]:50385, IMEI: 352094087982671) +2018/09/16 04:22:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50385, IMEI: 352094087982671) with duration 5.74 s +2018/09/16 04:22:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50449) +2018/09/16 04:22:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:22:34 ruptelaNet.go:261: Data received(client: [::1]:50449, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 04:22:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50449, IMEI: 352094087982671) +2018/09/16 04:22:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:22:37 ruptelaNet.go:261: Data received(client: [::1]:50449, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:22:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:22:37 ruptelaNet.go:278: Sent ACK (client: [::1]:50449, IMEI: 352094087982671) +2018/09/16 04:22:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50449, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 04:22:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50487) +2018/09/16 04:22:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:22:50 ruptelaNet.go:261: Data received(client: [::1]:50487, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:22:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50487, IMEI: 352094089712860) +2018/09/16 04:22:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:22:52 ruptelaNet.go:261: Data received(client: [::1]:50487, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 04:22:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:22:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50487, IMEI: 352094089712860) +2018/09/16 04:22:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50487, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 04:23:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:50512) +2018/09/16 04:23:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:23:03 ruptelaNet.go:261: Data received(client: [::1]:50512, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:23:03 ruptelaNet.go:278: Sent ACK (client: [::1]:50512, IMEI: 352094087982671) +2018/09/16 04:23:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:23:06 ruptelaNet.go:261: Data received(client: [::1]:50512, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 04:23:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:23:06 ruptelaNet.go:278: Sent ACK (client: [::1]:50512, IMEI: 352094087982671) +2018/09/16 04:23:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50512, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:23:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:50569) +2018/09/16 04:23:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:23:32 ruptelaNet.go:261: Data received(client: [::1]:50569, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:23:32 ruptelaNet.go:278: Sent ACK (client: [::1]:50569, IMEI: 352094087982671) +2018/09/16 04:23:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:23:35 ruptelaNet.go:261: Data received(client: [::1]:50569, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 04:23:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:23:35 ruptelaNet.go:278: Sent ACK (client: [::1]:50569, IMEI: 352094087982671) +2018/09/16 04:23:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50569, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:23:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50608) +2018/09/16 04:23:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:23:50 ruptelaNet.go:261: Data received(client: [::1]:50608, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:23:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50608, IMEI: 352094089712860) +2018/09/16 04:23:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:23:52 ruptelaNet.go:261: Data received(client: [::1]:50608, IMEI: 352094089712860) with duration 2.07 s +2018/09/16 04:23:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:23:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50608, IMEI: 352094089712860) +2018/09/16 04:23:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50608, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 04:24:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:50629) +2018/09/16 04:24:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:24:01 ruptelaNet.go:261: Data received(client: [::1]:50629, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 04:24:01 ruptelaNet.go:278: Sent ACK (client: [::1]:50629, IMEI: 352094087982671) +2018/09/16 04:24:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:24:04 ruptelaNet.go:261: Data received(client: [::1]:50629, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 04:24:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:24:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50629, IMEI: 352094087982671) +2018/09/16 04:24:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50629, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 04:24:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:50690) +2018/09/16 04:24:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:24:30 ruptelaNet.go:261: Data received(client: [::1]:50690, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:24:30 ruptelaNet.go:278: Sent ACK (client: [::1]:50690, IMEI: 352094087982671) +2018/09/16 04:24:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:24:33 ruptelaNet.go:261: Data received(client: [::1]:50690, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:24:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:24:33 ruptelaNet.go:278: Sent ACK (client: [::1]:50690, IMEI: 352094087982671) +2018/09/16 04:24:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50690, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:24:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50734) +2018/09/16 04:24:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:24:50 ruptelaNet.go:261: Data received(client: [::1]:50734, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:24:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50734, IMEI: 352094089712860) +2018/09/16 04:24:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:24:52 ruptelaNet.go:261: Data received(client: [::1]:50734, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:24:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:24:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50734, IMEI: 352094089712860) +2018/09/16 04:24:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50734, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 04:24:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:50752) +2018/09/16 04:24:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:24:59 ruptelaNet.go:261: Data received(client: [::1]:50752, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:24:59 ruptelaNet.go:278: Sent ACK (client: [::1]:50752, IMEI: 352094087982671) +2018/09/16 04:25:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:25:02 ruptelaNet.go:261: Data received(client: [::1]:50752, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:25:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:25:02 ruptelaNet.go:278: Sent ACK (client: [::1]:50752, IMEI: 352094087982671) +2018/09/16 04:25:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50752, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:25:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:50815) +2018/09/16 04:25:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:25:28 ruptelaNet.go:261: Data received(client: [::1]:50815, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:25:28 ruptelaNet.go:278: Sent ACK (client: [::1]:50815, IMEI: 352094087982671) +2018/09/16 04:25:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:25:31 ruptelaNet.go:261: Data received(client: [::1]:50815, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 04:25:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:25:31 ruptelaNet.go:278: Sent ACK (client: [::1]:50815, IMEI: 352094087982671) +2018/09/16 04:25:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50815, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 04:25:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50861) +2018/09/16 04:25:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:25:50 ruptelaNet.go:261: Data received(client: [::1]:50861, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:25:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50861, IMEI: 352094089712860) +2018/09/16 04:25:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:25:53 ruptelaNet.go:261: Data received(client: [::1]:50861, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:25:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:25:53 ruptelaNet.go:278: Sent ACK (client: [::1]:50861, IMEI: 352094089712860) +2018/09/16 04:25:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50861, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 04:25:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:50877) +2018/09/16 04:25:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:25:57 ruptelaNet.go:261: Data received(client: [::1]:50877, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 04:25:57 ruptelaNet.go:278: Sent ACK (client: [::1]:50877, IMEI: 352094087982671) +2018/09/16 04:26:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:26:00 ruptelaNet.go:261: Data received(client: [::1]:50877, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 04:26:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:26:00 ruptelaNet.go:278: Sent ACK (client: [::1]:50877, IMEI: 352094087982671) +2018/09/16 04:26:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50877, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 04:26:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:50935) +2018/09/16 04:26:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:26:26 ruptelaNet.go:261: Data received(client: [::1]:50935, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 04:26:26 ruptelaNet.go:278: Sent ACK (client: [::1]:50935, IMEI: 352094087982671) +2018/09/16 04:26:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:26:29 ruptelaNet.go:261: Data received(client: [::1]:50935, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 04:26:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:26:29 ruptelaNet.go:278: Sent ACK (client: [::1]:50935, IMEI: 352094087982671) +2018/09/16 04:26:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50935, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 04:26:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:50990) +2018/09/16 04:26:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:26:50 ruptelaNet.go:261: Data received(client: [::1]:50990, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:26:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50990, IMEI: 352094089712860) +2018/09/16 04:26:52 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:26:52 ruptelaNet.go:261: Data received(client: [::1]:50990, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 04:26:52 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:26:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50990, IMEI: 352094089712860) +2018/09/16 04:26:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50990, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 04:26:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:51001) +2018/09/16 04:26:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:26:55 ruptelaNet.go:261: Data received(client: [::1]:51001, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 04:26:55 ruptelaNet.go:278: Sent ACK (client: [::1]:51001, IMEI: 352094087982671) +2018/09/16 04:26:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:26:58 ruptelaNet.go:261: Data received(client: [::1]:51001, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 04:26:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:26:58 ruptelaNet.go:278: Sent ACK (client: [::1]:51001, IMEI: 352094087982671) +2018/09/16 04:27:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51001, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:27:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:51058) +2018/09/16 04:27:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:27:24 ruptelaNet.go:261: Data received(client: [::1]:51058, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:27:24 ruptelaNet.go:278: Sent ACK (client: [::1]:51058, IMEI: 352094087982671) +2018/09/16 04:27:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:27:27 ruptelaNet.go:261: Data received(client: [::1]:51058, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:27:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:27:27 ruptelaNet.go:278: Sent ACK (client: [::1]:51058, IMEI: 352094087982671) +2018/09/16 04:27:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51058, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:27:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:51111) +2018/09/16 04:27:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:27:50 ruptelaNet.go:261: Data received(client: [::1]:51111, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:27:50 ruptelaNet.go:278: Sent ACK (client: [::1]:51111, IMEI: 352094089712860) +2018/09/16 04:27:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:51117) +2018/09/16 04:27:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:27:53 ruptelaNet.go:261: Data received(client: [::1]:51111, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:27:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:27:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51111, IMEI: 352094089712860) +2018/09/16 04:27:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:27:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51111, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 04:27:53 ruptelaNet.go:261: Data received(client: [::1]:51117, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:27:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 04:27:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:27:56 ruptelaNet.go:261: Data received(client: [::1]:51117, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 04:27:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:27:56 ruptelaNet.go:278: Sent ACK (client: [::1]:51117, IMEI: 352094087982671) +2018/09/16 04:27:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51117, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 04:28:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:51174) +2018/09/16 04:28:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:28:22 ruptelaNet.go:261: Data received(client: [::1]:51174, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:28:22 ruptelaNet.go:278: Sent ACK (client: [::1]:51174, IMEI: 352094087982671) +2018/09/16 04:28:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:28:25 ruptelaNet.go:261: Data received(client: [::1]:51174, IMEI: 352094087982671) with duration 4.02 s +2018/09/16 04:28:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:28:25 ruptelaNet.go:278: Sent ACK (client: [::1]:51174, IMEI: 352094087982671) +2018/09/16 04:28:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51174, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:28:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51239) +2018/09/16 04:28:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51240) +2018/09/16 04:28:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:28:51 ruptelaNet.go:261: Data received(client: [::1]:51240, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:28:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51240, IMEI: 352094089712860) +2018/09/16 04:28:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:28:51 ruptelaNet.go:261: Data received(client: [::1]:51239, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 04:28:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 04:28:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:28:53 ruptelaNet.go:261: Data received(client: [::1]:51240, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 04:28:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:28:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51240, IMEI: 352094089712860) +2018/09/16 04:28:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51240, IMEI: 352094089712860) with duration 2.75 s +2018/09/16 04:28:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:28:54 ruptelaNet.go:261: Data received(client: [::1]:51239, IMEI: 352094087982671) with duration 3.66 s +2018/09/16 04:28:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:28:54 ruptelaNet.go:278: Sent ACK (client: [::1]:51239, IMEI: 352094087982671) +2018/09/16 04:28:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51239, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 04:29:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:51298) +2018/09/16 04:29:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:29:20 ruptelaNet.go:261: Data received(client: [::1]:51298, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:29:20 ruptelaNet.go:278: Sent ACK (client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 04:29:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:29:23 ruptelaNet.go:261: Data received(client: [::1]:51298, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:29:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:29:23 ruptelaNet.go:278: Sent ACK (client: [::1]:51298, IMEI: 352094087982671) +2018/09/16 04:29:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51298, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:29:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:51355) +2018/09/16 04:29:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:29:49 ruptelaNet.go:261: Data received(client: [::1]:51355, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:29:49 ruptelaNet.go:278: Sent ACK (client: [::1]:51355, IMEI: 352094087982671) +2018/09/16 04:29:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51361) +2018/09/16 04:29:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:29:51 ruptelaNet.go:261: Data received(client: [::1]:51361, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:29:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51361, IMEI: 352094089712860) +2018/09/16 04:29:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:29:53 ruptelaNet.go:261: Data received(client: [::1]:51355, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 04:29:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:29:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51355, IMEI: 352094087982671) +2018/09/16 04:29:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:29:53 ruptelaNet.go:261: Data received(client: [::1]:51361, IMEI: 352094089712860) with duration 2.32 s +2018/09/16 04:29:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:29:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51361, IMEI: 352094089712860) +2018/09/16 04:29:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51361, IMEI: 352094089712860) with duration 3.14 s +2018/09/16 04:29:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51355, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 04:30:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:51418) +2018/09/16 04:30:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:30:18 ruptelaNet.go:261: Data received(client: [::1]:51418, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:30:18 ruptelaNet.go:278: Sent ACK (client: [::1]:51418, IMEI: 352094087982671) +2018/09/16 04:30:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:30:21 ruptelaNet.go:261: Data received(client: [::1]:51418, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:30:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:30:21 ruptelaNet.go:278: Sent ACK (client: [::1]:51418, IMEI: 352094087982671) +2018/09/16 04:30:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51418, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:30:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:51440) +2018/09/16 04:30:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51440, IMEI: 0) with duration 15.46 s +2018/09/16 04:30:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:51472) +2018/09/16 04:30:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:51480) +2018/09/16 04:30:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:30:47 ruptelaNet.go:261: Data received(client: [::1]:51480, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 04:30:47 ruptelaNet.go:278: Sent ACK (client: [::1]:51480, IMEI: 352094087982671) +2018/09/16 04:30:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:30:51 ruptelaNet.go:261: Data received(client: [::1]:51480, IMEI: 352094087982671) with duration 4.35 s +2018/09/16 04:30:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:30:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51480, IMEI: 352094087982671) +2018/09/16 04:30:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51487) +2018/09/16 04:30:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:30:51 ruptelaNet.go:261: Data received(client: [::1]:51487, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:30:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51487, IMEI: 352094089712860) +2018/09/16 04:30:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:30:53 ruptelaNet.go:261: Data received(client: [::1]:51487, IMEI: 352094089712860) with duration 2.01 s +2018/09/16 04:30:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:30:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51487, IMEI: 352094089712860) +2018/09/16 04:30:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51480, IMEI: 352094087982671) with duration 6.61 s +2018/09/16 04:30:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51487, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:31:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51472, IMEI: 0) with duration 15.53 s +2018/09/16 04:31:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:51535) +2018/09/16 04:31:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:31:16 ruptelaNet.go:261: Data received(client: [::1]:51535, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 04:31:16 ruptelaNet.go:278: Sent ACK (client: [::1]:51535, IMEI: 352094087982671) +2018/09/16 04:31:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:31:19 ruptelaNet.go:261: Data received(client: [::1]:51535, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 04:31:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:31:19 ruptelaNet.go:278: Sent ACK (client: [::1]:51535, IMEI: 352094087982671) +2018/09/16 04:31:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51535, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 04:31:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:51597) +2018/09/16 04:31:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:31:45 ruptelaNet.go:261: Data received(client: [::1]:51597, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:31:45 ruptelaNet.go:278: Sent ACK (client: [::1]:51597, IMEI: 352094087982671) +2018/09/16 04:31:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:31:48 ruptelaNet.go:261: Data received(client: [::1]:51597, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:31:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:31:48 ruptelaNet.go:278: Sent ACK (client: [::1]:51597, IMEI: 352094087982671) +2018/09/16 04:31:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51597, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:31:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51615) +2018/09/16 04:31:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:31:51 ruptelaNet.go:261: Data received(client: [::1]:51615, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:31:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51615, IMEI: 352094089712860) +2018/09/16 04:31:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:31:53 ruptelaNet.go:261: Data received(client: [::1]:51615, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:31:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:31:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51615, IMEI: 352094089712860) +2018/09/16 04:31:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51615, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:32:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:51657) +2018/09/16 04:32:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:32:14 ruptelaNet.go:261: Data received(client: [::1]:51657, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:32:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51657, IMEI: 352094087982671) +2018/09/16 04:32:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:32:17 ruptelaNet.go:261: Data received(client: [::1]:51657, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 04:32:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:32:17 ruptelaNet.go:278: Sent ACK (client: [::1]:51657, IMEI: 352094087982671) +2018/09/16 04:32:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51657, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 04:32:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:51716) +2018/09/16 04:32:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:32:43 ruptelaNet.go:261: Data received(client: [::1]:51716, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:32:43 ruptelaNet.go:278: Sent ACK (client: [::1]:51716, IMEI: 352094087982671) +2018/09/16 04:32:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:32:46 ruptelaNet.go:261: Data received(client: [::1]:51716, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 04:32:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:32:46 ruptelaNet.go:278: Sent ACK (client: [::1]:51716, IMEI: 352094087982671) +2018/09/16 04:32:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51716, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 04:32:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51734) +2018/09/16 04:32:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:32:51 ruptelaNet.go:261: Data received(client: [::1]:51734, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:32:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51734, IMEI: 352094089712860) +2018/09/16 04:32:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:32:53 ruptelaNet.go:261: Data received(client: [::1]:51734, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 04:32:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:32:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51734, IMEI: 352094089712860) +2018/09/16 04:32:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51734, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 04:33:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:51777) +2018/09/16 04:33:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:33:12 ruptelaNet.go:261: Data received(client: [::1]:51777, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:33:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51777, IMEI: 352094087982671) +2018/09/16 04:33:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:33:15 ruptelaNet.go:261: Data received(client: [::1]:51777, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:33:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:33:15 ruptelaNet.go:278: Sent ACK (client: [::1]:51777, IMEI: 352094087982671) +2018/09/16 04:33:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51777, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:33:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:51830) +2018/09/16 04:33:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:33:41 ruptelaNet.go:261: Data received(client: [::1]:51830, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 04:33:41 ruptelaNet.go:278: Sent ACK (client: [::1]:51830, IMEI: 352094087982671) +2018/09/16 04:33:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:33:44 ruptelaNet.go:261: Data received(client: [::1]:51830, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 04:33:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:33:44 ruptelaNet.go:278: Sent ACK (client: [::1]:51830, IMEI: 352094087982671) +2018/09/16 04:33:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51830, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 04:33:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51854) +2018/09/16 04:33:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:33:51 ruptelaNet.go:261: Data received(client: [::1]:51854, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:33:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51854, IMEI: 352094089712860) +2018/09/16 04:33:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:33:54 ruptelaNet.go:261: Data received(client: [::1]:51854, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 04:33:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:33:54 ruptelaNet.go:278: Sent ACK (client: [::1]:51854, IMEI: 352094089712860) +2018/09/16 04:33:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51854, IMEI: 352094089712860) with duration 3.68 s +2018/09/16 04:34:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:51891) +2018/09/16 04:34:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:34:10 ruptelaNet.go:261: Data received(client: [::1]:51891, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 04:34:10 ruptelaNet.go:278: Sent ACK (client: [::1]:51891, IMEI: 352094087982671) +2018/09/16 04:34:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:34:13 ruptelaNet.go:261: Data received(client: [::1]:51891, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:34:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:34:13 ruptelaNet.go:278: Sent ACK (client: [::1]:51891, IMEI: 352094087982671) +2018/09/16 04:34:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51891, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:34:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:51947) +2018/09/16 04:34:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:34:39 ruptelaNet.go:261: Data received(client: [::1]:51947, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:34:39 ruptelaNet.go:278: Sent ACK (client: [::1]:51947, IMEI: 352094087982671) +2018/09/16 04:34:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:34:42 ruptelaNet.go:261: Data received(client: [::1]:51947, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:34:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:34:42 ruptelaNet.go:278: Sent ACK (client: [::1]:51947, IMEI: 352094087982671) +2018/09/16 04:34:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51947, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 04:34:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51972) +2018/09/16 04:34:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:34:51 ruptelaNet.go:261: Data received(client: [::1]:51972, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:34:51 ruptelaNet.go:278: Sent ACK (client: [::1]:51972, IMEI: 352094089712860) +2018/09/16 04:34:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:34:53 ruptelaNet.go:261: Data received(client: [::1]:51972, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:34:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:34:53 ruptelaNet.go:278: Sent ACK (client: [::1]:51972, IMEI: 352094089712860) +2018/09/16 04:34:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51972, IMEI: 352094089712860) with duration 2.9 s +2018/09/16 04:35:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:52009) +2018/09/16 04:35:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:35:08 ruptelaNet.go:261: Data received(client: [::1]:52009, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:35:08 ruptelaNet.go:278: Sent ACK (client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 04:35:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:35:11 ruptelaNet.go:261: Data received(client: [::1]:52009, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:35:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:35:11 ruptelaNet.go:278: Sent ACK (client: [::1]:52009, IMEI: 352094087982671) +2018/09/16 04:35:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52009, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:35:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:52070) +2018/09/16 04:35:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:35:37 ruptelaNet.go:261: Data received(client: [::1]:52070, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 04:35:37 ruptelaNet.go:278: Sent ACK (client: [::1]:52070, IMEI: 352094087982671) +2018/09/16 04:35:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:35:40 ruptelaNet.go:261: Data received(client: [::1]:52070, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 04:35:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:35:40 ruptelaNet.go:278: Sent ACK (client: [::1]:52070, IMEI: 352094087982671) +2018/09/16 04:35:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52070, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 04:35:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52098) +2018/09/16 04:35:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:35:52 ruptelaNet.go:261: Data received(client: [::1]:52098, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:35:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52098, IMEI: 352094089712860) +2018/09/16 04:35:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:35:54 ruptelaNet.go:261: Data received(client: [::1]:52098, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 04:35:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:35:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52098, IMEI: 352094089712860) +2018/09/16 04:35:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52098, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 04:36:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:52126) +2018/09/16 04:36:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:36:06 ruptelaNet.go:261: Data received(client: [::1]:52126, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 04:36:06 ruptelaNet.go:278: Sent ACK (client: [::1]:52126, IMEI: 352094087982671) +2018/09/16 04:36:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:36:09 ruptelaNet.go:261: Data received(client: [::1]:52126, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:36:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:36:09 ruptelaNet.go:278: Sent ACK (client: [::1]:52126, IMEI: 352094087982671) +2018/09/16 04:36:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52126, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:36:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:52184) +2018/09/16 04:36:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:36:35 ruptelaNet.go:261: Data received(client: [::1]:52184, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:36:35 ruptelaNet.go:278: Sent ACK (client: [::1]:52184, IMEI: 352094087982671) +2018/09/16 04:36:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:36:38 ruptelaNet.go:261: Data received(client: [::1]:52184, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:36:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:36:38 ruptelaNet.go:278: Sent ACK (client: [::1]:52184, IMEI: 352094087982671) +2018/09/16 04:36:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52184, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 04:36:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52217) +2018/09/16 04:36:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:36:52 ruptelaNet.go:261: Data received(client: [::1]:52217, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:36:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52217, IMEI: 352094089712860) +2018/09/16 04:36:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:36:54 ruptelaNet.go:261: Data received(client: [::1]:52217, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:36:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:36:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52217, IMEI: 352094089712860) +2018/09/16 04:36:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52217, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:37:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:52239) +2018/09/16 04:37:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:37:04 ruptelaNet.go:261: Data received(client: [::1]:52239, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:37:04 ruptelaNet.go:278: Sent ACK (client: [::1]:52239, IMEI: 352094087982671) +2018/09/16 04:37:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:37:07 ruptelaNet.go:261: Data received(client: [::1]:52239, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:37:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:37:07 ruptelaNet.go:278: Sent ACK (client: [::1]:52239, IMEI: 352094087982671) +2018/09/16 04:37:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52239, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:37:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:52299) +2018/09/16 04:37:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:37:33 ruptelaNet.go:261: Data received(client: [::1]:52299, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:37:33 ruptelaNet.go:278: Sent ACK (client: [::1]:52299, IMEI: 352094087982671) +2018/09/16 04:37:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:37:36 ruptelaNet.go:261: Data received(client: [::1]:52299, IMEI: 352094087982671) with duration 4.16 s +2018/09/16 04:37:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:37:36 ruptelaNet.go:278: Sent ACK (client: [::1]:52299, IMEI: 352094087982671) +2018/09/16 04:37:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52299, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 04:37:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:52338) +2018/09/16 04:37:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:37:51 ruptelaNet.go:261: Data received(client: [::1]:52338, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:37:51 ruptelaNet.go:278: Sent ACK (client: [::1]:52338, IMEI: 352094089712860) +2018/09/16 04:37:53 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:37:53 ruptelaNet.go:261: Data received(client: [::1]:52338, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:37:53 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:37:53 ruptelaNet.go:278: Sent ACK (client: [::1]:52338, IMEI: 352094089712860) +2018/09/16 04:37:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52338, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:38:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:52361) +2018/09/16 04:38:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:38:02 ruptelaNet.go:261: Data received(client: [::1]:52361, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 04:38:02 ruptelaNet.go:278: Sent ACK (client: [::1]:52361, IMEI: 352094087982671) +2018/09/16 04:38:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:38:05 ruptelaNet.go:261: Data received(client: [::1]:52361, IMEI: 352094087982671) with duration 3.46 s +2018/09/16 04:38:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:38:05 ruptelaNet.go:278: Sent ACK (client: [::1]:52361, IMEI: 352094087982671) +2018/09/16 04:38:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52361, IMEI: 352094087982671) with duration 5.61 s +2018/09/16 04:38:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:52415) +2018/09/16 04:38:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:38:30 ruptelaNet.go:261: Data received(client: [::1]:52415, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:38:30 ruptelaNet.go:278: Sent ACK (client: [::1]:52415, IMEI: 352094087982671) +2018/09/16 04:38:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:38:33 ruptelaNet.go:261: Data received(client: [::1]:52415, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:38:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:38:33 ruptelaNet.go:278: Sent ACK (client: [::1]:52415, IMEI: 352094087982671) +2018/09/16 04:38:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52415, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:38:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:52470) +2018/09/16 04:38:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:38:53 ruptelaNet.go:261: Data received(client: [::1]:52470, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:38:53 ruptelaNet.go:278: Sent ACK (client: [::1]:52470, IMEI: 352094089712860) +2018/09/16 04:38:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:38:55 ruptelaNet.go:261: Data received(client: [::1]:52470, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:38:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:38:55 ruptelaNet.go:278: Sent ACK (client: [::1]:52470, IMEI: 352094089712860) +2018/09/16 04:38:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52470, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 04:38:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:52482) +2018/09/16 04:38:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:38:59 ruptelaNet.go:261: Data received(client: [::1]:52482, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:38:59 ruptelaNet.go:278: Sent ACK (client: [::1]:52482, IMEI: 352094087982671) +2018/09/16 04:39:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:39:02 ruptelaNet.go:261: Data received(client: [::1]:52482, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:39:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:39:02 ruptelaNet.go:278: Sent ACK (client: [::1]:52482, IMEI: 352094087982671) +2018/09/16 04:39:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52482, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:39:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:52539) +2018/09/16 04:39:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:39:28 ruptelaNet.go:261: Data received(client: [::1]:52539, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 04:39:28 ruptelaNet.go:278: Sent ACK (client: [::1]:52539, IMEI: 352094087982671) +2018/09/16 04:39:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:39:31 ruptelaNet.go:261: Data received(client: [::1]:52539, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:39:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:39:31 ruptelaNet.go:278: Sent ACK (client: [::1]:52539, IMEI: 352094087982671) +2018/09/16 04:39:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52539, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 04:39:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52591) +2018/09/16 04:39:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:39:52 ruptelaNet.go:261: Data received(client: [::1]:52591, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:39:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52591, IMEI: 352094089712860) +2018/09/16 04:39:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:39:54 ruptelaNet.go:261: Data received(client: [::1]:52591, IMEI: 352094089712860) with duration 2.14 s +2018/09/16 04:39:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:39:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52591, IMEI: 352094089712860) +2018/09/16 04:39:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52591, IMEI: 352094089712860) with duration 2.83 s +2018/09/16 04:39:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:52603) +2018/09/16 04:39:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:39:57 ruptelaNet.go:261: Data received(client: [::1]:52603, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 04:39:57 ruptelaNet.go:278: Sent ACK (client: [::1]:52603, IMEI: 352094087982671) +2018/09/16 04:40:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:40:00 ruptelaNet.go:261: Data received(client: [::1]:52603, IMEI: 352094087982671) with duration 3.74 s +2018/09/16 04:40:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:40:00 ruptelaNet.go:278: Sent ACK (client: [::1]:52603, IMEI: 352094087982671) +2018/09/16 04:40:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52603, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 04:40:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:52656) +2018/09/16 04:40:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:40:27 ruptelaNet.go:261: Data received(client: [::1]:52656, IMEI: 352094087982671) with duration 1.94 s +2018/09/16 04:40:27 ruptelaNet.go:278: Sent ACK (client: [::1]:52656, IMEI: 352094087982671) +2018/09/16 04:40:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:40:30 ruptelaNet.go:261: Data received(client: [::1]:52656, IMEI: 352094087982671) with duration 4.81 s +2018/09/16 04:40:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:40:30 ruptelaNet.go:278: Sent ACK (client: [::1]:52656, IMEI: 352094087982671) +2018/09/16 04:40:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52656, IMEI: 352094087982671) with duration 6.96 s +2018/09/16 04:40:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52705) +2018/09/16 04:40:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:40:52 ruptelaNet.go:261: Data received(client: [::1]:52705, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 04:40:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52705, IMEI: 352094089712860) +2018/09/16 04:40:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:40:54 ruptelaNet.go:261: Data received(client: [::1]:52705, IMEI: 352094089712860) with duration 2.24 s +2018/09/16 04:40:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:40:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52705, IMEI: 352094089712860) +2018/09/16 04:40:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:52717) +2018/09/16 04:40:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52705, IMEI: 352094089712860) with duration 3.59 s +2018/09/16 04:40:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:40:56 ruptelaNet.go:261: Data received(client: [::1]:52717, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 04:40:56 ruptelaNet.go:278: Sent ACK (client: [::1]:52717, IMEI: 352094087982671) +2018/09/16 04:40:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:40:59 ruptelaNet.go:261: Data received(client: [::1]:52717, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:40:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:40:59 ruptelaNet.go:278: Sent ACK (client: [::1]:52717, IMEI: 352094087982671) +2018/09/16 04:41:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52717, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:41:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:52771) +2018/09/16 04:41:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:41:25 ruptelaNet.go:261: Data received(client: [::1]:52771, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:41:25 ruptelaNet.go:278: Sent ACK (client: [::1]:52771, IMEI: 352094087982671) +2018/09/16 04:41:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:41:28 ruptelaNet.go:261: Data received(client: [::1]:52771, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:41:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:41:28 ruptelaNet.go:278: Sent ACK (client: [::1]:52771, IMEI: 352094087982671) +2018/09/16 04:41:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52771, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:41:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52830) +2018/09/16 04:41:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:41:52 ruptelaNet.go:261: Data received(client: [::1]:52830, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:41:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52830, IMEI: 352094089712860) +2018/09/16 04:41:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:52836) +2018/09/16 04:41:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:41:54 ruptelaNet.go:261: Data received(client: [::1]:52830, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:41:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:41:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52830, IMEI: 352094089712860) +2018/09/16 04:41:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:41:54 ruptelaNet.go:261: Data received(client: [::1]:52836, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 04:41:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52836, IMEI: 352094087982671) +2018/09/16 04:41:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52830, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:41:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:41:57 ruptelaNet.go:261: Data received(client: [::1]:52836, IMEI: 352094087982671) with duration 4 s +2018/09/16 04:41:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:41:57 ruptelaNet.go:278: Sent ACK (client: [::1]:52836, IMEI: 352094087982671) +2018/09/16 04:41:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52836, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 04:42:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:52895) +2018/09/16 04:42:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:42:23 ruptelaNet.go:261: Data received(client: [::1]:52895, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:42:23 ruptelaNet.go:278: Sent ACK (client: [::1]:52895, IMEI: 352094087982671) +2018/09/16 04:42:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:42:26 ruptelaNet.go:261: Data received(client: [::1]:52895, IMEI: 352094087982671) with duration 4.06 s +2018/09/16 04:42:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:42:26 ruptelaNet.go:278: Sent ACK (client: [::1]:52895, IMEI: 352094087982671) +2018/09/16 04:42:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52895, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 04:42:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:52961) +2018/09/16 04:42:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:52962) +2018/09/16 04:42:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:42:52 ruptelaNet.go:261: Data received(client: [::1]:52962, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:42:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52962, IMEI: 352094089712860) +2018/09/16 04:42:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:42:52 ruptelaNet.go:261: Data received(client: [::1]:52961, IMEI: 352094087982671) with duration 0.83 s +2018/09/16 04:42:52 ruptelaNet.go:278: Sent ACK (client: [::1]:52961, IMEI: 352094087982671) +2018/09/16 04:42:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:42:54 ruptelaNet.go:261: Data received(client: [::1]:52962, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 04:42:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:42:54 ruptelaNet.go:278: Sent ACK (client: [::1]:52962, IMEI: 352094089712860) +2018/09/16 04:42:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52962, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 04:42:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:42:55 ruptelaNet.go:261: Data received(client: [::1]:52961, IMEI: 352094087982671) with duration 3.62 s +2018/09/16 04:42:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:42:55 ruptelaNet.go:278: Sent ACK (client: [::1]:52961, IMEI: 352094087982671) +2018/09/16 04:42:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52961, IMEI: 352094087982671) with duration 5.7 s +2018/09/16 04:43:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:53025) +2018/09/16 04:43:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:43:21 ruptelaNet.go:261: Data received(client: [::1]:53025, IMEI: 352094087982671) with duration 1 s +2018/09/16 04:43:21 ruptelaNet.go:278: Sent ACK (client: [::1]:53025, IMEI: 352094087982671) +2018/09/16 04:43:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:43:24 ruptelaNet.go:261: Data received(client: [::1]:53025, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 04:43:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:43:24 ruptelaNet.go:278: Sent ACK (client: [::1]:53025, IMEI: 352094087982671) +2018/09/16 04:43:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53025, IMEI: 352094087982671) with duration 6.1 s +2018/09/16 04:43:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:53092) +2018/09/16 04:43:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:43:50 ruptelaNet.go:261: Data received(client: [::1]:53092, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:43:50 ruptelaNet.go:278: Sent ACK (client: [::1]:53092, IMEI: 352094087982671) +2018/09/16 04:43:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:53098) +2018/09/16 04:43:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:43:52 ruptelaNet.go:261: Data received(client: [::1]:53098, IMEI: 352094089712860) with duration 0.05 s +2018/09/16 04:43:52 ruptelaNet.go:278: Sent ACK (client: [::1]:53098, IMEI: 352094089712860) +2018/09/16 04:43:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:43:53 ruptelaNet.go:261: Data received(client: [::1]:53092, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 04:43:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:43:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53092, IMEI: 352094087982671) +2018/09/16 04:43:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:43:54 ruptelaNet.go:261: Data received(client: [::1]:53098, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 04:43:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:43:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53098, IMEI: 352094089712860) +2018/09/16 04:43:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53098, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:43:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53092, IMEI: 352094087982671) with duration 6.15 s +2018/09/16 04:44:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:53150) +2018/09/16 04:44:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:44:19 ruptelaNet.go:261: Data received(client: [::1]:53150, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:44:19 ruptelaNet.go:278: Sent ACK (client: [::1]:53150, IMEI: 352094087982671) +2018/09/16 04:44:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:44:22 ruptelaNet.go:261: Data received(client: [::1]:53150, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:44:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:44:22 ruptelaNet.go:278: Sent ACK (client: [::1]:53150, IMEI: 352094087982671) +2018/09/16 04:44:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53150, IMEI: 352094087982671) with duration 6.17 s +2018/09/16 04:44:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:53207) +2018/09/16 04:44:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:44:48 ruptelaNet.go:261: Data received(client: [::1]:53207, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:44:48 ruptelaNet.go:278: Sent ACK (client: [::1]:53207, IMEI: 352094087982671) +2018/09/16 04:44:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:44:51 ruptelaNet.go:261: Data received(client: [::1]:53207, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:44:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:44:51 ruptelaNet.go:278: Sent ACK (client: [::1]:53207, IMEI: 352094087982671) +2018/09/16 04:44:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:53219) +2018/09/16 04:44:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:44:52 ruptelaNet.go:261: Data received(client: [::1]:53219, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:44:52 ruptelaNet.go:278: Sent ACK (client: [::1]:53219, IMEI: 352094089712860) +2018/09/16 04:44:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53207, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 04:44:54 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:44:54 ruptelaNet.go:261: Data received(client: [::1]:53219, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 04:44:54 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:44:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53219, IMEI: 352094089712860) +2018/09/16 04:44:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53219, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:45:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:53267) +2018/09/16 04:45:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:45:17 ruptelaNet.go:261: Data received(client: [::1]:53267, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 04:45:17 ruptelaNet.go:278: Sent ACK (client: [::1]:53267, IMEI: 352094087982671) +2018/09/16 04:45:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:45:20 ruptelaNet.go:261: Data received(client: [::1]:53267, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 04:45:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:45:20 ruptelaNet.go:278: Sent ACK (client: [::1]:53267, IMEI: 352094087982671) +2018/09/16 04:45:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53267, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:45:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:53328) +2018/09/16 04:45:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:45:46 ruptelaNet.go:261: Data received(client: [::1]:53328, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:45:46 ruptelaNet.go:278: Sent ACK (client: [::1]:53328, IMEI: 352094087982671) +2018/09/16 04:45:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:45:49 ruptelaNet.go:261: Data received(client: [::1]:53328, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 04:45:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:45:49 ruptelaNet.go:278: Sent ACK (client: [::1]:53328, IMEI: 352094087982671) +2018/09/16 04:45:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53328, IMEI: 352094087982671) with duration 6.37 s +2018/09/16 04:45:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:53346) +2018/09/16 04:45:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:45:54 ruptelaNet.go:261: Data received(client: [::1]:53346, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:45:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53346, IMEI: 352094089712860) +2018/09/16 04:45:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:45:56 ruptelaNet.go:261: Data received(client: [::1]:53346, IMEI: 352094089712860) with duration 2.24 s +2018/09/16 04:45:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:45:56 ruptelaNet.go:278: Sent ACK (client: [::1]:53346, IMEI: 352094089712860) +2018/09/16 04:45:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53346, IMEI: 352094089712860) with duration 3.41 s +2018/09/16 04:46:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53390) +2018/09/16 04:46:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:46:15 ruptelaNet.go:261: Data received(client: [::1]:53390, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 04:46:15 ruptelaNet.go:278: Sent ACK (client: [::1]:53390, IMEI: 352094087982671) +2018/09/16 04:46:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:46:18 ruptelaNet.go:261: Data received(client: [::1]:53390, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:46:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:46:18 ruptelaNet.go:278: Sent ACK (client: [::1]:53390, IMEI: 352094087982671) +2018/09/16 04:46:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53390, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:46:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:53448) +2018/09/16 04:46:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:46:44 ruptelaNet.go:261: Data received(client: [::1]:53448, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:46:44 ruptelaNet.go:278: Sent ACK (client: [::1]:53448, IMEI: 352094087982671) +2018/09/16 04:46:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:46:47 ruptelaNet.go:261: Data received(client: [::1]:53448, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:46:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:46:47 ruptelaNet.go:278: Sent ACK (client: [::1]:53448, IMEI: 352094087982671) +2018/09/16 04:46:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53448, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 04:46:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:53471) +2018/09/16 04:46:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:46:53 ruptelaNet.go:261: Data received(client: [::1]:53471, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:46:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53471, IMEI: 352094089712860) +2018/09/16 04:46:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:46:55 ruptelaNet.go:261: Data received(client: [::1]:53471, IMEI: 352094089712860) with duration 1.98 s +2018/09/16 04:46:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:46:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53471, IMEI: 352094089712860) +2018/09/16 04:46:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53471, IMEI: 352094089712860) with duration 2.8 s +2018/09/16 04:47:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:53518) +2018/09/16 04:47:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:47:13 ruptelaNet.go:261: Data received(client: [::1]:53518, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:47:13 ruptelaNet.go:278: Sent ACK (client: [::1]:53518, IMEI: 352094087982671) +2018/09/16 04:47:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:47:17 ruptelaNet.go:261: Data received(client: [::1]:53518, IMEI: 352094087982671) with duration 4.59 s +2018/09/16 04:47:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:47:17 ruptelaNet.go:278: Sent ACK (client: [::1]:53518, IMEI: 352094087982671) +2018/09/16 04:47:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53518, IMEI: 352094087982671) with duration 6.66 s +2018/09/16 04:47:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:53577) +2018/09/16 04:47:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:47:42 ruptelaNet.go:261: Data received(client: [::1]:53577, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:47:42 ruptelaNet.go:278: Sent ACK (client: [::1]:53577, IMEI: 352094087982671) +2018/09/16 04:47:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:47:45 ruptelaNet.go:261: Data received(client: [::1]:53577, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 04:47:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:47:45 ruptelaNet.go:278: Sent ACK (client: [::1]:53577, IMEI: 352094087982671) +2018/09/16 04:47:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53577, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 04:47:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:53606) +2018/09/16 04:47:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:47:55 ruptelaNet.go:261: Data received(client: [::1]:53606, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:47:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53606, IMEI: 352094089712860) +2018/09/16 04:47:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:47:57 ruptelaNet.go:261: Data received(client: [::1]:53606, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:47:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:47:57 ruptelaNet.go:278: Sent ACK (client: [::1]:53606, IMEI: 352094089712860) +2018/09/16 04:47:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53606, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:48:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:53637) +2018/09/16 04:48:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:48:11 ruptelaNet.go:261: Data received(client: [::1]:53637, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:48:11 ruptelaNet.go:278: Sent ACK (client: [::1]:53637, IMEI: 352094087982671) +2018/09/16 04:48:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:48:14 ruptelaNet.go:261: Data received(client: [::1]:53637, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 04:48:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:48:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53637, IMEI: 352094087982671) +2018/09/16 04:48:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53637, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 04:48:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:53695) +2018/09/16 04:48:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:48:40 ruptelaNet.go:261: Data received(client: [::1]:53695, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:48:40 ruptelaNet.go:278: Sent ACK (client: [::1]:53695, IMEI: 352094087982671) +2018/09/16 04:48:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:48:43 ruptelaNet.go:261: Data received(client: [::1]:53695, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:48:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:48:43 ruptelaNet.go:278: Sent ACK (client: [::1]:53695, IMEI: 352094087982671) +2018/09/16 04:48:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53695, IMEI: 352094087982671) with duration 6.15 s +2018/09/16 04:48:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:53726) +2018/09/16 04:48:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:48:54 ruptelaNet.go:261: Data received(client: [::1]:53726, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 04:48:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53726, IMEI: 352094089712860) +2018/09/16 04:48:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:48:56 ruptelaNet.go:261: Data received(client: [::1]:53726, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 04:48:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:48:56 ruptelaNet.go:278: Sent ACK (client: [::1]:53726, IMEI: 352094089712860) +2018/09/16 04:48:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53726, IMEI: 352094089712860) with duration 3.11 s +2018/09/16 04:49:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:53757) +2018/09/16 04:49:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:49:09 ruptelaNet.go:261: Data received(client: [::1]:53757, IMEI: 352094087982671) with duration 0.71 s +2018/09/16 04:49:09 ruptelaNet.go:278: Sent ACK (client: [::1]:53757, IMEI: 352094087982671) +2018/09/16 04:49:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:49:12 ruptelaNet.go:261: Data received(client: [::1]:53757, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 04:49:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:49:12 ruptelaNet.go:278: Sent ACK (client: [::1]:53757, IMEI: 352094087982671) +2018/09/16 04:49:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53757, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 04:49:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:53814) +2018/09/16 04:49:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:49:38 ruptelaNet.go:261: Data received(client: [::1]:53814, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:49:38 ruptelaNet.go:278: Sent ACK (client: [::1]:53814, IMEI: 352094087982671) +2018/09/16 04:49:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:49:41 ruptelaNet.go:261: Data received(client: [::1]:53814, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:49:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:49:41 ruptelaNet.go:278: Sent ACK (client: [::1]:53814, IMEI: 352094087982671) +2018/09/16 04:49:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53814, IMEI: 352094087982671) with duration 6.96 s +2018/09/16 04:49:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:53843) +2018/09/16 04:49:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:49:53 ruptelaNet.go:261: Data received(client: [::1]:53843, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:49:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53843, IMEI: 352094089712860) +2018/09/16 04:49:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:49:55 ruptelaNet.go:261: Data received(client: [::1]:53843, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 04:49:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:49:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53843, IMEI: 352094089712860) +2018/09/16 04:49:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53843, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:50:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:53871) +2018/09/16 04:50:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:50:08 ruptelaNet.go:261: Data received(client: [::1]:53871, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:50:08 ruptelaNet.go:278: Sent ACK (client: [::1]:53871, IMEI: 352094087982671) +2018/09/16 04:50:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:50:11 ruptelaNet.go:261: Data received(client: [::1]:53871, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:50:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:50:11 ruptelaNet.go:278: Sent ACK (client: [::1]:53871, IMEI: 352094087982671) +2018/09/16 04:50:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53871, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:50:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:53928) +2018/09/16 04:50:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:50:37 ruptelaNet.go:261: Data received(client: [::1]:53928, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 04:50:37 ruptelaNet.go:278: Sent ACK (client: [::1]:53928, IMEI: 352094087982671) +2018/09/16 04:50:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:50:40 ruptelaNet.go:261: Data received(client: [::1]:53928, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 04:50:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:50:40 ruptelaNet.go:278: Sent ACK (client: [::1]:53928, IMEI: 352094087982671) +2018/09/16 04:50:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53928, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 04:50:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:53961) +2018/09/16 04:50:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:50:53 ruptelaNet.go:261: Data received(client: [::1]:53961, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:50:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53961, IMEI: 352094089712860) +2018/09/16 04:50:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:50:55 ruptelaNet.go:261: Data received(client: [::1]:53961, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:50:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:50:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53961, IMEI: 352094089712860) +2018/09/16 04:50:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53961, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 04:51:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:53987) +2018/09/16 04:51:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:51:06 ruptelaNet.go:261: Data received(client: [::1]:53987, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 04:51:06 ruptelaNet.go:278: Sent ACK (client: [::1]:53987, IMEI: 352094087982671) +2018/09/16 04:51:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:51:09 ruptelaNet.go:261: Data received(client: [::1]:53987, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:51:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:51:09 ruptelaNet.go:278: Sent ACK (client: [::1]:53987, IMEI: 352094087982671) +2018/09/16 04:51:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53987, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:51:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:54057) +2018/09/16 04:51:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:51:35 ruptelaNet.go:261: Data received(client: [::1]:54057, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:51:35 ruptelaNet.go:278: Sent ACK (client: [::1]:54057, IMEI: 352094087982671) +2018/09/16 04:51:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:51:38 ruptelaNet.go:261: Data received(client: [::1]:54057, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:51:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:51:38 ruptelaNet.go:278: Sent ACK (client: [::1]:54057, IMEI: 352094087982671) +2018/09/16 04:51:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54057, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 04:51:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:54095) +2018/09/16 04:51:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:51:54 ruptelaNet.go:261: Data received(client: [::1]:54095, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:51:54 ruptelaNet.go:278: Sent ACK (client: [::1]:54095, IMEI: 352094089712860) +2018/09/16 04:51:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:51:56 ruptelaNet.go:261: Data received(client: [::1]:54095, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 04:51:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:51:56 ruptelaNet.go:278: Sent ACK (client: [::1]:54095, IMEI: 352094089712860) +2018/09/16 04:51:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54095, IMEI: 352094089712860) with duration 3.24 s +2018/09/16 04:52:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:54112) +2018/09/16 04:52:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:52:04 ruptelaNet.go:261: Data received(client: [::1]:54112, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 04:52:04 ruptelaNet.go:278: Sent ACK (client: [::1]:54112, IMEI: 352094087982671) +2018/09/16 04:52:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:52:07 ruptelaNet.go:261: Data received(client: [::1]:54112, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:52:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:52:07 ruptelaNet.go:278: Sent ACK (client: [::1]:54112, IMEI: 352094087982671) +2018/09/16 04:52:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54112, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:52:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:54170) +2018/09/16 04:52:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:52:33 ruptelaNet.go:261: Data received(client: [::1]:54170, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:52:33 ruptelaNet.go:278: Sent ACK (client: [::1]:54170, IMEI: 352094087982671) +2018/09/16 04:52:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:52:36 ruptelaNet.go:261: Data received(client: [::1]:54170, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:52:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:52:36 ruptelaNet.go:278: Sent ACK (client: [::1]:54170, IMEI: 352094087982671) +2018/09/16 04:52:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54170, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 04:52:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54212) +2018/09/16 04:52:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:52:53 ruptelaNet.go:261: Data received(client: [::1]:54212, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:52:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54212, IMEI: 352094089712860) +2018/09/16 04:52:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:52:55 ruptelaNet.go:261: Data received(client: [::1]:54212, IMEI: 352094089712860) with duration 1.92 s +2018/09/16 04:52:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:52:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54212, IMEI: 352094089712860) +2018/09/16 04:52:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54212, IMEI: 352094089712860) with duration 2.61 s +2018/09/16 04:53:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:54234) +2018/09/16 04:53:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:53:02 ruptelaNet.go:261: Data received(client: [::1]:54234, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 04:53:02 ruptelaNet.go:278: Sent ACK (client: [::1]:54234, IMEI: 352094087982671) +2018/09/16 04:53:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:53:05 ruptelaNet.go:261: Data received(client: [::1]:54234, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:53:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:53:05 ruptelaNet.go:278: Sent ACK (client: [::1]:54234, IMEI: 352094087982671) +2018/09/16 04:53:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54234, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 04:53:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:54297) +2018/09/16 04:53:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:53:31 ruptelaNet.go:261: Data received(client: [::1]:54297, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 04:53:31 ruptelaNet.go:278: Sent ACK (client: [::1]:54297, IMEI: 352094087982671) +2018/09/16 04:53:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:53:34 ruptelaNet.go:261: Data received(client: [::1]:54297, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:53:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:53:34 ruptelaNet.go:278: Sent ACK (client: [::1]:54297, IMEI: 352094087982671) +2018/09/16 04:53:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54297, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 04:53:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54346) +2018/09/16 04:53:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:53:53 ruptelaNet.go:261: Data received(client: [::1]:54346, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:53:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54346, IMEI: 352094089712860) +2018/09/16 04:53:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:53:55 ruptelaNet.go:261: Data received(client: [::1]:54346, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:53:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:53:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54346, IMEI: 352094089712860) +2018/09/16 04:53:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54346, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 04:53:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:54359) +2018/09/16 04:54:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:54:00 ruptelaNet.go:261: Data received(client: [::1]:54359, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:54:00 ruptelaNet.go:278: Sent ACK (client: [::1]:54359, IMEI: 352094087982671) +2018/09/16 04:54:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:54:03 ruptelaNet.go:261: Data received(client: [::1]:54359, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 04:54:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:54:03 ruptelaNet.go:278: Sent ACK (client: [::1]:54359, IMEI: 352094087982671) +2018/09/16 04:54:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54359, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 04:54:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:54421) +2018/09/16 04:54:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:54:29 ruptelaNet.go:261: Data received(client: [::1]:54421, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:54:29 ruptelaNet.go:278: Sent ACK (client: [::1]:54421, IMEI: 352094087982671) +2018/09/16 04:54:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:54:32 ruptelaNet.go:261: Data received(client: [::1]:54421, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:54:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:54:32 ruptelaNet.go:278: Sent ACK (client: [::1]:54421, IMEI: 352094087982671) +2018/09/16 04:54:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54421, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:54:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54475) +2018/09/16 04:54:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:54:53 ruptelaNet.go:261: Data received(client: [::1]:54475, IMEI: 352094089712860) with duration 0.24 s +2018/09/16 04:54:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54475, IMEI: 352094089712860) +2018/09/16 04:54:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:54:55 ruptelaNet.go:261: Data received(client: [::1]:54475, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 04:54:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:54:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54475, IMEI: 352094089712860) +2018/09/16 04:54:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54475, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 04:54:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:54487) +2018/09/16 04:54:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:54:58 ruptelaNet.go:261: Data received(client: [::1]:54487, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:54:58 ruptelaNet.go:278: Sent ACK (client: [::1]:54487, IMEI: 352094087982671) +2018/09/16 04:55:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:55:01 ruptelaNet.go:261: Data received(client: [::1]:54487, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 04:55:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:55:01 ruptelaNet.go:278: Sent ACK (client: [::1]:54487, IMEI: 352094087982671) +2018/09/16 04:55:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54487, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 04:55:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:54543) +2018/09/16 04:55:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:55:27 ruptelaNet.go:261: Data received(client: [::1]:54543, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 04:55:27 ruptelaNet.go:278: Sent ACK (client: [::1]:54543, IMEI: 352094087982671) +2018/09/16 04:55:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:55:30 ruptelaNet.go:261: Data received(client: [::1]:54543, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 04:55:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:55:30 ruptelaNet.go:278: Sent ACK (client: [::1]:54543, IMEI: 352094087982671) +2018/09/16 04:55:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54543, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 04:55:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54596) +2018/09/16 04:55:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:55:53 ruptelaNet.go:261: Data received(client: [::1]:54596, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:55:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54596, IMEI: 352094089712860) +2018/09/16 04:55:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:55:55 ruptelaNet.go:261: Data received(client: [::1]:54596, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 04:55:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:55:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54596, IMEI: 352094089712860) +2018/09/16 04:55:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:54602) +2018/09/16 04:55:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54596, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 04:55:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:55:56 ruptelaNet.go:261: Data received(client: [::1]:54602, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 04:55:56 ruptelaNet.go:278: Sent ACK (client: [::1]:54602, IMEI: 352094087982671) +2018/09/16 04:55:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:55:59 ruptelaNet.go:261: Data received(client: [::1]:54602, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 04:55:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:55:59 ruptelaNet.go:278: Sent ACK (client: [::1]:54602, IMEI: 352094087982671) +2018/09/16 04:56:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54602, IMEI: 352094087982671) with duration 7.19 s +2018/09/16 04:56:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:54661) +2018/09/16 04:56:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:56:26 ruptelaNet.go:261: Data received(client: [::1]:54661, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 04:56:26 ruptelaNet.go:278: Sent ACK (client: [::1]:54661, IMEI: 352094087982671) +2018/09/16 04:56:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:56:29 ruptelaNet.go:261: Data received(client: [::1]:54661, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 04:56:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:56:29 ruptelaNet.go:278: Sent ACK (client: [::1]:54661, IMEI: 352094087982671) +2018/09/16 04:56:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54661, IMEI: 352094087982671) with duration 7.65 s +2018/09/16 04:56:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54718) +2018/09/16 04:56:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:56:53 ruptelaNet.go:261: Data received(client: [::1]:54718, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:56:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54718, IMEI: 352094089712860) +2018/09/16 04:56:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:56:55 ruptelaNet.go:261: Data received(client: [::1]:54718, IMEI: 352094089712860) with duration 1.88 s +2018/09/16 04:56:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:56:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54718, IMEI: 352094089712860) +2018/09/16 04:56:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54718, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 04:56:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:54723) +2018/09/16 04:56:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:56:57 ruptelaNet.go:261: Data received(client: [::1]:54723, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:56:57 ruptelaNet.go:278: Sent ACK (client: [::1]:54723, IMEI: 352094087982671) +2018/09/16 04:57:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:57:00 ruptelaNet.go:261: Data received(client: [::1]:54723, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:57:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:57:00 ruptelaNet.go:278: Sent ACK (client: [::1]:54723, IMEI: 352094087982671) +2018/09/16 04:57:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54723, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 04:57:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:54786) +2018/09/16 04:57:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:57:26 ruptelaNet.go:261: Data received(client: [::1]:54786, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 04:57:26 ruptelaNet.go:278: Sent ACK (client: [::1]:54786, IMEI: 352094087982671) +2018/09/16 04:57:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:57:29 ruptelaNet.go:261: Data received(client: [::1]:54786, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 04:57:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:57:29 ruptelaNet.go:278: Sent ACK (client: [::1]:54786, IMEI: 352094087982671) +2018/09/16 04:57:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54786, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 04:57:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:54847) +2018/09/16 04:57:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:57:53 ruptelaNet.go:261: Data received(client: [::1]:54847, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:57:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54847, IMEI: 352094089712860) +2018/09/16 04:57:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:54851) +2018/09/16 04:57:55 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:57:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:57:55 ruptelaNet.go:261: Data received(client: [::1]:54847, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:57:55 ruptelaNet.go:261: Data received(client: [::1]:54851, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 04:57:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54851, IMEI: 352094087982671) +2018/09/16 04:57:55 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:57:55 ruptelaNet.go:278: Sent ACK (client: [::1]:54847, IMEI: 352094089712860) +2018/09/16 04:57:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54847, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 04:57:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:57:58 ruptelaNet.go:261: Data received(client: [::1]:54851, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 04:57:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:57:58 ruptelaNet.go:278: Sent ACK (client: [::1]:54851, IMEI: 352094087982671) +2018/09/16 04:58:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54851, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 04:58:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:54911) +2018/09/16 04:58:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:58:24 ruptelaNet.go:261: Data received(client: [::1]:54911, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:58:24 ruptelaNet.go:278: Sent ACK (client: [::1]:54911, IMEI: 352094087982671) +2018/09/16 04:58:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:58:27 ruptelaNet.go:261: Data received(client: [::1]:54911, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:58:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:58:27 ruptelaNet.go:278: Sent ACK (client: [::1]:54911, IMEI: 352094087982671) +2018/09/16 04:58:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54911, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:58:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:54972) +2018/09/16 04:58:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:58:53 ruptelaNet.go:261: Data received(client: [::1]:54972, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 04:58:53 ruptelaNet.go:278: Sent ACK (client: [::1]:54972, IMEI: 352094087982671) +2018/09/16 04:58:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:54976) +2018/09/16 04:58:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:58:54 ruptelaNet.go:261: Data received(client: [::1]:54976, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:58:54 ruptelaNet.go:278: Sent ACK (client: [::1]:54976, IMEI: 352094089712860) +2018/09/16 04:58:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:58:56 ruptelaNet.go:261: Data received(client: [::1]:54976, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 04:58:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:58:56 ruptelaNet.go:278: Sent ACK (client: [::1]:54976, IMEI: 352094089712860) +2018/09/16 04:58:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:58:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54976, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 04:58:56 ruptelaNet.go:261: Data received(client: [::1]:54972, IMEI: 352094087982671) with duration 4.17 s +2018/09/16 04:58:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:58:56 ruptelaNet.go:278: Sent ACK (client: [::1]:54972, IMEI: 352094087982671) +2018/09/16 04:58:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54972, IMEI: 352094087982671) with duration 6.33 s +2018/09/16 04:59:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:55031) +2018/09/16 04:59:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:59:22 ruptelaNet.go:261: Data received(client: [::1]:55031, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 04:59:22 ruptelaNet.go:278: Sent ACK (client: [::1]:55031, IMEI: 352094087982671) +2018/09/16 04:59:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:59:25 ruptelaNet.go:261: Data received(client: [::1]:55031, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 04:59:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:59:25 ruptelaNet.go:278: Sent ACK (client: [::1]:55031, IMEI: 352094087982671) +2018/09/16 04:59:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55031, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 04:59:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:55088) +2018/09/16 04:59:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:59:51 ruptelaNet.go:261: Data received(client: [::1]:55088, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 04:59:51 ruptelaNet.go:278: Sent ACK (client: [::1]:55088, IMEI: 352094087982671) +2018/09/16 04:59:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55094) +2018/09/16 04:59:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 04:59:54 ruptelaNet.go:261: Data received(client: [::1]:55094, IMEI: 352094089712860) with duration 0 s +2018/09/16 04:59:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55094, IMEI: 352094089712860) +2018/09/16 04:59:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 04:59:54 ruptelaNet.go:261: Data received(client: [::1]:55088, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 04:59:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 04:59:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55088, IMEI: 352094087982671) +2018/09/16 04:59:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 04:59:56 ruptelaNet.go:261: Data received(client: [::1]:55094, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 04:59:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 04:59:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55094, IMEI: 352094089712860) +2018/09/16 04:59:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55088, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 04:59:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55094, IMEI: 352094089712860) with duration 2.84 s +2018/09/16 05:00:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:55147) +2018/09/16 05:00:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:00:20 ruptelaNet.go:261: Data received(client: [::1]:55147, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:00:20 ruptelaNet.go:278: Sent ACK (client: [::1]:55147, IMEI: 352094087982671) +2018/09/16 05:00:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:00:23 ruptelaNet.go:261: Data received(client: [::1]:55147, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:00:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:00:23 ruptelaNet.go:278: Sent ACK (client: [::1]:55147, IMEI: 352094087982671) +2018/09/16 05:00:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55147, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:00:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:55211) +2018/09/16 05:00:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:00:49 ruptelaNet.go:261: Data received(client: [::1]:55211, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:00:49 ruptelaNet.go:278: Sent ACK (client: [::1]:55211, IMEI: 352094087982671) +2018/09/16 05:00:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:00:52 ruptelaNet.go:261: Data received(client: [::1]:55211, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 05:00:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:00:52 ruptelaNet.go:278: Sent ACK (client: [::1]:55211, IMEI: 352094087982671) +2018/09/16 05:00:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55220) +2018/09/16 05:00:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:00:54 ruptelaNet.go:261: Data received(client: [::1]:55220, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:00:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55220, IMEI: 352094089712860) +2018/09/16 05:00:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55211, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 05:00:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:00:56 ruptelaNet.go:261: Data received(client: [::1]:55220, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 05:00:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:00:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55220, IMEI: 352094089712860) +2018/09/16 05:00:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55220, IMEI: 352094089712860) with duration 2.74 s +2018/09/16 05:01:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:55269) +2018/09/16 05:01:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:01:18 ruptelaNet.go:261: Data received(client: [::1]:55269, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 05:01:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55269, IMEI: 352094087982671) +2018/09/16 05:01:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:01:21 ruptelaNet.go:261: Data received(client: [::1]:55269, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:01:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:01:21 ruptelaNet.go:278: Sent ACK (client: [::1]:55269, IMEI: 352094087982671) +2018/09/16 05:01:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55269, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:01:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:55328) +2018/09/16 05:01:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:01:47 ruptelaNet.go:261: Data received(client: [::1]:55328, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 05:01:47 ruptelaNet.go:278: Sent ACK (client: [::1]:55328, IMEI: 352094087982671) +2018/09/16 05:01:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:01:50 ruptelaNet.go:261: Data received(client: [::1]:55328, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 05:01:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:01:50 ruptelaNet.go:278: Sent ACK (client: [::1]:55328, IMEI: 352094087982671) +2018/09/16 05:01:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55328, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 05:01:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55346) +2018/09/16 05:01:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:01:54 ruptelaNet.go:261: Data received(client: [::1]:55346, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:01:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55346, IMEI: 352094089712860) +2018/09/16 05:01:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:01:56 ruptelaNet.go:261: Data received(client: [::1]:55346, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 05:01:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:01:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55346, IMEI: 352094089712860) +2018/09/16 05:01:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55346, IMEI: 352094089712860) with duration 2.92 s +2018/09/16 05:02:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55389) +2018/09/16 05:02:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:02:16 ruptelaNet.go:261: Data received(client: [::1]:55389, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 05:02:16 ruptelaNet.go:278: Sent ACK (client: [::1]:55389, IMEI: 352094087982671) +2018/09/16 05:02:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:02:19 ruptelaNet.go:261: Data received(client: [::1]:55389, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 05:02:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:02:19 ruptelaNet.go:278: Sent ACK (client: [::1]:55389, IMEI: 352094087982671) +2018/09/16 05:02:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55389, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 05:02:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:55445) +2018/09/16 05:02:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:02:45 ruptelaNet.go:261: Data received(client: [::1]:55445, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:02:45 ruptelaNet.go:278: Sent ACK (client: [::1]:55445, IMEI: 352094087982671) +2018/09/16 05:02:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:02:48 ruptelaNet.go:261: Data received(client: [::1]:55445, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:02:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:02:48 ruptelaNet.go:278: Sent ACK (client: [::1]:55445, IMEI: 352094087982671) +2018/09/16 05:02:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55445, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:02:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55467) +2018/09/16 05:02:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:02:54 ruptelaNet.go:261: Data received(client: [::1]:55467, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:02:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55467, IMEI: 352094089712860) +2018/09/16 05:02:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:02:56 ruptelaNet.go:261: Data received(client: [::1]:55467, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:02:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:02:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55467, IMEI: 352094089712860) +2018/09/16 05:02:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55467, IMEI: 352094089712860) with duration 2.82 s +2018/09/16 05:03:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:55510) +2018/09/16 05:03:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:03:14 ruptelaNet.go:261: Data received(client: [::1]:55510, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 05:03:14 ruptelaNet.go:278: Sent ACK (client: [::1]:55510, IMEI: 352094087982671) +2018/09/16 05:03:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:03:17 ruptelaNet.go:261: Data received(client: [::1]:55510, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:03:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:03:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55510, IMEI: 352094087982671) +2018/09/16 05:03:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55510, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:03:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:55572) +2018/09/16 05:03:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:03:43 ruptelaNet.go:261: Data received(client: [::1]:55572, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:03:43 ruptelaNet.go:278: Sent ACK (client: [::1]:55572, IMEI: 352094087982671) +2018/09/16 05:03:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:03:46 ruptelaNet.go:261: Data received(client: [::1]:55572, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 05:03:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:03:46 ruptelaNet.go:278: Sent ACK (client: [::1]:55572, IMEI: 352094087982671) +2018/09/16 05:03:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55572, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 05:03:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55599) +2018/09/16 05:03:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:03:54 ruptelaNet.go:261: Data received(client: [::1]:55599, IMEI: 352094089712860) with duration 0.24 s +2018/09/16 05:03:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55599, IMEI: 352094089712860) +2018/09/16 05:03:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:03:56 ruptelaNet.go:261: Data received(client: [::1]:55599, IMEI: 352094089712860) with duration 2.22 s +2018/09/16 05:03:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:03:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55599, IMEI: 352094089712860) +2018/09/16 05:03:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55599, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 05:04:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:55637) +2018/09/16 05:04:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:04:12 ruptelaNet.go:261: Data received(client: [::1]:55637, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:04:12 ruptelaNet.go:278: Sent ACK (client: [::1]:55637, IMEI: 352094087982671) +2018/09/16 05:04:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:04:15 ruptelaNet.go:261: Data received(client: [::1]:55637, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 05:04:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:04:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55637, IMEI: 352094087982671) +2018/09/16 05:04:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55637, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 05:04:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:55701) +2018/09/16 05:04:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:04:41 ruptelaNet.go:261: Data received(client: [::1]:55701, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 05:04:41 ruptelaNet.go:278: Sent ACK (client: [::1]:55701, IMEI: 352094087982671) +2018/09/16 05:04:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:04:44 ruptelaNet.go:261: Data received(client: [::1]:55701, IMEI: 352094087982671) with duration 3.61 s +2018/09/16 05:04:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:04:44 ruptelaNet.go:278: Sent ACK (client: [::1]:55701, IMEI: 352094087982671) +2018/09/16 05:04:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55701, IMEI: 352094087982671) with duration 5.75 s +2018/09/16 05:04:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55732) +2018/09/16 05:04:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:04:54 ruptelaNet.go:261: Data received(client: [::1]:55732, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:04:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55732, IMEI: 352094089712860) +2018/09/16 05:04:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:04:56 ruptelaNet.go:261: Data received(client: [::1]:55732, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 05:04:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:04:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55732, IMEI: 352094089712860) +2018/09/16 05:04:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55732, IMEI: 352094089712860) with duration 3.19 s +2018/09/16 05:05:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:55759) +2018/09/16 05:05:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:05:10 ruptelaNet.go:261: Data received(client: [::1]:55759, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 05:05:10 ruptelaNet.go:278: Sent ACK (client: [::1]:55759, IMEI: 352094087982671) +2018/09/16 05:05:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:05:13 ruptelaNet.go:261: Data received(client: [::1]:55759, IMEI: 352094087982671) with duration 3.94 s +2018/09/16 05:05:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:05:13 ruptelaNet.go:278: Sent ACK (client: [::1]:55759, IMEI: 352094087982671) +2018/09/16 05:05:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55759, IMEI: 352094087982671) with duration 6.09 s +2018/09/16 05:05:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:55816) +2018/09/16 05:05:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:05:39 ruptelaNet.go:261: Data received(client: [::1]:55816, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:05:39 ruptelaNet.go:278: Sent ACK (client: [::1]:55816, IMEI: 352094087982671) +2018/09/16 05:05:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:05:42 ruptelaNet.go:261: Data received(client: [::1]:55816, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:05:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:05:42 ruptelaNet.go:278: Sent ACK (client: [::1]:55816, IMEI: 352094087982671) +2018/09/16 05:05:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55816, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 05:05:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55849) +2018/09/16 05:05:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:05:54 ruptelaNet.go:261: Data received(client: [::1]:55849, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:05:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55849, IMEI: 352094089712860) +2018/09/16 05:05:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:05:56 ruptelaNet.go:261: Data received(client: [::1]:55849, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 05:05:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:05:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55849, IMEI: 352094089712860) +2018/09/16 05:05:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55849, IMEI: 352094089712860) with duration 3.14 s +2018/09/16 05:06:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:55872) +2018/09/16 05:06:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:06:09 ruptelaNet.go:261: Data received(client: [::1]:55872, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 05:06:09 ruptelaNet.go:278: Sent ACK (client: [::1]:55872, IMEI: 352094087982671) +2018/09/16 05:06:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:06:11 ruptelaNet.go:261: Data received(client: [::1]:55872, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 05:06:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:06:11 ruptelaNet.go:278: Sent ACK (client: [::1]:55872, IMEI: 352094087982671) +2018/09/16 05:06:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55872, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:06:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:55933) +2018/09/16 05:06:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:06:37 ruptelaNet.go:261: Data received(client: [::1]:55933, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 05:06:37 ruptelaNet.go:278: Sent ACK (client: [::1]:55933, IMEI: 352094087982671) +2018/09/16 05:06:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:06:40 ruptelaNet.go:261: Data received(client: [::1]:55933, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 05:06:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:06:40 ruptelaNet.go:278: Sent ACK (client: [::1]:55933, IMEI: 352094087982671) +2018/09/16 05:06:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55933, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 05:06:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55971) +2018/09/16 05:06:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:06:54 ruptelaNet.go:261: Data received(client: [::1]:55971, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:06:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55971, IMEI: 352094089712860) +2018/09/16 05:06:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:06:56 ruptelaNet.go:261: Data received(client: [::1]:55971, IMEI: 352094089712860) with duration 2.1 s +2018/09/16 05:06:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:06:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55971, IMEI: 352094089712860) +2018/09/16 05:06:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55971, IMEI: 352094089712860) with duration 3.06 s +2018/09/16 05:07:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:55993) +2018/09/16 05:07:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:07:06 ruptelaNet.go:261: Data received(client: [::1]:55993, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 05:07:06 ruptelaNet.go:278: Sent ACK (client: [::1]:55993, IMEI: 352094087982671) +2018/09/16 05:07:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:07:09 ruptelaNet.go:261: Data received(client: [::1]:55993, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 05:07:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:07:09 ruptelaNet.go:278: Sent ACK (client: [::1]:55993, IMEI: 352094087982671) +2018/09/16 05:07:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55993, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 05:07:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:56049) +2018/09/16 05:07:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:07:35 ruptelaNet.go:261: Data received(client: [::1]:56049, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:07:35 ruptelaNet.go:278: Sent ACK (client: [::1]:56049, IMEI: 352094087982671) +2018/09/16 05:07:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:07:38 ruptelaNet.go:261: Data received(client: [::1]:56049, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:07:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:07:38 ruptelaNet.go:278: Sent ACK (client: [::1]:56049, IMEI: 352094087982671) +2018/09/16 05:07:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56049, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:07:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56092) +2018/09/16 05:07:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:07:55 ruptelaNet.go:261: Data received(client: [::1]:56092, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:07:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56092, IMEI: 352094089712860) +2018/09/16 05:07:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:07:57 ruptelaNet.go:261: Data received(client: [::1]:56092, IMEI: 352094089712860) with duration 1.98 s +2018/09/16 05:07:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:07:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56092, IMEI: 352094089712860) +2018/09/16 05:07:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56092, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:08:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:56111) +2018/09/16 05:08:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:08:05 ruptelaNet.go:261: Data received(client: [::1]:56111, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 05:08:05 ruptelaNet.go:278: Sent ACK (client: [::1]:56111, IMEI: 352094087982671) +2018/09/16 05:08:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:08:07 ruptelaNet.go:261: Data received(client: [::1]:56111, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 05:08:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:08:07 ruptelaNet.go:278: Sent ACK (client: [::1]:56111, IMEI: 352094087982671) +2018/09/16 05:08:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56111, IMEI: 352094087982671) with duration 5.99 s +2018/09/16 05:08:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:56165) +2018/09/16 05:08:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:08:33 ruptelaNet.go:261: Data received(client: [::1]:56165, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:08:33 ruptelaNet.go:278: Sent ACK (client: [::1]:56165, IMEI: 352094087982671) +2018/09/16 05:08:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:08:36 ruptelaNet.go:261: Data received(client: [::1]:56165, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 05:08:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:08:36 ruptelaNet.go:278: Sent ACK (client: [::1]:56165, IMEI: 352094087982671) +2018/09/16 05:08:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56165, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 05:08:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56209) +2018/09/16 05:08:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:08:55 ruptelaNet.go:261: Data received(client: [::1]:56209, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:08:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56209, IMEI: 352094089712860) +2018/09/16 05:08:56 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:08:56 ruptelaNet.go:261: Data received(client: [::1]:56209, IMEI: 352094089712860) with duration 1.88 s +2018/09/16 05:08:56 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:08:56 ruptelaNet.go:278: Sent ACK (client: [::1]:56209, IMEI: 352094089712860) +2018/09/16 05:08:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56209, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 05:09:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:56221) +2018/09/16 05:09:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:09:02 ruptelaNet.go:261: Data received(client: [::1]:56221, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 05:09:02 ruptelaNet.go:278: Sent ACK (client: [::1]:56221, IMEI: 352094087982671) +2018/09/16 05:09:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:09:05 ruptelaNet.go:261: Data received(client: [::1]:56221, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 05:09:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:09:05 ruptelaNet.go:278: Sent ACK (client: [::1]:56221, IMEI: 352094087982671) +2018/09/16 05:09:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56221, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 05:09:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:56274) +2018/09/16 05:09:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:09:31 ruptelaNet.go:261: Data received(client: [::1]:56274, IMEI: 352094087982671) with duration 1.18 s +2018/09/16 05:09:31 ruptelaNet.go:278: Sent ACK (client: [::1]:56274, IMEI: 352094087982671) +2018/09/16 05:09:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:09:34 ruptelaNet.go:261: Data received(client: [::1]:56274, IMEI: 352094087982671) with duration 3.64 s +2018/09/16 05:09:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:09:34 ruptelaNet.go:278: Sent ACK (client: [::1]:56274, IMEI: 352094087982671) +2018/09/16 05:09:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56274, IMEI: 352094087982671) with duration 5.69 s +2018/09/16 05:09:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56328) +2018/09/16 05:09:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:09:55 ruptelaNet.go:261: Data received(client: [::1]:56328, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:09:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56328, IMEI: 352094089712860) +2018/09/16 05:09:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:09:57 ruptelaNet.go:261: Data received(client: [::1]:56328, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 05:09:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:09:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56328, IMEI: 352094089712860) +2018/09/16 05:09:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56328, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 05:09:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:56334) +2018/09/16 05:10:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:10:00 ruptelaNet.go:261: Data received(client: [::1]:56334, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:10:00 ruptelaNet.go:278: Sent ACK (client: [::1]:56334, IMEI: 352094087982671) +2018/09/16 05:10:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:10:03 ruptelaNet.go:261: Data received(client: [::1]:56334, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:10:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:10:03 ruptelaNet.go:278: Sent ACK (client: [::1]:56334, IMEI: 352094087982671) +2018/09/16 05:10:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56334, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:10:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:56391) +2018/09/16 05:10:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:10:29 ruptelaNet.go:261: Data received(client: [::1]:56391, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 05:10:29 ruptelaNet.go:278: Sent ACK (client: [::1]:56391, IMEI: 352094087982671) +2018/09/16 05:10:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:10:32 ruptelaNet.go:261: Data received(client: [::1]:56391, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:10:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:10:32 ruptelaNet.go:278: Sent ACK (client: [::1]:56391, IMEI: 352094087982671) +2018/09/16 05:10:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56391, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:10:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56447) +2018/09/16 05:10:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:10:55 ruptelaNet.go:261: Data received(client: [::1]:56447, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:10:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56447, IMEI: 352094089712860) +2018/09/16 05:10:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:10:57 ruptelaNet.go:261: Data received(client: [::1]:56447, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 05:10:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:10:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56447, IMEI: 352094089712860) +2018/09/16 05:10:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:56452) +2018/09/16 05:10:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56447, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:10:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:10:58 ruptelaNet.go:261: Data received(client: [::1]:56452, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 05:10:58 ruptelaNet.go:278: Sent ACK (client: [::1]:56452, IMEI: 352094087982671) +2018/09/16 05:11:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:11:01 ruptelaNet.go:261: Data received(client: [::1]:56452, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 05:11:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:11:01 ruptelaNet.go:278: Sent ACK (client: [::1]:56452, IMEI: 352094087982671) +2018/09/16 05:11:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56452, IMEI: 352094087982671) with duration 6 s +2018/09/16 05:11:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:56511) +2018/09/16 05:11:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:11:27 ruptelaNet.go:261: Data received(client: [::1]:56511, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 05:11:27 ruptelaNet.go:278: Sent ACK (client: [::1]:56511, IMEI: 352094087982671) +2018/09/16 05:11:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:11:30 ruptelaNet.go:261: Data received(client: [::1]:56511, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 05:11:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:11:30 ruptelaNet.go:278: Sent ACK (client: [::1]:56511, IMEI: 352094087982671) +2018/09/16 05:11:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56511, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 05:11:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56571) +2018/09/16 05:11:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:11:55 ruptelaNet.go:261: Data received(client: [::1]:56571, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:11:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56571, IMEI: 352094089712860) +2018/09/16 05:11:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56572) +2018/09/16 05:11:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:11:56 ruptelaNet.go:261: Data received(client: [::1]:56572, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:11:56 ruptelaNet.go:278: Sent ACK (client: [::1]:56572, IMEI: 352094087982671) +2018/09/16 05:11:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:11:57 ruptelaNet.go:261: Data received(client: [::1]:56571, IMEI: 352094089712860) with duration 1.88 s +2018/09/16 05:11:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:11:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56571, IMEI: 352094089712860) +2018/09/16 05:11:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56571, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 05:11:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:11:59 ruptelaNet.go:261: Data received(client: [::1]:56572, IMEI: 352094087982671) with duration 4.06 s +2018/09/16 05:11:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:11:59 ruptelaNet.go:278: Sent ACK (client: [::1]:56572, IMEI: 352094087982671) +2018/09/16 05:12:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56572, IMEI: 352094087982671) with duration 8.36 s +2018/09/16 05:12:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:56637) +2018/09/16 05:12:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:12:25 ruptelaNet.go:261: Data received(client: [::1]:56637, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:12:25 ruptelaNet.go:278: Sent ACK (client: [::1]:56637, IMEI: 352094087982671) +2018/09/16 05:12:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:12:28 ruptelaNet.go:261: Data received(client: [::1]:56637, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:12:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:12:28 ruptelaNet.go:278: Sent ACK (client: [::1]:56637, IMEI: 352094087982671) +2018/09/16 05:12:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56637, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:12:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:56691) +2018/09/16 05:12:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:12:54 ruptelaNet.go:261: Data received(client: [::1]:56691, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:12:54 ruptelaNet.go:278: Sent ACK (client: [::1]:56691, IMEI: 352094087982671) +2018/09/16 05:12:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56697) +2018/09/16 05:12:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:12:55 ruptelaNet.go:261: Data received(client: [::1]:56697, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:12:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56697, IMEI: 352094089712860) +2018/09/16 05:12:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:12:57 ruptelaNet.go:261: Data received(client: [::1]:56691, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:12:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:12:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56691, IMEI: 352094087982671) +2018/09/16 05:12:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:12:57 ruptelaNet.go:261: Data received(client: [::1]:56697, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 05:12:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:12:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56697, IMEI: 352094089712860) +2018/09/16 05:12:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56697, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 05:12:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56691, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:13:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:56758) +2018/09/16 05:13:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:13:23 ruptelaNet.go:261: Data received(client: [::1]:56758, IMEI: 352094087982671) with duration 0 s +2018/09/16 05:13:23 ruptelaNet.go:278: Sent ACK (client: [::1]:56758, IMEI: 352094087982671) +2018/09/16 05:13:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:13:26 ruptelaNet.go:261: Data received(client: [::1]:56758, IMEI: 352094087982671) with duration 2.9 s +2018/09/16 05:13:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:13:26 ruptelaNet.go:278: Sent ACK (client: [::1]:56758, IMEI: 352094087982671) +2018/09/16 05:13:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56758, IMEI: 352094087982671) with duration 5.22 s +2018/09/16 05:13:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:56810) +2018/09/16 05:13:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:13:52 ruptelaNet.go:261: Data received(client: [::1]:56810, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:13:52 ruptelaNet.go:278: Sent ACK (client: [::1]:56810, IMEI: 352094087982671) +2018/09/16 05:13:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56821) +2018/09/16 05:13:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:13:55 ruptelaNet.go:261: Data received(client: [::1]:56821, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:13:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56821, IMEI: 352094089712860) +2018/09/16 05:13:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:13:56 ruptelaNet.go:261: Data received(client: [::1]:56810, IMEI: 352094087982671) with duration 4.28 s +2018/09/16 05:13:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:13:56 ruptelaNet.go:278: Sent ACK (client: [::1]:56810, IMEI: 352094087982671) +2018/09/16 05:13:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:13:57 ruptelaNet.go:261: Data received(client: [::1]:56821, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 05:13:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:13:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56821, IMEI: 352094089712860) +2018/09/16 05:13:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56810, IMEI: 352094087982671) with duration 6.74 s +2018/09/16 05:13:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56821, IMEI: 352094089712860) with duration 3.09 s +2018/09/16 05:14:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:56881) +2018/09/16 05:14:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:14:21 ruptelaNet.go:261: Data received(client: [::1]:56881, IMEI: 352094087982671) with duration 1 s +2018/09/16 05:14:21 ruptelaNet.go:278: Sent ACK (client: [::1]:56881, IMEI: 352094087982671) +2018/09/16 05:14:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:14:24 ruptelaNet.go:261: Data received(client: [::1]:56881, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:14:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:14:24 ruptelaNet.go:278: Sent ACK (client: [::1]:56881, IMEI: 352094087982671) +2018/09/16 05:14:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56881, IMEI: 352094087982671) with duration 6.54 s +2018/09/16 05:14:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:56940) +2018/09/16 05:14:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:14:50 ruptelaNet.go:261: Data received(client: [::1]:56940, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:14:50 ruptelaNet.go:278: Sent ACK (client: [::1]:56940, IMEI: 352094087982671) +2018/09/16 05:14:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:14:53 ruptelaNet.go:261: Data received(client: [::1]:56940, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 05:14:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:14:53 ruptelaNet.go:278: Sent ACK (client: [::1]:56940, IMEI: 352094087982671) +2018/09/16 05:14:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:56951) +2018/09/16 05:14:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:14:55 ruptelaNet.go:261: Data received(client: [::1]:56951, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:14:55 ruptelaNet.go:278: Sent ACK (client: [::1]:56951, IMEI: 352094089712860) +2018/09/16 05:14:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56940, IMEI: 352094087982671) with duration 5.99 s +2018/09/16 05:14:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:14:57 ruptelaNet.go:261: Data received(client: [::1]:56951, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 05:14:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:14:57 ruptelaNet.go:278: Sent ACK (client: [::1]:56951, IMEI: 352094089712860) +2018/09/16 05:14:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56951, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:15:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:56994) +2018/09/16 05:15:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:15:19 ruptelaNet.go:261: Data received(client: [::1]:56994, IMEI: 352094087982671) with duration 1 s +2018/09/16 05:15:19 ruptelaNet.go:278: Sent ACK (client: [::1]:56994, IMEI: 352094087982671) +2018/09/16 05:15:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:15:22 ruptelaNet.go:261: Data received(client: [::1]:56994, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 05:15:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:15:22 ruptelaNet.go:278: Sent ACK (client: [::1]:56994, IMEI: 352094087982671) +2018/09/16 05:15:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56994, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:15:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:57056) +2018/09/16 05:15:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:15:48 ruptelaNet.go:261: Data received(client: [::1]:57056, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:15:48 ruptelaNet.go:278: Sent ACK (client: [::1]:57056, IMEI: 352094087982671) +2018/09/16 05:15:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:15:51 ruptelaNet.go:261: Data received(client: [::1]:57056, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:15:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:15:51 ruptelaNet.go:278: Sent ACK (client: [::1]:57056, IMEI: 352094087982671) +2018/09/16 05:15:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57056, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:15:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:57072) +2018/09/16 05:15:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:15:55 ruptelaNet.go:261: Data received(client: [::1]:57072, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:15:55 ruptelaNet.go:278: Sent ACK (client: [::1]:57072, IMEI: 352094089712860) +2018/09/16 05:15:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:15:57 ruptelaNet.go:261: Data received(client: [::1]:57072, IMEI: 352094089712860) with duration 2.06 s +2018/09/16 05:15:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:15:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57072, IMEI: 352094089712860) +2018/09/16 05:15:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57072, IMEI: 352094089712860) with duration 2.88 s +2018/09/16 05:16:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:57108) +2018/09/16 05:16:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:16:17 ruptelaNet.go:261: Data received(client: [::1]:57108, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 05:16:17 ruptelaNet.go:278: Sent ACK (client: [::1]:57108, IMEI: 352094087982671) +2018/09/16 05:16:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:16:20 ruptelaNet.go:261: Data received(client: [::1]:57108, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 05:16:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:16:20 ruptelaNet.go:278: Sent ACK (client: [::1]:57108, IMEI: 352094087982671) +2018/09/16 05:16:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57108, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 05:16:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:57163) +2018/09/16 05:16:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:16:46 ruptelaNet.go:261: Data received(client: [::1]:57163, IMEI: 352094087982671) with duration 0.77 s +2018/09/16 05:16:46 ruptelaNet.go:278: Sent ACK (client: [::1]:57163, IMEI: 352094087982671) +2018/09/16 05:16:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:16:49 ruptelaNet.go:261: Data received(client: [::1]:57163, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 05:16:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:16:49 ruptelaNet.go:278: Sent ACK (client: [::1]:57163, IMEI: 352094087982671) +2018/09/16 05:16:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57163, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 05:16:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:57187) +2018/09/16 05:16:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:16:55 ruptelaNet.go:261: Data received(client: [::1]:57187, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:16:55 ruptelaNet.go:278: Sent ACK (client: [::1]:57187, IMEI: 352094089712860) +2018/09/16 05:16:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:16:57 ruptelaNet.go:261: Data received(client: [::1]:57187, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 05:16:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:16:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57187, IMEI: 352094089712860) +2018/09/16 05:16:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57187, IMEI: 352094089712860) with duration 2.57 s +2018/09/16 05:17:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:57225) +2018/09/16 05:17:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:17:15 ruptelaNet.go:261: Data received(client: [::1]:57225, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 05:17:15 ruptelaNet.go:278: Sent ACK (client: [::1]:57225, IMEI: 352094087982671) +2018/09/16 05:17:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:17:18 ruptelaNet.go:261: Data received(client: [::1]:57225, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 05:17:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:17:18 ruptelaNet.go:278: Sent ACK (client: [::1]:57225, IMEI: 352094087982671) +2018/09/16 05:17:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57225, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 05:17:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:57279) +2018/09/16 05:17:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:17:44 ruptelaNet.go:261: Data received(client: [::1]:57279, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:17:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57279, IMEI: 352094087982671) +2018/09/16 05:17:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:17:47 ruptelaNet.go:261: Data received(client: [::1]:57279, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:17:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:17:47 ruptelaNet.go:278: Sent ACK (client: [::1]:57279, IMEI: 352094087982671) +2018/09/16 05:17:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57279, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 05:17:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57306) +2018/09/16 05:17:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:17:56 ruptelaNet.go:261: Data received(client: [::1]:57306, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:17:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57306, IMEI: 352094089712860) +2018/09/16 05:17:57 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:17:57 ruptelaNet.go:261: Data received(client: [::1]:57306, IMEI: 352094089712860) with duration 1.87 s +2018/09/16 05:17:57 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:17:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57306, IMEI: 352094089712860) +2018/09/16 05:17:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57306, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 05:18:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:57341) +2018/09/16 05:18:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:18:13 ruptelaNet.go:261: Data received(client: [::1]:57341, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:18:13 ruptelaNet.go:278: Sent ACK (client: [::1]:57341, IMEI: 352094087982671) +2018/09/16 05:18:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:18:16 ruptelaNet.go:261: Data received(client: [::1]:57341, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:18:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:18:16 ruptelaNet.go:278: Sent ACK (client: [::1]:57341, IMEI: 352094087982671) +2018/09/16 05:18:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57341, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 05:18:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:57399) +2018/09/16 05:18:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:18:42 ruptelaNet.go:261: Data received(client: [::1]:57399, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:18:42 ruptelaNet.go:278: Sent ACK (client: [::1]:57399, IMEI: 352094087982671) +2018/09/16 05:18:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:18:45 ruptelaNet.go:261: Data received(client: [::1]:57399, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:18:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:18:45 ruptelaNet.go:278: Sent ACK (client: [::1]:57399, IMEI: 352094087982671) +2018/09/16 05:18:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57399, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 05:18:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57431) +2018/09/16 05:18:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:18:56 ruptelaNet.go:261: Data received(client: [::1]:57431, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:18:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57431, IMEI: 352094089712860) +2018/09/16 05:18:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:18:58 ruptelaNet.go:261: Data received(client: [::1]:57431, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 05:18:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:18:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57431, IMEI: 352094089712860) +2018/09/16 05:18:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57431, IMEI: 352094089712860) with duration 2.68 s +2018/09/16 05:19:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:57464) +2018/09/16 05:19:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:19:11 ruptelaNet.go:261: Data received(client: [::1]:57464, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 05:19:11 ruptelaNet.go:278: Sent ACK (client: [::1]:57464, IMEI: 352094087982671) +2018/09/16 05:19:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:19:14 ruptelaNet.go:261: Data received(client: [::1]:57464, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 05:19:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:19:14 ruptelaNet.go:278: Sent ACK (client: [::1]:57464, IMEI: 352094087982671) +2018/09/16 05:19:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57464, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 05:19:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:57485) +2018/09/16 05:19:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57485, IMEI: 0) with duration 15.56 s +2018/09/16 05:19:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:57516) +2018/09/16 05:19:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:57517) +2018/09/16 05:19:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:19:40 ruptelaNet.go:261: Data received(client: [::1]:57517, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:19:40 ruptelaNet.go:278: Sent ACK (client: [::1]:57517, IMEI: 352094087982671) +2018/09/16 05:19:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:19:44 ruptelaNet.go:261: Data received(client: [::1]:57517, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 05:19:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:19:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57517, IMEI: 352094087982671) +2018/09/16 05:19:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57517, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 05:19:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57516, IMEI: 0) with duration 15.47 s +2018/09/16 05:19:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57555) +2018/09/16 05:19:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:19:56 ruptelaNet.go:261: Data received(client: [::1]:57555, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:19:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57555, IMEI: 352094089712860) +2018/09/16 05:19:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:19:58 ruptelaNet.go:261: Data received(client: [::1]:57555, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 05:19:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:19:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57555, IMEI: 352094089712860) +2018/09/16 05:19:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57555, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:20:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:57577) +2018/09/16 05:20:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:20:09 ruptelaNet.go:261: Data received(client: [::1]:57577, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:20:09 ruptelaNet.go:278: Sent ACK (client: [::1]:57577, IMEI: 352094087982671) +2018/09/16 05:20:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:20:12 ruptelaNet.go:261: Data received(client: [::1]:57577, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:20:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:20:12 ruptelaNet.go:278: Sent ACK (client: [::1]:57577, IMEI: 352094087982671) +2018/09/16 05:20:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57577, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:20:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:57641) +2018/09/16 05:20:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:20:38 ruptelaNet.go:261: Data received(client: [::1]:57641, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 05:20:38 ruptelaNet.go:278: Sent ACK (client: [::1]:57641, IMEI: 352094087982671) +2018/09/16 05:20:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:20:41 ruptelaNet.go:261: Data received(client: [::1]:57641, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:20:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:20:41 ruptelaNet.go:278: Sent ACK (client: [::1]:57641, IMEI: 352094087982671) +2018/09/16 05:20:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57641, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:20:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57675) +2018/09/16 05:20:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:20:56 ruptelaNet.go:261: Data received(client: [::1]:57675, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:20:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57675, IMEI: 352094089712860) +2018/09/16 05:20:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:20:58 ruptelaNet.go:261: Data received(client: [::1]:57675, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:20:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:20:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57675, IMEI: 352094089712860) +2018/09/16 05:20:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57675, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:21:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:57698) +2018/09/16 05:21:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:21:07 ruptelaNet.go:261: Data received(client: [::1]:57698, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 05:21:07 ruptelaNet.go:278: Sent ACK (client: [::1]:57698, IMEI: 352094087982671) +2018/09/16 05:21:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:21:10 ruptelaNet.go:261: Data received(client: [::1]:57698, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 05:21:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:21:10 ruptelaNet.go:278: Sent ACK (client: [::1]:57698, IMEI: 352094087982671) +2018/09/16 05:21:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57698, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 05:21:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:57753) +2018/09/16 05:21:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:21:36 ruptelaNet.go:261: Data received(client: [::1]:57753, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:21:36 ruptelaNet.go:278: Sent ACK (client: [::1]:57753, IMEI: 352094087982671) +2018/09/16 05:21:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:21:39 ruptelaNet.go:261: Data received(client: [::1]:57753, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 05:21:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:21:39 ruptelaNet.go:278: Sent ACK (client: [::1]:57753, IMEI: 352094087982671) +2018/09/16 05:21:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57753, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 05:21:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57798) +2018/09/16 05:21:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:21:56 ruptelaNet.go:261: Data received(client: [::1]:57798, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:21:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57798, IMEI: 352094089712860) +2018/09/16 05:21:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:21:58 ruptelaNet.go:261: Data received(client: [::1]:57798, IMEI: 352094089712860) with duration 2.06 s +2018/09/16 05:21:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:21:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57798, IMEI: 352094089712860) +2018/09/16 05:21:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57798, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:22:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:57813) +2018/09/16 05:22:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:22:05 ruptelaNet.go:261: Data received(client: [::1]:57813, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:22:05 ruptelaNet.go:278: Sent ACK (client: [::1]:57813, IMEI: 352094087982671) +2018/09/16 05:22:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:22:09 ruptelaNet.go:261: Data received(client: [::1]:57813, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 05:22:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:22:09 ruptelaNet.go:278: Sent ACK (client: [::1]:57813, IMEI: 352094087982671) +2018/09/16 05:22:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57813, IMEI: 352094087982671) with duration 15.97 s +2018/09/16 05:22:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:57895) +2018/09/16 05:22:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:22:44 ruptelaNet.go:261: Data received(client: [::1]:57895, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:22:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57895, IMEI: 352094087982671) +2018/09/16 05:22:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:22:47 ruptelaNet.go:261: Data received(client: [::1]:57895, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 05:22:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:22:47 ruptelaNet.go:278: Sent ACK (client: [::1]:57895, IMEI: 352094087982671) +2018/09/16 05:22:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57895, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 05:22:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:57923) +2018/09/16 05:22:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:22:56 ruptelaNet.go:261: Data received(client: [::1]:57923, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:22:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57923, IMEI: 352094089712860) +2018/09/16 05:22:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:22:58 ruptelaNet.go:261: Data received(client: [::1]:57923, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:22:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:22:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57923, IMEI: 352094089712860) +2018/09/16 05:22:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57923, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:23:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:57950) +2018/09/16 05:23:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:23:13 ruptelaNet.go:261: Data received(client: [::1]:57950, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 05:23:13 ruptelaNet.go:278: Sent ACK (client: [::1]:57950, IMEI: 352094087982671) +2018/09/16 05:23:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:23:16 ruptelaNet.go:261: Data received(client: [::1]:57950, IMEI: 352094087982671) with duration 4.04 s +2018/09/16 05:23:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:23:16 ruptelaNet.go:278: Sent ACK (client: [::1]:57950, IMEI: 352094087982671) +2018/09/16 05:23:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57950, IMEI: 352094087982671) with duration 6.18 s +2018/09/16 05:23:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:58009) +2018/09/16 05:23:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:23:42 ruptelaNet.go:261: Data received(client: [::1]:58009, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:23:42 ruptelaNet.go:278: Sent ACK (client: [::1]:58009, IMEI: 352094087982671) +2018/09/16 05:23:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:23:45 ruptelaNet.go:261: Data received(client: [::1]:58009, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:23:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:23:45 ruptelaNet.go:278: Sent ACK (client: [::1]:58009, IMEI: 352094087982671) +2018/09/16 05:23:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58009, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:23:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:58038) +2018/09/16 05:23:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:23:56 ruptelaNet.go:261: Data received(client: [::1]:58038, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:23:56 ruptelaNet.go:278: Sent ACK (client: [::1]:58038, IMEI: 352094089712860) +2018/09/16 05:23:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:23:58 ruptelaNet.go:261: Data received(client: [::1]:58038, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 05:23:58 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:23:58 ruptelaNet.go:278: Sent ACK (client: [::1]:58038, IMEI: 352094089712860) +2018/09/16 05:23:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58038, IMEI: 352094089712860) with duration 2.69 s +2018/09/16 05:24:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:58070) +2018/09/16 05:24:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:24:11 ruptelaNet.go:261: Data received(client: [::1]:58070, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 05:24:11 ruptelaNet.go:278: Sent ACK (client: [::1]:58070, IMEI: 352094087982671) +2018/09/16 05:24:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:24:14 ruptelaNet.go:261: Data received(client: [::1]:58070, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 05:24:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:24:14 ruptelaNet.go:278: Sent ACK (client: [::1]:58070, IMEI: 352094087982671) +2018/09/16 05:24:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58070, IMEI: 352094087982671) with duration 6 s +2018/09/16 05:24:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:58125) +2018/09/16 05:24:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:24:40 ruptelaNet.go:261: Data received(client: [::1]:58125, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 05:24:40 ruptelaNet.go:278: Sent ACK (client: [::1]:58125, IMEI: 352094087982671) +2018/09/16 05:24:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:24:43 ruptelaNet.go:261: Data received(client: [::1]:58125, IMEI: 352094087982671) with duration 4.04 s +2018/09/16 05:24:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:24:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58125, IMEI: 352094087982671) +2018/09/16 05:24:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58125, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:24:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:58153) +2018/09/16 05:24:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:24:56 ruptelaNet.go:261: Data received(client: [::1]:58153, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:24:56 ruptelaNet.go:278: Sent ACK (client: [::1]:58153, IMEI: 352094089712860) +2018/09/16 05:24:58 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:24:58 ruptelaNet.go:261: Data received(client: [::1]:58153, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 05:24:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:24:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58153, IMEI: 352094089712860) +2018/09/16 05:24:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58153, IMEI: 352094089712860) with duration 2.99 s +2018/09/16 05:25:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:58185) +2018/09/16 05:25:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:25:09 ruptelaNet.go:261: Data received(client: [::1]:58185, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:25:09 ruptelaNet.go:278: Sent ACK (client: [::1]:58185, IMEI: 352094087982671) +2018/09/16 05:25:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:25:12 ruptelaNet.go:261: Data received(client: [::1]:58185, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:25:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:25:12 ruptelaNet.go:278: Sent ACK (client: [::1]:58185, IMEI: 352094087982671) +2018/09/16 05:25:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58185, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 05:25:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:58244) +2018/09/16 05:25:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:25:38 ruptelaNet.go:261: Data received(client: [::1]:58244, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 05:25:38 ruptelaNet.go:278: Sent ACK (client: [::1]:58244, IMEI: 352094087982671) +2018/09/16 05:25:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:25:41 ruptelaNet.go:261: Data received(client: [::1]:58244, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 05:25:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:25:41 ruptelaNet.go:278: Sent ACK (client: [::1]:58244, IMEI: 352094087982671) +2018/09/16 05:25:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58244, IMEI: 352094087982671) with duration 5.99 s +2018/09/16 05:25:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58283) +2018/09/16 05:25:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:25:57 ruptelaNet.go:261: Data received(client: [::1]:58283, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:25:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58283, IMEI: 352094089712860) +2018/09/16 05:25:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:25:59 ruptelaNet.go:261: Data received(client: [::1]:58283, IMEI: 352094089712860) with duration 2.49 s +2018/09/16 05:25:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:25:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58283, IMEI: 352094089712860) +2018/09/16 05:26:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58283, IMEI: 352094089712860) with duration 3.21 s +2018/09/16 05:26:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:58305) +2018/09/16 05:26:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:26:07 ruptelaNet.go:261: Data received(client: [::1]:58305, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 05:26:07 ruptelaNet.go:278: Sent ACK (client: [::1]:58305, IMEI: 352094087982671) +2018/09/16 05:26:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:26:10 ruptelaNet.go:261: Data received(client: [::1]:58305, IMEI: 352094087982671) with duration 3.74 s +2018/09/16 05:26:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:26:10 ruptelaNet.go:278: Sent ACK (client: [::1]:58305, IMEI: 352094087982671) +2018/09/16 05:26:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58305, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 05:26:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:58358) +2018/09/16 05:26:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:26:37 ruptelaNet.go:261: Data received(client: [::1]:58358, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 05:26:37 ruptelaNet.go:278: Sent ACK (client: [::1]:58358, IMEI: 352094087982671) +2018/09/16 05:26:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:26:40 ruptelaNet.go:261: Data received(client: [::1]:58358, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 05:26:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:26:40 ruptelaNet.go:278: Sent ACK (client: [::1]:58358, IMEI: 352094087982671) +2018/09/16 05:26:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58358, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 05:26:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58397) +2018/09/16 05:26:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:26:57 ruptelaNet.go:261: Data received(client: [::1]:58397, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:26:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58397, IMEI: 352094089712860) +2018/09/16 05:26:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:26:59 ruptelaNet.go:261: Data received(client: [::1]:58397, IMEI: 352094089712860) with duration 2.3 s +2018/09/16 05:26:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:26:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58397, IMEI: 352094089712860) +2018/09/16 05:27:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58397, IMEI: 352094089712860) with duration 3.12 s +2018/09/16 05:27:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:58414) +2018/09/16 05:27:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:27:05 ruptelaNet.go:261: Data received(client: [::1]:58414, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:27:05 ruptelaNet.go:278: Sent ACK (client: [::1]:58414, IMEI: 352094087982671) +2018/09/16 05:27:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:27:08 ruptelaNet.go:261: Data received(client: [::1]:58414, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 05:27:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:27:08 ruptelaNet.go:278: Sent ACK (client: [::1]:58414, IMEI: 352094087982671) +2018/09/16 05:27:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58414, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 05:27:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:58472) +2018/09/16 05:27:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:27:34 ruptelaNet.go:261: Data received(client: [::1]:58472, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 05:27:34 ruptelaNet.go:278: Sent ACK (client: [::1]:58472, IMEI: 352094087982671) +2018/09/16 05:27:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:27:37 ruptelaNet.go:261: Data received(client: [::1]:58472, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:27:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:27:37 ruptelaNet.go:278: Sent ACK (client: [::1]:58472, IMEI: 352094087982671) +2018/09/16 05:27:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58472, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:27:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58522) +2018/09/16 05:27:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:27:57 ruptelaNet.go:261: Data received(client: [::1]:58522, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:27:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58522, IMEI: 352094089712860) +2018/09/16 05:27:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:27:59 ruptelaNet.go:261: Data received(client: [::1]:58522, IMEI: 352094089712860) with duration 2.19 s +2018/09/16 05:27:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:27:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58522, IMEI: 352094089712860) +2018/09/16 05:28:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58522, IMEI: 352094089712860) with duration 3.63 s +2018/09/16 05:28:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:58534) +2018/09/16 05:28:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:28:03 ruptelaNet.go:261: Data received(client: [::1]:58534, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 05:28:03 ruptelaNet.go:278: Sent ACK (client: [::1]:58534, IMEI: 352094087982671) +2018/09/16 05:28:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:28:07 ruptelaNet.go:261: Data received(client: [::1]:58534, IMEI: 352094087982671) with duration 4.71 s +2018/09/16 05:28:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:28:07 ruptelaNet.go:278: Sent ACK (client: [::1]:58534, IMEI: 352094087982671) +2018/09/16 05:28:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58534, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 05:28:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:58604) +2018/09/16 05:28:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:28:33 ruptelaNet.go:261: Data received(client: [::1]:58604, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 05:28:33 ruptelaNet.go:278: Sent ACK (client: [::1]:58604, IMEI: 352094087982671) +2018/09/16 05:28:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:28:36 ruptelaNet.go:261: Data received(client: [::1]:58604, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 05:28:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:28:36 ruptelaNet.go:278: Sent ACK (client: [::1]:58604, IMEI: 352094087982671) +2018/09/16 05:28:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58604, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 05:28:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58656) +2018/09/16 05:28:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:28:57 ruptelaNet.go:261: Data received(client: [::1]:58656, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:28:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58656, IMEI: 352094089712860) +2018/09/16 05:28:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:28:59 ruptelaNet.go:261: Data received(client: [::1]:58656, IMEI: 352094089712860) with duration 1.9 s +2018/09/16 05:28:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:28:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58656, IMEI: 352094089712860) +2018/09/16 05:28:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58656, IMEI: 352094089712860) with duration 2.6 s +2018/09/16 05:29:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:58664) +2018/09/16 05:29:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:29:02 ruptelaNet.go:261: Data received(client: [::1]:58664, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 05:29:02 ruptelaNet.go:278: Sent ACK (client: [::1]:58664, IMEI: 352094087982671) +2018/09/16 05:29:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:29:05 ruptelaNet.go:261: Data received(client: [::1]:58664, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 05:29:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:29:05 ruptelaNet.go:278: Sent ACK (client: [::1]:58664, IMEI: 352094087982671) +2018/09/16 05:29:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58664, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 05:29:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:58721) +2018/09/16 05:29:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:29:31 ruptelaNet.go:261: Data received(client: [::1]:58721, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:29:31 ruptelaNet.go:278: Sent ACK (client: [::1]:58721, IMEI: 352094087982671) +2018/09/16 05:29:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:29:34 ruptelaNet.go:261: Data received(client: [::1]:58721, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:29:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:29:34 ruptelaNet.go:278: Sent ACK (client: [::1]:58721, IMEI: 352094087982671) +2018/09/16 05:29:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58721, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 05:29:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58781) +2018/09/16 05:29:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:29:57 ruptelaNet.go:261: Data received(client: [::1]:58781, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:29:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58781, IMEI: 352094089712860) +2018/09/16 05:29:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:29:59 ruptelaNet.go:261: Data received(client: [::1]:58781, IMEI: 352094089712860) with duration 2 s +2018/09/16 05:29:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:29:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58781, IMEI: 352094089712860) +2018/09/16 05:29:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:58787) +2018/09/16 05:30:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58781, IMEI: 352094089712860) with duration 2.82 s +2018/09/16 05:30:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:30:00 ruptelaNet.go:261: Data received(client: [::1]:58787, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:30:00 ruptelaNet.go:278: Sent ACK (client: [::1]:58787, IMEI: 352094087982671) +2018/09/16 05:30:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:30:03 ruptelaNet.go:261: Data received(client: [::1]:58787, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:30:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:30:03 ruptelaNet.go:278: Sent ACK (client: [::1]:58787, IMEI: 352094087982671) +2018/09/16 05:30:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58787, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 05:30:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:58843) +2018/09/16 05:30:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:30:29 ruptelaNet.go:261: Data received(client: [::1]:58843, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 05:30:29 ruptelaNet.go:278: Sent ACK (client: [::1]:58843, IMEI: 352094087982671) +2018/09/16 05:30:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:30:32 ruptelaNet.go:261: Data received(client: [::1]:58843, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 05:30:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:30:32 ruptelaNet.go:278: Sent ACK (client: [::1]:58843, IMEI: 352094087982671) +2018/09/16 05:30:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58843, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 05:30:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58897) +2018/09/16 05:30:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:30:57 ruptelaNet.go:261: Data received(client: [::1]:58897, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:30:57 ruptelaNet.go:278: Sent ACK (client: [::1]:58897, IMEI: 352094089712860) +2018/09/16 05:30:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:58898) +2018/09/16 05:30:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:30:58 ruptelaNet.go:261: Data received(client: [::1]:58898, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 05:30:58 ruptelaNet.go:278: Sent ACK (client: [::1]:58898, IMEI: 352094087982671) +2018/09/16 05:30:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:30:59 ruptelaNet.go:261: Data received(client: [::1]:58897, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 05:30:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:30:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58897, IMEI: 352094089712860) +2018/09/16 05:31:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58897, IMEI: 352094089712860) with duration 2.67 s +2018/09/16 05:31:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:31:01 ruptelaNet.go:261: Data received(client: [::1]:58898, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 05:31:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:31:01 ruptelaNet.go:278: Sent ACK (client: [::1]:58898, IMEI: 352094087982671) +2018/09/16 05:31:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58898, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 05:31:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:58961) +2018/09/16 05:31:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:31:27 ruptelaNet.go:261: Data received(client: [::1]:58961, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 05:31:27 ruptelaNet.go:278: Sent ACK (client: [::1]:58961, IMEI: 352094087982671) +2018/09/16 05:31:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:31:30 ruptelaNet.go:261: Data received(client: [::1]:58961, IMEI: 352094087982671) with duration 3.93 s +2018/09/16 05:31:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:31:30 ruptelaNet.go:278: Sent ACK (client: [::1]:58961, IMEI: 352094087982671) +2018/09/16 05:31:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58961, IMEI: 352094087982671) with duration 6.08 s +2018/09/16 05:31:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:59018) +2018/09/16 05:31:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:31:56 ruptelaNet.go:261: Data received(client: [::1]:59018, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 05:31:56 ruptelaNet.go:278: Sent ACK (client: [::1]:59018, IMEI: 352094087982671) +2018/09/16 05:31:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:59024) +2018/09/16 05:31:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:31:57 ruptelaNet.go:261: Data received(client: [::1]:59024, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:31:57 ruptelaNet.go:278: Sent ACK (client: [::1]:59024, IMEI: 352094089712860) +2018/09/16 05:31:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:31:59 ruptelaNet.go:261: Data received(client: [::1]:59018, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:31:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:31:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59018, IMEI: 352094087982671) +2018/09/16 05:31:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:31:59 ruptelaNet.go:261: Data received(client: [::1]:59024, IMEI: 352094089712860) with duration 2.27 s +2018/09/16 05:31:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:31:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59024, IMEI: 352094089712860) +2018/09/16 05:32:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59024, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 05:32:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59018, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:32:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:59077) +2018/09/16 05:32:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:32:25 ruptelaNet.go:261: Data received(client: [::1]:59077, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:32:25 ruptelaNet.go:278: Sent ACK (client: [::1]:59077, IMEI: 352094087982671) +2018/09/16 05:32:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:32:28 ruptelaNet.go:261: Data received(client: [::1]:59077, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:32:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:32:28 ruptelaNet.go:278: Sent ACK (client: [::1]:59077, IMEI: 352094087982671) +2018/09/16 05:32:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59077, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 05:32:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:59131) +2018/09/16 05:32:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:32:54 ruptelaNet.go:261: Data received(client: [::1]:59131, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 05:32:54 ruptelaNet.go:278: Sent ACK (client: [::1]:59131, IMEI: 352094087982671) +2018/09/16 05:32:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:32:58 ruptelaNet.go:261: Data received(client: [::1]:59131, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 05:32:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59142) +2018/09/16 05:32:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:32:58 ruptelaNet.go:261: Data received(client: [::1]:59142, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:32:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59142, IMEI: 352094089712860) +2018/09/16 05:32:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:32:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59131, IMEI: 352094087982671) +2018/09/16 05:33:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:33:00 ruptelaNet.go:261: Data received(client: [::1]:59142, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 05:33:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:33:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59142, IMEI: 352094089712860) +2018/09/16 05:33:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59131, IMEI: 352094087982671) with duration 6.43 s +2018/09/16 05:33:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59142, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 05:33:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:59188) +2018/09/16 05:33:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:33:23 ruptelaNet.go:261: Data received(client: [::1]:59188, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:33:23 ruptelaNet.go:278: Sent ACK (client: [::1]:59188, IMEI: 352094087982671) +2018/09/16 05:33:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:33:26 ruptelaNet.go:261: Data received(client: [::1]:59188, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:33:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:33:26 ruptelaNet.go:278: Sent ACK (client: [::1]:59188, IMEI: 352094087982671) +2018/09/16 05:33:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59188, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 05:33:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:59251) +2018/09/16 05:33:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:33:52 ruptelaNet.go:261: Data received(client: [::1]:59251, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:33:52 ruptelaNet.go:278: Sent ACK (client: [::1]:59251, IMEI: 352094087982671) +2018/09/16 05:33:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:33:56 ruptelaNet.go:261: Data received(client: [::1]:59251, IMEI: 352094087982671) with duration 4.26 s +2018/09/16 05:33:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:33:56 ruptelaNet.go:278: Sent ACK (client: [::1]:59251, IMEI: 352094087982671) +2018/09/16 05:33:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:59263) +2018/09/16 05:33:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:33:57 ruptelaNet.go:261: Data received(client: [::1]:59263, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:33:57 ruptelaNet.go:278: Sent ACK (client: [::1]:59263, IMEI: 352094089712860) +2018/09/16 05:33:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59251, IMEI: 352094087982671) with duration 6.32 s +2018/09/16 05:33:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:33:59 ruptelaNet.go:261: Data received(client: [::1]:59263, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:33:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:33:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59263, IMEI: 352094089712860) +2018/09/16 05:34:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59263, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:34:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:59305) +2018/09/16 05:34:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:34:21 ruptelaNet.go:261: Data received(client: [::1]:59305, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 05:34:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59305, IMEI: 352094087982671) +2018/09/16 05:34:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:34:24 ruptelaNet.go:261: Data received(client: [::1]:59305, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 05:34:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:34:24 ruptelaNet.go:278: Sent ACK (client: [::1]:59305, IMEI: 352094087982671) +2018/09/16 05:34:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59305, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 05:34:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:59373) +2018/09/16 05:34:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:34:50 ruptelaNet.go:261: Data received(client: [::1]:59373, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:34:50 ruptelaNet.go:278: Sent ACK (client: [::1]:59373, IMEI: 352094087982671) +2018/09/16 05:34:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:34:53 ruptelaNet.go:261: Data received(client: [::1]:59373, IMEI: 352094087982671) with duration 3.98 s +2018/09/16 05:34:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:34:53 ruptelaNet.go:278: Sent ACK (client: [::1]:59373, IMEI: 352094087982671) +2018/09/16 05:34:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59373, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 05:34:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:59389) +2018/09/16 05:34:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:34:57 ruptelaNet.go:261: Data received(client: [::1]:59389, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:34:57 ruptelaNet.go:278: Sent ACK (client: [::1]:59389, IMEI: 352094089712860) +2018/09/16 05:34:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:34:59 ruptelaNet.go:261: Data received(client: [::1]:59389, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 05:34:59 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:34:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59389, IMEI: 352094089712860) +2018/09/16 05:35:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59389, IMEI: 352094089712860) with duration 2.79 s +2018/09/16 05:35:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:59431) +2018/09/16 05:35:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:35:19 ruptelaNet.go:261: Data received(client: [::1]:59431, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 05:35:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59431, IMEI: 352094087982671) +2018/09/16 05:35:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:35:22 ruptelaNet.go:261: Data received(client: [::1]:59431, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:35:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:35:22 ruptelaNet.go:278: Sent ACK (client: [::1]:59431, IMEI: 352094087982671) +2018/09/16 05:35:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59431, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 05:35:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:59489) +2018/09/16 05:35:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:35:49 ruptelaNet.go:261: Data received(client: [::1]:59489, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 05:35:49 ruptelaNet.go:278: Sent ACK (client: [::1]:59489, IMEI: 352094087982671) +2018/09/16 05:35:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:35:51 ruptelaNet.go:261: Data received(client: [::1]:59489, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 05:35:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:35:51 ruptelaNet.go:278: Sent ACK (client: [::1]:59489, IMEI: 352094087982671) +2018/09/16 05:35:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59489, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 05:35:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59512) +2018/09/16 05:35:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:35:58 ruptelaNet.go:261: Data received(client: [::1]:59512, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:35:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59512, IMEI: 352094089712860) +2018/09/16 05:36:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:36:00 ruptelaNet.go:261: Data received(client: [::1]:59512, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:36:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:36:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59512, IMEI: 352094089712860) +2018/09/16 05:36:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59512, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:36:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:59543) +2018/09/16 05:36:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:36:17 ruptelaNet.go:261: Data received(client: [::1]:59543, IMEI: 352094087982671) with duration 0.75 s +2018/09/16 05:36:17 ruptelaNet.go:278: Sent ACK (client: [::1]:59543, IMEI: 352094087982671) +2018/09/16 05:36:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:36:20 ruptelaNet.go:261: Data received(client: [::1]:59543, IMEI: 352094087982671) with duration 3.62 s +2018/09/16 05:36:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:36:20 ruptelaNet.go:278: Sent ACK (client: [::1]:59543, IMEI: 352094087982671) +2018/09/16 05:36:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59543, IMEI: 352094087982671) with duration 5.77 s +2018/09/16 05:36:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:59609) +2018/09/16 05:36:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:36:49 ruptelaNet.go:261: Data received(client: [::1]:59609, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:36:49 ruptelaNet.go:278: Sent ACK (client: [::1]:59609, IMEI: 352094087982671) +2018/09/16 05:36:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:36:52 ruptelaNet.go:261: Data received(client: [::1]:59609, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:36:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:36:52 ruptelaNet.go:278: Sent ACK (client: [::1]:59609, IMEI: 352094087982671) +2018/09/16 05:36:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59609, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:36:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59631) +2018/09/16 05:36:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:36:58 ruptelaNet.go:261: Data received(client: [::1]:59631, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:36:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59631, IMEI: 352094089712860) +2018/09/16 05:36:59 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:36:59 ruptelaNet.go:261: Data received(client: [::1]:59631, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:37:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:37:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59631, IMEI: 352094089712860) +2018/09/16 05:37:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59631, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:37:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:59669) +2018/09/16 05:37:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:37:17 ruptelaNet.go:261: Data received(client: [::1]:59669, IMEI: 352094087982671) with duration 0.76 s +2018/09/16 05:37:17 ruptelaNet.go:278: Sent ACK (client: [::1]:59669, IMEI: 352094087982671) +2018/09/16 05:37:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:37:20 ruptelaNet.go:261: Data received(client: [::1]:59669, IMEI: 352094087982671) with duration 3.53 s +2018/09/16 05:37:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:37:20 ruptelaNet.go:278: Sent ACK (client: [::1]:59669, IMEI: 352094087982671) +2018/09/16 05:37:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59669, IMEI: 352094087982671) with duration 5.68 s +2018/09/16 05:37:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:59726) +2018/09/16 05:37:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:37:47 ruptelaNet.go:261: Data received(client: [::1]:59726, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 05:37:47 ruptelaNet.go:278: Sent ACK (client: [::1]:59726, IMEI: 352094087982671) +2018/09/16 05:37:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:37:49 ruptelaNet.go:261: Data received(client: [::1]:59726, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 05:37:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:37:49 ruptelaNet.go:278: Sent ACK (client: [::1]:59726, IMEI: 352094087982671) +2018/09/16 05:37:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59726, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 05:37:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59750) +2018/09/16 05:37:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:37:58 ruptelaNet.go:261: Data received(client: [::1]:59750, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:37:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59750, IMEI: 352094089712860) +2018/09/16 05:38:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:38:00 ruptelaNet.go:261: Data received(client: [::1]:59750, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 05:38:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:38:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59750, IMEI: 352094089712860) +2018/09/16 05:38:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59750, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 05:38:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:59785) +2018/09/16 05:38:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:38:15 ruptelaNet.go:261: Data received(client: [::1]:59785, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:38:15 ruptelaNet.go:278: Sent ACK (client: [::1]:59785, IMEI: 352094087982671) +2018/09/16 05:38:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:38:18 ruptelaNet.go:261: Data received(client: [::1]:59785, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 05:38:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:38:18 ruptelaNet.go:278: Sent ACK (client: [::1]:59785, IMEI: 352094087982671) +2018/09/16 05:38:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59785, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:38:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:59846) +2018/09/16 05:38:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:38:44 ruptelaNet.go:261: Data received(client: [::1]:59846, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 05:38:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59846, IMEI: 352094087982671) +2018/09/16 05:38:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:38:47 ruptelaNet.go:261: Data received(client: [::1]:59846, IMEI: 352094087982671) with duration 3.34 s +2018/09/16 05:38:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:38:47 ruptelaNet.go:278: Sent ACK (client: [::1]:59846, IMEI: 352094087982671) +2018/09/16 05:38:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59846, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 05:38:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59874) +2018/09/16 05:38:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:38:58 ruptelaNet.go:261: Data received(client: [::1]:59874, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:38:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59874, IMEI: 352094089712860) +2018/09/16 05:39:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:39:00 ruptelaNet.go:261: Data received(client: [::1]:59874, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 05:39:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:39:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59874, IMEI: 352094089712860) +2018/09/16 05:39:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59874, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:39:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:59901) +2018/09/16 05:39:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:39:12 ruptelaNet.go:261: Data received(client: [::1]:59901, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:39:12 ruptelaNet.go:278: Sent ACK (client: [::1]:59901, IMEI: 352094087982671) +2018/09/16 05:39:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:39:15 ruptelaNet.go:261: Data received(client: [::1]:59901, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 05:39:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:39:15 ruptelaNet.go:278: Sent ACK (client: [::1]:59901, IMEI: 352094087982671) +2018/09/16 05:39:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59901, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 05:39:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:59964) +2018/09/16 05:39:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:39:42 ruptelaNet.go:261: Data received(client: [::1]:59964, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 05:39:42 ruptelaNet.go:278: Sent ACK (client: [::1]:59964, IMEI: 352094087982671) +2018/09/16 05:39:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:39:44 ruptelaNet.go:261: Data received(client: [::1]:59964, IMEI: 352094087982671) with duration 3.67 s +2018/09/16 05:39:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:39:44 ruptelaNet.go:278: Sent ACK (client: [::1]:59964, IMEI: 352094087982671) +2018/09/16 05:39:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59964, IMEI: 352094087982671) with duration 5.88 s +2018/09/16 05:39:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60002) +2018/09/16 05:39:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:39:58 ruptelaNet.go:261: Data received(client: [::1]:60002, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:39:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60002, IMEI: 352094089712860) +2018/09/16 05:40:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:40:00 ruptelaNet.go:261: Data received(client: [::1]:60002, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 05:40:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:40:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60002, IMEI: 352094089712860) +2018/09/16 05:40:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60002, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:40:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:60023) +2018/09/16 05:40:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:40:10 ruptelaNet.go:261: Data received(client: [::1]:60023, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:40:10 ruptelaNet.go:278: Sent ACK (client: [::1]:60023, IMEI: 352094087982671) +2018/09/16 05:40:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:40:14 ruptelaNet.go:261: Data received(client: [::1]:60023, IMEI: 352094087982671) with duration 4.16 s +2018/09/16 05:40:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:40:14 ruptelaNet.go:278: Sent ACK (client: [::1]:60023, IMEI: 352094087982671) +2018/09/16 05:40:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60023, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 05:40:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:60080) +2018/09/16 05:40:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:40:39 ruptelaNet.go:261: Data received(client: [::1]:60080, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:40:39 ruptelaNet.go:278: Sent ACK (client: [::1]:60080, IMEI: 352094087982671) +2018/09/16 05:40:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:40:42 ruptelaNet.go:261: Data received(client: [::1]:60080, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:40:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:40:42 ruptelaNet.go:278: Sent ACK (client: [::1]:60080, IMEI: 352094087982671) +2018/09/16 05:40:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60080, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:40:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60120) +2018/09/16 05:40:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:40:58 ruptelaNet.go:261: Data received(client: [::1]:60120, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:40:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60120, IMEI: 352094089712860) +2018/09/16 05:41:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:41:00 ruptelaNet.go:261: Data received(client: [::1]:60120, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 05:41:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:41:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60120, IMEI: 352094089712860) +2018/09/16 05:41:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60120, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 05:41:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:60141) +2018/09/16 05:41:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:41:08 ruptelaNet.go:261: Data received(client: [::1]:60141, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:41:08 ruptelaNet.go:278: Sent ACK (client: [::1]:60141, IMEI: 352094087982671) +2018/09/16 05:41:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:41:11 ruptelaNet.go:261: Data received(client: [::1]:60141, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:41:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:41:11 ruptelaNet.go:278: Sent ACK (client: [::1]:60141, IMEI: 352094087982671) +2018/09/16 05:41:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60141, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:41:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:60199) +2018/09/16 05:41:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:41:37 ruptelaNet.go:261: Data received(client: [::1]:60199, IMEI: 352094087982671) with duration 0.56 s +2018/09/16 05:41:37 ruptelaNet.go:278: Sent ACK (client: [::1]:60199, IMEI: 352094087982671) +2018/09/16 05:41:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:41:40 ruptelaNet.go:261: Data received(client: [::1]:60199, IMEI: 352094087982671) with duration 3.32 s +2018/09/16 05:41:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:41:40 ruptelaNet.go:278: Sent ACK (client: [::1]:60199, IMEI: 352094087982671) +2018/09/16 05:41:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60199, IMEI: 352094087982671) with duration 5.48 s +2018/09/16 05:41:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60245) +2018/09/16 05:41:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:41:59 ruptelaNet.go:261: Data received(client: [::1]:60245, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 05:41:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60245, IMEI: 352094089712860) +2018/09/16 05:42:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:42:00 ruptelaNet.go:261: Data received(client: [::1]:60245, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 05:42:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:42:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60245, IMEI: 352094089712860) +2018/09/16 05:42:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60245, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 05:42:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:60262) +2018/09/16 05:42:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:42:06 ruptelaNet.go:261: Data received(client: [::1]:60262, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 05:42:06 ruptelaNet.go:278: Sent ACK (client: [::1]:60262, IMEI: 352094087982671) +2018/09/16 05:42:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:42:09 ruptelaNet.go:261: Data received(client: [::1]:60262, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:42:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:42:09 ruptelaNet.go:278: Sent ACK (client: [::1]:60262, IMEI: 352094087982671) +2018/09/16 05:42:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60262, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:42:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:60319) +2018/09/16 05:42:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:42:35 ruptelaNet.go:261: Data received(client: [::1]:60319, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:42:35 ruptelaNet.go:278: Sent ACK (client: [::1]:60319, IMEI: 352094087982671) +2018/09/16 05:42:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:42:38 ruptelaNet.go:261: Data received(client: [::1]:60319, IMEI: 352094087982671) with duration 4.12 s +2018/09/16 05:42:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:42:38 ruptelaNet.go:278: Sent ACK (client: [::1]:60319, IMEI: 352094087982671) +2018/09/16 05:42:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60319, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 05:42:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60365) +2018/09/16 05:42:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:42:58 ruptelaNet.go:261: Data received(client: [::1]:60365, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:42:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60365, IMEI: 352094089712860) +2018/09/16 05:43:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:43:00 ruptelaNet.go:261: Data received(client: [::1]:60365, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 05:43:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:43:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60365, IMEI: 352094089712860) +2018/09/16 05:43:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60365, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 05:43:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:60381) +2018/09/16 05:43:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:43:04 ruptelaNet.go:261: Data received(client: [::1]:60381, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 05:43:04 ruptelaNet.go:278: Sent ACK (client: [::1]:60381, IMEI: 352094087982671) +2018/09/16 05:43:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:43:07 ruptelaNet.go:261: Data received(client: [::1]:60381, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:43:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:43:07 ruptelaNet.go:278: Sent ACK (client: [::1]:60381, IMEI: 352094087982671) +2018/09/16 05:43:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60381, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:43:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:60441) +2018/09/16 05:43:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:43:34 ruptelaNet.go:261: Data received(client: [::1]:60441, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 05:43:34 ruptelaNet.go:278: Sent ACK (client: [::1]:60441, IMEI: 352094087982671) +2018/09/16 05:43:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:43:36 ruptelaNet.go:261: Data received(client: [::1]:60441, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 05:43:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:43:36 ruptelaNet.go:278: Sent ACK (client: [::1]:60441, IMEI: 352094087982671) +2018/09/16 05:43:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60441, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 05:43:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60490) +2018/09/16 05:43:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:43:58 ruptelaNet.go:261: Data received(client: [::1]:60490, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:43:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60490, IMEI: 352094089712860) +2018/09/16 05:44:00 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:44:00 ruptelaNet.go:261: Data received(client: [::1]:60490, IMEI: 352094089712860) with duration 2.09 s +2018/09/16 05:44:00 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:44:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60490, IMEI: 352094089712860) +2018/09/16 05:44:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60490, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 05:44:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:60496) +2018/09/16 05:44:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:44:02 ruptelaNet.go:261: Data received(client: [::1]:60496, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 05:44:02 ruptelaNet.go:278: Sent ACK (client: [::1]:60496, IMEI: 352094087982671) +2018/09/16 05:44:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:44:05 ruptelaNet.go:261: Data received(client: [::1]:60496, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 05:44:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:44:05 ruptelaNet.go:278: Sent ACK (client: [::1]:60496, IMEI: 352094087982671) +2018/09/16 05:44:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60496, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 05:44:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:60557) +2018/09/16 05:44:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:44:31 ruptelaNet.go:261: Data received(client: [::1]:60557, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:44:31 ruptelaNet.go:278: Sent ACK (client: [::1]:60557, IMEI: 352094087982671) +2018/09/16 05:44:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:44:34 ruptelaNet.go:261: Data received(client: [::1]:60557, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 05:44:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:44:34 ruptelaNet.go:278: Sent ACK (client: [::1]:60557, IMEI: 352094087982671) +2018/09/16 05:44:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60557, IMEI: 352094087982671) with duration 6.99 s +2018/09/16 05:44:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60617) +2018/09/16 05:44:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:44:59 ruptelaNet.go:261: Data received(client: [::1]:60617, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:44:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60617, IMEI: 352094089712860) +2018/09/16 05:44:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60618) +2018/09/16 05:45:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:45:00 ruptelaNet.go:261: Data received(client: [::1]:60618, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:45:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60618, IMEI: 352094087982671) +2018/09/16 05:45:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:45:01 ruptelaNet.go:261: Data received(client: [::1]:60617, IMEI: 352094089712860) with duration 2.53 s +2018/09/16 05:45:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:45:01 ruptelaNet.go:278: Sent ACK (client: [::1]:60617, IMEI: 352094089712860) +2018/09/16 05:45:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60617, IMEI: 352094089712860) with duration 3.35 s +2018/09/16 05:45:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:45:03 ruptelaNet.go:261: Data received(client: [::1]:60618, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:45:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:45:03 ruptelaNet.go:278: Sent ACK (client: [::1]:60618, IMEI: 352094087982671) +2018/09/16 05:45:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60618, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 05:45:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:60675) +2018/09/16 05:45:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:45:29 ruptelaNet.go:261: Data received(client: [::1]:60675, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 05:45:29 ruptelaNet.go:278: Sent ACK (client: [::1]:60675, IMEI: 352094087982671) +2018/09/16 05:45:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:45:32 ruptelaNet.go:261: Data received(client: [::1]:60675, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 05:45:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:45:32 ruptelaNet.go:278: Sent ACK (client: [::1]:60675, IMEI: 352094087982671) +2018/09/16 05:45:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60675, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 05:45:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:60735) +2018/09/16 05:45:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:45:58 ruptelaNet.go:261: Data received(client: [::1]:60735, IMEI: 352094087982671) with duration 0.74 s +2018/09/16 05:45:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60735, IMEI: 352094087982671) +2018/09/16 05:45:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60736) +2018/09/16 05:45:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:45:59 ruptelaNet.go:261: Data received(client: [::1]:60736, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:45:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60736, IMEI: 352094089712860) +2018/09/16 05:46:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:46:01 ruptelaNet.go:261: Data received(client: [::1]:60736, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 05:46:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:46:01 ruptelaNet.go:278: Sent ACK (client: [::1]:60736, IMEI: 352094089712860) +2018/09/16 05:46:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60736, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 05:46:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:46:02 ruptelaNet.go:261: Data received(client: [::1]:60735, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 05:46:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:46:02 ruptelaNet.go:278: Sent ACK (client: [::1]:60735, IMEI: 352094087982671) +2018/09/16 05:46:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60735, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 05:46:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:60794) +2018/09/16 05:46:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:46:27 ruptelaNet.go:261: Data received(client: [::1]:60794, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:46:27 ruptelaNet.go:278: Sent ACK (client: [::1]:60794, IMEI: 352094087982671) +2018/09/16 05:46:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:46:30 ruptelaNet.go:261: Data received(client: [::1]:60794, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 05:46:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:46:30 ruptelaNet.go:278: Sent ACK (client: [::1]:60794, IMEI: 352094087982671) +2018/09/16 05:46:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60794, IMEI: 352094087982671) with duration 6.18 s +2018/09/16 05:46:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:60856) +2018/09/16 05:46:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:46:57 ruptelaNet.go:261: Data received(client: [::1]:60856, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 05:46:57 ruptelaNet.go:278: Sent ACK (client: [::1]:60856, IMEI: 352094087982671) +2018/09/16 05:46:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60862) +2018/09/16 05:46:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:46:59 ruptelaNet.go:261: Data received(client: [::1]:60862, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:46:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60862, IMEI: 352094089712860) +2018/09/16 05:46:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:46:59 ruptelaNet.go:261: Data received(client: [::1]:60856, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 05:46:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:46:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60856, IMEI: 352094087982671) +2018/09/16 05:47:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:47:01 ruptelaNet.go:261: Data received(client: [::1]:60862, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 05:47:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:47:01 ruptelaNet.go:278: Sent ACK (client: [::1]:60862, IMEI: 352094089712860) +2018/09/16 05:47:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60856, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 05:47:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60862, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 05:47:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:60917) +2018/09/16 05:47:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:47:25 ruptelaNet.go:261: Data received(client: [::1]:60917, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 05:47:25 ruptelaNet.go:278: Sent ACK (client: [::1]:60917, IMEI: 352094087982671) +2018/09/16 05:47:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:47:28 ruptelaNet.go:261: Data received(client: [::1]:60917, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:47:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:47:28 ruptelaNet.go:278: Sent ACK (client: [::1]:60917, IMEI: 352094087982671) +2018/09/16 05:47:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60917, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:47:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:60979) +2018/09/16 05:47:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:47:54 ruptelaNet.go:261: Data received(client: [::1]:60979, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 05:47:54 ruptelaNet.go:278: Sent ACK (client: [::1]:60979, IMEI: 352094087982671) +2018/09/16 05:47:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:47:57 ruptelaNet.go:261: Data received(client: [::1]:60979, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 05:47:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:47:57 ruptelaNet.go:278: Sent ACK (client: [::1]:60979, IMEI: 352094087982671) +2018/09/16 05:47:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60990) +2018/09/16 05:47:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:47:59 ruptelaNet.go:261: Data received(client: [::1]:60990, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:47:59 ruptelaNet.go:278: Sent ACK (client: [::1]:60990, IMEI: 352094089712860) +2018/09/16 05:48:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60979, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 05:48:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:48:01 ruptelaNet.go:261: Data received(client: [::1]:60990, IMEI: 352094089712860) with duration 2.45 s +2018/09/16 05:48:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:48:01 ruptelaNet.go:278: Sent ACK (client: [::1]:60990, IMEI: 352094089712860) +2018/09/16 05:48:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60990, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 05:48:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:61042) +2018/09/16 05:48:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:48:23 ruptelaNet.go:261: Data received(client: [::1]:61042, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 05:48:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61042, IMEI: 352094087982671) +2018/09/16 05:48:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:48:27 ruptelaNet.go:261: Data received(client: [::1]:61042, IMEI: 352094087982671) with duration 4.31 s +2018/09/16 05:48:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:48:27 ruptelaNet.go:278: Sent ACK (client: [::1]:61042, IMEI: 352094087982671) +2018/09/16 05:48:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61042, IMEI: 352094087982671) with duration 6.5 s +2018/09/16 05:48:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:61110) +2018/09/16 05:48:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:48:52 ruptelaNet.go:261: Data received(client: [::1]:61110, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 05:48:52 ruptelaNet.go:278: Sent ACK (client: [::1]:61110, IMEI: 352094087982671) +2018/09/16 05:48:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:48:55 ruptelaNet.go:261: Data received(client: [::1]:61110, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 05:48:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:48:55 ruptelaNet.go:278: Sent ACK (client: [::1]:61110, IMEI: 352094087982671) +2018/09/16 05:48:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61110, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 05:48:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61122) +2018/09/16 05:48:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:48:59 ruptelaNet.go:261: Data received(client: [::1]:61122, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:48:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61122, IMEI: 352094089712860) +2018/09/16 05:49:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:49:01 ruptelaNet.go:261: Data received(client: [::1]:61122, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 05:49:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:49:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61122, IMEI: 352094089712860) +2018/09/16 05:49:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61122, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 05:49:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61164) +2018/09/16 05:49:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:49:21 ruptelaNet.go:261: Data received(client: [::1]:61164, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 05:49:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61164, IMEI: 352094087982671) +2018/09/16 05:49:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:49:24 ruptelaNet.go:261: Data received(client: [::1]:61164, IMEI: 352094087982671) with duration 3.72 s +2018/09/16 05:49:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:49:24 ruptelaNet.go:278: Sent ACK (client: [::1]:61164, IMEI: 352094087982671) +2018/09/16 05:49:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61164, IMEI: 352094087982671) with duration 5.79 s +2018/09/16 05:49:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:61219) +2018/09/16 05:49:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:49:50 ruptelaNet.go:261: Data received(client: [::1]:61219, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:49:50 ruptelaNet.go:278: Sent ACK (client: [::1]:61219, IMEI: 352094087982671) +2018/09/16 05:49:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:49:53 ruptelaNet.go:261: Data received(client: [::1]:61219, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 05:49:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:49:53 ruptelaNet.go:278: Sent ACK (client: [::1]:61219, IMEI: 352094087982671) +2018/09/16 05:49:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61219, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 05:49:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61240) +2018/09/16 05:49:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:49:59 ruptelaNet.go:261: Data received(client: [::1]:61240, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:49:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61240, IMEI: 352094089712860) +2018/09/16 05:50:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:50:01 ruptelaNet.go:261: Data received(client: [::1]:61240, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:50:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:50:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61240, IMEI: 352094089712860) +2018/09/16 05:50:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61240, IMEI: 352094089712860) with duration 3.58 s +2018/09/16 05:50:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:61278) +2018/09/16 05:50:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:50:19 ruptelaNet.go:261: Data received(client: [::1]:61278, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:50:19 ruptelaNet.go:278: Sent ACK (client: [::1]:61278, IMEI: 352094087982671) +2018/09/16 05:50:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:50:22 ruptelaNet.go:261: Data received(client: [::1]:61278, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:50:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:50:22 ruptelaNet.go:278: Sent ACK (client: [::1]:61278, IMEI: 352094087982671) +2018/09/16 05:50:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61278, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:50:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:61333) +2018/09/16 05:50:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:50:48 ruptelaNet.go:261: Data received(client: [::1]:61333, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 05:50:48 ruptelaNet.go:278: Sent ACK (client: [::1]:61333, IMEI: 352094087982671) +2018/09/16 05:50:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:50:51 ruptelaNet.go:261: Data received(client: [::1]:61333, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 05:50:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:50:51 ruptelaNet.go:278: Sent ACK (client: [::1]:61333, IMEI: 352094087982671) +2018/09/16 05:50:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61333, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:50:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61360) +2018/09/16 05:50:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:50:59 ruptelaNet.go:261: Data received(client: [::1]:61360, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:50:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61360, IMEI: 352094089712860) +2018/09/16 05:51:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:51:01 ruptelaNet.go:261: Data received(client: [::1]:61360, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 05:51:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:51:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61360, IMEI: 352094089712860) +2018/09/16 05:51:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61360, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:51:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:61394) +2018/09/16 05:51:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:51:17 ruptelaNet.go:261: Data received(client: [::1]:61394, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:51:17 ruptelaNet.go:278: Sent ACK (client: [::1]:61394, IMEI: 352094087982671) +2018/09/16 05:51:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:51:20 ruptelaNet.go:261: Data received(client: [::1]:61394, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 05:51:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:51:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61394, IMEI: 352094087982671) +2018/09/16 05:51:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61394, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 05:51:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:61458) +2018/09/16 05:51:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:51:46 ruptelaNet.go:261: Data received(client: [::1]:61458, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 05:51:46 ruptelaNet.go:278: Sent ACK (client: [::1]:61458, IMEI: 352094087982671) +2018/09/16 05:51:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:51:49 ruptelaNet.go:261: Data received(client: [::1]:61458, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 05:51:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:51:49 ruptelaNet.go:278: Sent ACK (client: [::1]:61458, IMEI: 352094087982671) +2018/09/16 05:51:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61458, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 05:51:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61490) +2018/09/16 05:51:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:51:59 ruptelaNet.go:261: Data received(client: [::1]:61490, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:51:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61490, IMEI: 352094089712860) +2018/09/16 05:52:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:52:01 ruptelaNet.go:261: Data received(client: [::1]:61490, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:52:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:52:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61490, IMEI: 352094089712860) +2018/09/16 05:52:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61490, IMEI: 352094089712860) with duration 2.67 s +2018/09/16 05:52:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:61523) +2018/09/16 05:52:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:52:15 ruptelaNet.go:261: Data received(client: [::1]:61523, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:52:15 ruptelaNet.go:278: Sent ACK (client: [::1]:61523, IMEI: 352094087982671) +2018/09/16 05:52:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:52:18 ruptelaNet.go:261: Data received(client: [::1]:61523, IMEI: 352094087982671) with duration 4.11 s +2018/09/16 05:52:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:52:18 ruptelaNet.go:278: Sent ACK (client: [::1]:61523, IMEI: 352094087982671) +2018/09/16 05:52:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61523, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 05:52:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:61584) +2018/09/16 05:52:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:52:44 ruptelaNet.go:261: Data received(client: [::1]:61584, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:52:44 ruptelaNet.go:278: Sent ACK (client: [::1]:61584, IMEI: 352094087982671) +2018/09/16 05:52:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:52:47 ruptelaNet.go:261: Data received(client: [::1]:61584, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:52:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:52:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61584, IMEI: 352094087982671) +2018/09/16 05:52:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61584, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 05:52:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61619) +2018/09/16 05:52:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:52:59 ruptelaNet.go:261: Data received(client: [::1]:61619, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:52:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61619, IMEI: 352094089712860) +2018/09/16 05:53:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:53:01 ruptelaNet.go:261: Data received(client: [::1]:61619, IMEI: 352094089712860) with duration 2 s +2018/09/16 05:53:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:53:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61619, IMEI: 352094089712860) +2018/09/16 05:53:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61619, IMEI: 352094089712860) with duration 2.82 s +2018/09/16 05:53:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:61647) +2018/09/16 05:53:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:53:13 ruptelaNet.go:261: Data received(client: [::1]:61647, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 05:53:13 ruptelaNet.go:278: Sent ACK (client: [::1]:61647, IMEI: 352094087982671) +2018/09/16 05:53:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:53:16 ruptelaNet.go:261: Data received(client: [::1]:61647, IMEI: 352094087982671) with duration 4.06 s +2018/09/16 05:53:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:53:16 ruptelaNet.go:278: Sent ACK (client: [::1]:61647, IMEI: 352094087982671) +2018/09/16 05:53:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61647, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 05:53:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:61708) +2018/09/16 05:53:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:53:42 ruptelaNet.go:261: Data received(client: [::1]:61708, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:53:42 ruptelaNet.go:278: Sent ACK (client: [::1]:61708, IMEI: 352094087982671) +2018/09/16 05:53:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:53:45 ruptelaNet.go:261: Data received(client: [::1]:61708, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 05:53:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:53:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61708, IMEI: 352094087982671) +2018/09/16 05:53:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61708, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 05:53:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61747) +2018/09/16 05:53:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:53:59 ruptelaNet.go:261: Data received(client: [::1]:61747, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:53:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61747, IMEI: 352094089712860) +2018/09/16 05:54:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:54:01 ruptelaNet.go:261: Data received(client: [::1]:61747, IMEI: 352094089712860) with duration 1.92 s +2018/09/16 05:54:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:54:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61747, IMEI: 352094089712860) +2018/09/16 05:54:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61747, IMEI: 352094089712860) with duration 2.63 s +2018/09/16 05:54:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:61768) +2018/09/16 05:54:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:54:11 ruptelaNet.go:261: Data received(client: [::1]:61768, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 05:54:11 ruptelaNet.go:278: Sent ACK (client: [::1]:61768, IMEI: 352094087982671) +2018/09/16 05:54:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:54:14 ruptelaNet.go:261: Data received(client: [::1]:61768, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 05:54:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:54:14 ruptelaNet.go:278: Sent ACK (client: [::1]:61768, IMEI: 352094087982671) +2018/09/16 05:54:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61768, IMEI: 352094087982671) with duration 6.41 s +2018/09/16 05:54:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:61827) +2018/09/16 05:54:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:54:40 ruptelaNet.go:261: Data received(client: [::1]:61827, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 05:54:40 ruptelaNet.go:278: Sent ACK (client: [::1]:61827, IMEI: 352094087982671) +2018/09/16 05:54:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:54:43 ruptelaNet.go:261: Data received(client: [::1]:61827, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 05:54:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:54:43 ruptelaNet.go:278: Sent ACK (client: [::1]:61827, IMEI: 352094087982671) +2018/09/16 05:54:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61827, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:54:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:61871) +2018/09/16 05:54:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:54:59 ruptelaNet.go:261: Data received(client: [::1]:61871, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:54:59 ruptelaNet.go:278: Sent ACK (client: [::1]:61871, IMEI: 352094089712860) +2018/09/16 05:55:01 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:55:01 ruptelaNet.go:261: Data received(client: [::1]:61871, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 05:55:01 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:55:01 ruptelaNet.go:278: Sent ACK (client: [::1]:61871, IMEI: 352094089712860) +2018/09/16 05:55:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61871, IMEI: 352094089712860) with duration 2.68 s +2018/09/16 05:55:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:61892) +2018/09/16 05:55:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:55:09 ruptelaNet.go:261: Data received(client: [::1]:61892, IMEI: 352094087982671) with duration 0.79 s +2018/09/16 05:55:09 ruptelaNet.go:278: Sent ACK (client: [::1]:61892, IMEI: 352094087982671) +2018/09/16 05:55:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:55:12 ruptelaNet.go:261: Data received(client: [::1]:61892, IMEI: 352094087982671) with duration 3.35 s +2018/09/16 05:55:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:55:12 ruptelaNet.go:278: Sent ACK (client: [::1]:61892, IMEI: 352094087982671) +2018/09/16 05:55:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61892, IMEI: 352094087982671) with duration 5.6 s +2018/09/16 05:55:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:61946) +2018/09/16 05:55:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:55:37 ruptelaNet.go:261: Data received(client: [::1]:61946, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:55:37 ruptelaNet.go:278: Sent ACK (client: [::1]:61946, IMEI: 352094087982671) +2018/09/16 05:55:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:55:40 ruptelaNet.go:261: Data received(client: [::1]:61946, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 05:55:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:55:40 ruptelaNet.go:278: Sent ACK (client: [::1]:61946, IMEI: 352094087982671) +2018/09/16 05:55:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61946, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:56:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:61997) +2018/09/16 05:56:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:56:00 ruptelaNet.go:261: Data received(client: [::1]:61997, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:56:00 ruptelaNet.go:278: Sent ACK (client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 05:56:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:56:02 ruptelaNet.go:261: Data received(client: [::1]:61997, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 05:56:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:56:02 ruptelaNet.go:278: Sent ACK (client: [::1]:61997, IMEI: 352094089712860) +2018/09/16 05:56:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61997, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 05:56:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:62005) +2018/09/16 05:56:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:56:07 ruptelaNet.go:261: Data received(client: [::1]:62005, IMEI: 352094087982671) with duration 1.18 s +2018/09/16 05:56:07 ruptelaNet.go:278: Sent ACK (client: [::1]:62005, IMEI: 352094087982671) +2018/09/16 05:56:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:56:09 ruptelaNet.go:261: Data received(client: [::1]:62005, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 05:56:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:56:09 ruptelaNet.go:278: Sent ACK (client: [::1]:62005, IMEI: 352094087982671) +2018/09/16 05:56:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62005, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 05:56:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:62064) +2018/09/16 05:56:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:56:35 ruptelaNet.go:261: Data received(client: [::1]:62064, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:56:35 ruptelaNet.go:278: Sent ACK (client: [::1]:62064, IMEI: 352094087982671) +2018/09/16 05:56:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:56:38 ruptelaNet.go:261: Data received(client: [::1]:62064, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 05:56:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:56:38 ruptelaNet.go:278: Sent ACK (client: [::1]:62064, IMEI: 352094087982671) +2018/09/16 05:56:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62064, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 05:57:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62119) +2018/09/16 05:57:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:57:00 ruptelaNet.go:261: Data received(client: [::1]:62119, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:57:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62119, IMEI: 352094089712860) +2018/09/16 05:57:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:57:02 ruptelaNet.go:261: Data received(client: [::1]:62119, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 05:57:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:57:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62119, IMEI: 352094089712860) +2018/09/16 05:57:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62119, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 05:57:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:62126) +2018/09/16 05:57:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:57:04 ruptelaNet.go:261: Data received(client: [::1]:62126, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 05:57:04 ruptelaNet.go:278: Sent ACK (client: [::1]:62126, IMEI: 352094087982671) +2018/09/16 05:57:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:57:08 ruptelaNet.go:261: Data received(client: [::1]:62126, IMEI: 352094087982671) with duration 4.61 s +2018/09/16 05:57:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:57:08 ruptelaNet.go:278: Sent ACK (client: [::1]:62126, IMEI: 352094087982671) +2018/09/16 05:57:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62126, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 05:57:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:62188) +2018/09/16 05:57:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:57:34 ruptelaNet.go:261: Data received(client: [::1]:62188, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 05:57:34 ruptelaNet.go:278: Sent ACK (client: [::1]:62188, IMEI: 352094087982671) +2018/09/16 05:57:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:57:37 ruptelaNet.go:261: Data received(client: [::1]:62188, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 05:57:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:57:37 ruptelaNet.go:278: Sent ACK (client: [::1]:62188, IMEI: 352094087982671) +2018/09/16 05:57:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62188, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 05:58:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62237) +2018/09/16 05:58:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:58:00 ruptelaNet.go:261: Data received(client: [::1]:62237, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:58:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62237, IMEI: 352094089712860) +2018/09/16 05:58:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:58:02 ruptelaNet.go:261: Data received(client: [::1]:62237, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 05:58:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:58:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62237, IMEI: 352094089712860) +2018/09/16 05:58:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:62244) +2018/09/16 05:58:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62237, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 05:58:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:58:03 ruptelaNet.go:261: Data received(client: [::1]:62244, IMEI: 352094087982671) with duration 0.91 s +2018/09/16 05:58:03 ruptelaNet.go:278: Sent ACK (client: [::1]:62244, IMEI: 352094087982671) +2018/09/16 05:58:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:58:06 ruptelaNet.go:261: Data received(client: [::1]:62244, IMEI: 352094087982671) with duration 3.74 s +2018/09/16 05:58:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:58:06 ruptelaNet.go:278: Sent ACK (client: [::1]:62244, IMEI: 352094087982671) +2018/09/16 05:58:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62244, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 05:58:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:62301) +2018/09/16 05:58:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:58:32 ruptelaNet.go:261: Data received(client: [::1]:62301, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 05:58:32 ruptelaNet.go:278: Sent ACK (client: [::1]:62301, IMEI: 352094087982671) +2018/09/16 05:58:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:58:35 ruptelaNet.go:261: Data received(client: [::1]:62301, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 05:58:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:58:35 ruptelaNet.go:278: Sent ACK (client: [::1]:62301, IMEI: 352094087982671) +2018/09/16 05:58:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62301, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 05:59:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62363) +2018/09/16 05:59:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:59:00 ruptelaNet.go:261: Data received(client: [::1]:62363, IMEI: 352094089712860) with duration 0 s +2018/09/16 05:59:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62363, IMEI: 352094089712860) +2018/09/16 05:59:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:62366) +2018/09/16 05:59:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:59:01 ruptelaNet.go:261: Data received(client: [::1]:62366, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 05:59:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62366, IMEI: 352094087982671) +2018/09/16 05:59:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 05:59:02 ruptelaNet.go:261: Data received(client: [::1]:62363, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 05:59:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 05:59:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62363, IMEI: 352094089712860) +2018/09/16 05:59:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62363, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 05:59:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:59:04 ruptelaNet.go:261: Data received(client: [::1]:62366, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 05:59:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:59:04 ruptelaNet.go:278: Sent ACK (client: [::1]:62366, IMEI: 352094087982671) +2018/09/16 05:59:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62366, IMEI: 352094087982671) with duration 5.81 s +2018/09/16 05:59:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:62425) +2018/09/16 05:59:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 05:59:30 ruptelaNet.go:261: Data received(client: [::1]:62425, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 05:59:30 ruptelaNet.go:278: Sent ACK (client: [::1]:62425, IMEI: 352094087982671) +2018/09/16 05:59:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 05:59:33 ruptelaNet.go:261: Data received(client: [::1]:62425, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 05:59:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 05:59:33 ruptelaNet.go:278: Sent ACK (client: [::1]:62425, IMEI: 352094087982671) +2018/09/16 05:59:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62425, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 05:59:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:62485) +2018/09/16 06:00:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:00:00 ruptelaNet.go:261: Data received(client: [::1]:62485, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:00:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62485, IMEI: 352094087982671) +2018/09/16 06:00:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62488) +2018/09/16 06:00:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:00:00 ruptelaNet.go:261: Data received(client: [::1]:62488, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:00:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62488, IMEI: 352094089712860) +2018/09/16 06:00:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:00:02 ruptelaNet.go:261: Data received(client: [::1]:62488, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 06:00:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:00:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62488, IMEI: 352094089712860) +2018/09/16 06:00:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:00:02 ruptelaNet.go:261: Data received(client: [::1]:62485, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 06:00:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:00:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62485, IMEI: 352094087982671) +2018/09/16 06:00:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62488, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 06:00:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62485, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:00:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:62547) +2018/09/16 06:00:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:00:28 ruptelaNet.go:261: Data received(client: [::1]:62547, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 06:00:28 ruptelaNet.go:278: Sent ACK (client: [::1]:62547, IMEI: 352094087982671) +2018/09/16 06:00:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:00:31 ruptelaNet.go:261: Data received(client: [::1]:62547, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:00:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:00:31 ruptelaNet.go:278: Sent ACK (client: [::1]:62547, IMEI: 352094087982671) +2018/09/16 06:00:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62547, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 06:00:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:62607) +2018/09/16 06:00:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:00:58 ruptelaNet.go:261: Data received(client: [::1]:62607, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:00:58 ruptelaNet.go:278: Sent ACK (client: [::1]:62607, IMEI: 352094087982671) +2018/09/16 06:01:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62618) +2018/09/16 06:01:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:01:00 ruptelaNet.go:261: Data received(client: [::1]:62618, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:01:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62618, IMEI: 352094089712860) +2018/09/16 06:01:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:01:01 ruptelaNet.go:261: Data received(client: [::1]:62607, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 06:01:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:01:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62607, IMEI: 352094087982671) +2018/09/16 06:01:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:01:03 ruptelaNet.go:261: Data received(client: [::1]:62618, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 06:01:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:01:03 ruptelaNet.go:278: Sent ACK (client: [::1]:62618, IMEI: 352094089712860) +2018/09/16 06:01:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62607, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 06:01:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62618, IMEI: 352094089712860) with duration 3.58 s +2018/09/16 06:01:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:62671) +2018/09/16 06:01:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:01:26 ruptelaNet.go:261: Data received(client: [::1]:62671, IMEI: 352094087982671) with duration 0.91 s +2018/09/16 06:01:26 ruptelaNet.go:278: Sent ACK (client: [::1]:62671, IMEI: 352094087982671) +2018/09/16 06:01:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:01:29 ruptelaNet.go:261: Data received(client: [::1]:62671, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:01:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:01:29 ruptelaNet.go:278: Sent ACK (client: [::1]:62671, IMEI: 352094087982671) +2018/09/16 06:01:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62671, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:01:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:62726) +2018/09/16 06:01:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:01:55 ruptelaNet.go:261: Data received(client: [::1]:62726, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 06:01:55 ruptelaNet.go:278: Sent ACK (client: [::1]:62726, IMEI: 352094087982671) +2018/09/16 06:01:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:01:58 ruptelaNet.go:261: Data received(client: [::1]:62726, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 06:01:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:01:58 ruptelaNet.go:278: Sent ACK (client: [::1]:62726, IMEI: 352094087982671) +2018/09/16 06:02:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62726, IMEI: 352094087982671) with duration 5.98 s +2018/09/16 06:02:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62740) +2018/09/16 06:02:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:02:00 ruptelaNet.go:261: Data received(client: [::1]:62740, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:02:00 ruptelaNet.go:278: Sent ACK (client: [::1]:62740, IMEI: 352094089712860) +2018/09/16 06:02:02 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:02:02 ruptelaNet.go:261: Data received(client: [::1]:62740, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:02:02 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:02:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62740, IMEI: 352094089712860) +2018/09/16 06:02:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62740, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 06:02:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:62787) +2018/09/16 06:02:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:02:24 ruptelaNet.go:261: Data received(client: [::1]:62787, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:02:24 ruptelaNet.go:278: Sent ACK (client: [::1]:62787, IMEI: 352094087982671) +2018/09/16 06:02:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:02:27 ruptelaNet.go:261: Data received(client: [::1]:62787, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 06:02:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:02:27 ruptelaNet.go:278: Sent ACK (client: [::1]:62787, IMEI: 352094087982671) +2018/09/16 06:02:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62787, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:02:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:62847) +2018/09/16 06:02:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:02:53 ruptelaNet.go:261: Data received(client: [::1]:62847, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:02:53 ruptelaNet.go:278: Sent ACK (client: [::1]:62847, IMEI: 352094087982671) +2018/09/16 06:02:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:02:56 ruptelaNet.go:261: Data received(client: [::1]:62847, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:02:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:02:56 ruptelaNet.go:278: Sent ACK (client: [::1]:62847, IMEI: 352094087982671) +2018/09/16 06:02:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62847, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:03:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:62864) +2018/09/16 06:03:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:03:01 ruptelaNet.go:261: Data received(client: [::1]:62864, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:03:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62864, IMEI: 352094089712860) +2018/09/16 06:03:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:03:03 ruptelaNet.go:261: Data received(client: [::1]:62864, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 06:03:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:03:03 ruptelaNet.go:278: Sent ACK (client: [::1]:62864, IMEI: 352094089712860) +2018/09/16 06:03:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62864, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 06:03:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62901) +2018/09/16 06:03:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:03:22 ruptelaNet.go:261: Data received(client: [::1]:62901, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:03:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62901, IMEI: 352094087982671) +2018/09/16 06:03:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:03:25 ruptelaNet.go:261: Data received(client: [::1]:62901, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:03:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:03:25 ruptelaNet.go:278: Sent ACK (client: [::1]:62901, IMEI: 352094087982671) +2018/09/16 06:03:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62901, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 06:03:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:62969) +2018/09/16 06:03:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:03:51 ruptelaNet.go:261: Data received(client: [::1]:62969, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 06:03:51 ruptelaNet.go:278: Sent ACK (client: [::1]:62969, IMEI: 352094087982671) +2018/09/16 06:03:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:03:54 ruptelaNet.go:261: Data received(client: [::1]:62969, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:03:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:03:54 ruptelaNet.go:278: Sent ACK (client: [::1]:62969, IMEI: 352094087982671) +2018/09/16 06:03:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62969, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:04:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:62989) +2018/09/16 06:04:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:04:01 ruptelaNet.go:261: Data received(client: [::1]:62989, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:04:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62989, IMEI: 352094089712860) +2018/09/16 06:04:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:04:03 ruptelaNet.go:261: Data received(client: [::1]:62989, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:04:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:04:03 ruptelaNet.go:278: Sent ACK (client: [::1]:62989, IMEI: 352094089712860) +2018/09/16 06:04:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62989, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 06:04:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:63026) +2018/09/16 06:04:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:04:20 ruptelaNet.go:261: Data received(client: [::1]:63026, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:04:20 ruptelaNet.go:278: Sent ACK (client: [::1]:63026, IMEI: 352094087982671) +2018/09/16 06:04:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:04:23 ruptelaNet.go:261: Data received(client: [::1]:63026, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:04:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:04:23 ruptelaNet.go:278: Sent ACK (client: [::1]:63026, IMEI: 352094087982671) +2018/09/16 06:04:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63026, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:04:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:63087) +2018/09/16 06:04:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:04:49 ruptelaNet.go:261: Data received(client: [::1]:63087, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:04:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63087, IMEI: 352094087982671) +2018/09/16 06:04:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:04:52 ruptelaNet.go:261: Data received(client: [::1]:63087, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:04:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:04:52 ruptelaNet.go:278: Sent ACK (client: [::1]:63087, IMEI: 352094087982671) +2018/09/16 06:04:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63087, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:05:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:63113) +2018/09/16 06:05:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:05:02 ruptelaNet.go:261: Data received(client: [::1]:63113, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:05:02 ruptelaNet.go:278: Sent ACK (client: [::1]:63113, IMEI: 352094089712860) +2018/09/16 06:05:07 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:05:07 ruptelaNet.go:261: Data received(client: [::1]:63113, IMEI: 352094089712860) with duration 5.24 s +2018/09/16 06:05:07 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:05:07 ruptelaNet.go:278: Sent ACK (client: [::1]:63113, IMEI: 352094089712860) +2018/09/16 06:05:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63113, IMEI: 352094089712860) with duration 6.02 s +2018/09/16 06:05:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:63142) +2018/09/16 06:05:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:05:19 ruptelaNet.go:261: Data received(client: [::1]:63142, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 06:05:19 ruptelaNet.go:278: Sent ACK (client: [::1]:63142, IMEI: 352094087982671) +2018/09/16 06:05:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:05:21 ruptelaNet.go:261: Data received(client: [::1]:63142, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:05:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:05:21 ruptelaNet.go:278: Sent ACK (client: [::1]:63142, IMEI: 352094087982671) +2018/09/16 06:05:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63142, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 06:05:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:63205) +2018/09/16 06:05:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:05:48 ruptelaNet.go:261: Data received(client: [::1]:63205, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 06:05:48 ruptelaNet.go:278: Sent ACK (client: [::1]:63205, IMEI: 352094087982671) +2018/09/16 06:05:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:05:50 ruptelaNet.go:261: Data received(client: [::1]:63205, IMEI: 352094087982671) with duration 3.93 s +2018/09/16 06:05:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:05:50 ruptelaNet.go:278: Sent ACK (client: [::1]:63205, IMEI: 352094087982671) +2018/09/16 06:05:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63205, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 06:06:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:63237) +2018/09/16 06:06:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:06:02 ruptelaNet.go:261: Data received(client: [::1]:63237, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:06:02 ruptelaNet.go:278: Sent ACK (client: [::1]:63237, IMEI: 352094089712860) +2018/09/16 06:06:04 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:06:04 ruptelaNet.go:261: Data received(client: [::1]:63237, IMEI: 352094089712860) with duration 2.16 s +2018/09/16 06:06:04 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:06:04 ruptelaNet.go:278: Sent ACK (client: [::1]:63237, IMEI: 352094089712860) +2018/09/16 06:06:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63237, IMEI: 352094089712860) with duration 3.7 s +2018/09/16 06:06:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:63264) +2018/09/16 06:06:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:06:17 ruptelaNet.go:261: Data received(client: [::1]:63264, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:06:17 ruptelaNet.go:278: Sent ACK (client: [::1]:63264, IMEI: 352094087982671) +2018/09/16 06:06:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:06:19 ruptelaNet.go:261: Data received(client: [::1]:63264, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:06:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:06:19 ruptelaNet.go:278: Sent ACK (client: [::1]:63264, IMEI: 352094087982671) +2018/09/16 06:06:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63264, IMEI: 352094087982671) with duration 6.22 s +2018/09/16 06:06:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:63324) +2018/09/16 06:06:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:06:45 ruptelaNet.go:261: Data received(client: [::1]:63324, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:06:45 ruptelaNet.go:278: Sent ACK (client: [::1]:63324, IMEI: 352094087982671) +2018/09/16 06:06:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:06:48 ruptelaNet.go:261: Data received(client: [::1]:63324, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 06:06:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:06:48 ruptelaNet.go:278: Sent ACK (client: [::1]:63324, IMEI: 352094087982671) +2018/09/16 06:06:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63324, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:07:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63360) +2018/09/16 06:07:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:07:01 ruptelaNet.go:261: Data received(client: [::1]:63360, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:07:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63360, IMEI: 352094089712860) +2018/09/16 06:07:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:07:03 ruptelaNet.go:261: Data received(client: [::1]:63360, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 06:07:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:07:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63360, IMEI: 352094089712860) +2018/09/16 06:07:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63360, IMEI: 352094089712860) with duration 2.88 s +2018/09/16 06:07:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:63386) +2018/09/16 06:07:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:07:15 ruptelaNet.go:261: Data received(client: [::1]:63386, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 06:07:15 ruptelaNet.go:278: Sent ACK (client: [::1]:63386, IMEI: 352094087982671) +2018/09/16 06:07:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:07:17 ruptelaNet.go:261: Data received(client: [::1]:63386, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:07:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:07:17 ruptelaNet.go:278: Sent ACK (client: [::1]:63386, IMEI: 352094087982671) +2018/09/16 06:07:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63386, IMEI: 352094087982671) with duration 6.08 s +2018/09/16 06:07:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:63437) +2018/09/16 06:07:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:07:43 ruptelaNet.go:261: Data received(client: [::1]:63437, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:07:43 ruptelaNet.go:278: Sent ACK (client: [::1]:63437, IMEI: 352094087982671) +2018/09/16 06:07:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:07:46 ruptelaNet.go:261: Data received(client: [::1]:63437, IMEI: 352094087982671) with duration 3.61 s +2018/09/16 06:07:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:07:46 ruptelaNet.go:278: Sent ACK (client: [::1]:63437, IMEI: 352094087982671) +2018/09/16 06:07:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63437, IMEI: 352094087982671) with duration 5.75 s +2018/09/16 06:08:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63477) +2018/09/16 06:08:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:08:01 ruptelaNet.go:261: Data received(client: [::1]:63477, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:08:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63477, IMEI: 352094089712860) +2018/09/16 06:08:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:08:03 ruptelaNet.go:261: Data received(client: [::1]:63477, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 06:08:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:08:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63477, IMEI: 352094089712860) +2018/09/16 06:08:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63477, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 06:08:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:63498) +2018/09/16 06:08:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:08:13 ruptelaNet.go:261: Data received(client: [::1]:63498, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:08:13 ruptelaNet.go:278: Sent ACK (client: [::1]:63498, IMEI: 352094087982671) +2018/09/16 06:08:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:08:16 ruptelaNet.go:261: Data received(client: [::1]:63498, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:08:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:08:16 ruptelaNet.go:278: Sent ACK (client: [::1]:63498, IMEI: 352094087982671) +2018/09/16 06:08:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63498, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:08:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:63556) +2018/09/16 06:08:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:08:41 ruptelaNet.go:261: Data received(client: [::1]:63556, IMEI: 352094087982671) with duration 0.91 s +2018/09/16 06:08:41 ruptelaNet.go:278: Sent ACK (client: [::1]:63556, IMEI: 352094087982671) +2018/09/16 06:08:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:08:44 ruptelaNet.go:261: Data received(client: [::1]:63556, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 06:08:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:08:44 ruptelaNet.go:278: Sent ACK (client: [::1]:63556, IMEI: 352094087982671) +2018/09/16 06:08:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63556, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:09:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63596) +2018/09/16 06:09:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:09:01 ruptelaNet.go:261: Data received(client: [::1]:63596, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:09:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63596, IMEI: 352094089712860) +2018/09/16 06:09:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:09:03 ruptelaNet.go:261: Data received(client: [::1]:63596, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:09:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:09:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63596, IMEI: 352094089712860) +2018/09/16 06:09:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63596, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:09:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:63614) +2018/09/16 06:09:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:09:10 ruptelaNet.go:261: Data received(client: [::1]:63614, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:09:10 ruptelaNet.go:278: Sent ACK (client: [::1]:63614, IMEI: 352094087982671) +2018/09/16 06:09:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:09:13 ruptelaNet.go:261: Data received(client: [::1]:63614, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:09:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:09:13 ruptelaNet.go:278: Sent ACK (client: [::1]:63614, IMEI: 352094087982671) +2018/09/16 06:09:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63614, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:09:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:63672) +2018/09/16 06:09:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:09:39 ruptelaNet.go:261: Data received(client: [::1]:63672, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:09:39 ruptelaNet.go:278: Sent ACK (client: [::1]:63672, IMEI: 352094087982671) +2018/09/16 06:09:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:09:42 ruptelaNet.go:261: Data received(client: [::1]:63672, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 06:09:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:09:42 ruptelaNet.go:278: Sent ACK (client: [::1]:63672, IMEI: 352094087982671) +2018/09/16 06:09:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63672, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:10:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63723) +2018/09/16 06:10:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:10:01 ruptelaNet.go:261: Data received(client: [::1]:63723, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:10:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63723, IMEI: 352094089712860) +2018/09/16 06:10:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:10:03 ruptelaNet.go:261: Data received(client: [::1]:63723, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:10:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:10:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63723, IMEI: 352094089712860) +2018/09/16 06:10:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63723, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 06:10:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:63735) +2018/09/16 06:10:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:10:08 ruptelaNet.go:261: Data received(client: [::1]:63735, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:10:08 ruptelaNet.go:278: Sent ACK (client: [::1]:63735, IMEI: 352094087982671) +2018/09/16 06:10:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:10:11 ruptelaNet.go:261: Data received(client: [::1]:63735, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 06:10:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:10:11 ruptelaNet.go:278: Sent ACK (client: [::1]:63735, IMEI: 352094087982671) +2018/09/16 06:10:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63735, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 06:10:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:63796) +2018/09/16 06:10:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:10:37 ruptelaNet.go:261: Data received(client: [::1]:63796, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 06:10:37 ruptelaNet.go:278: Sent ACK (client: [::1]:63796, IMEI: 352094087982671) +2018/09/16 06:10:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:10:40 ruptelaNet.go:261: Data received(client: [::1]:63796, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 06:10:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:10:40 ruptelaNet.go:278: Sent ACK (client: [::1]:63796, IMEI: 352094087982671) +2018/09/16 06:10:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63796, IMEI: 352094087982671) with duration 6 s +2018/09/16 06:11:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63846) +2018/09/16 06:11:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:11:01 ruptelaNet.go:261: Data received(client: [::1]:63846, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:11:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63846, IMEI: 352094089712860) +2018/09/16 06:11:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:11:03 ruptelaNet.go:261: Data received(client: [::1]:63846, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 06:11:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:11:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63846, IMEI: 352094089712860) +2018/09/16 06:11:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63846, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 06:11:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:63856) +2018/09/16 06:11:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:11:06 ruptelaNet.go:261: Data received(client: [::1]:63856, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 06:11:06 ruptelaNet.go:278: Sent ACK (client: [::1]:63856, IMEI: 352094087982671) +2018/09/16 06:11:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:11:09 ruptelaNet.go:261: Data received(client: [::1]:63856, IMEI: 352094087982671) with duration 4.12 s +2018/09/16 06:11:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:11:09 ruptelaNet.go:278: Sent ACK (client: [::1]:63856, IMEI: 352094087982671) +2018/09/16 06:11:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63856, IMEI: 352094087982671) with duration 8.66 s +2018/09/16 06:11:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:63916) +2018/09/16 06:11:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:11:35 ruptelaNet.go:261: Data received(client: [::1]:63916, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 06:11:35 ruptelaNet.go:278: Sent ACK (client: [::1]:63916, IMEI: 352094087982671) +2018/09/16 06:11:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:11:39 ruptelaNet.go:261: Data received(client: [::1]:63916, IMEI: 352094087982671) with duration 4.28 s +2018/09/16 06:11:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:11:39 ruptelaNet.go:278: Sent ACK (client: [::1]:63916, IMEI: 352094087982671) +2018/09/16 06:11:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63916, IMEI: 352094087982671) with duration 6.43 s +2018/09/16 06:12:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:63975) +2018/09/16 06:12:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:12:01 ruptelaNet.go:261: Data received(client: [::1]:63975, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:12:01 ruptelaNet.go:278: Sent ACK (client: [::1]:63975, IMEI: 352094089712860) +2018/09/16 06:12:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:12:03 ruptelaNet.go:261: Data received(client: [::1]:63975, IMEI: 352094089712860) with duration 2 s +2018/09/16 06:12:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:12:03 ruptelaNet.go:278: Sent ACK (client: [::1]:63975, IMEI: 352094089712860) +2018/09/16 06:12:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:63981) +2018/09/16 06:12:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63975, IMEI: 352094089712860) with duration 2.84 s +2018/09/16 06:12:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:12:04 ruptelaNet.go:261: Data received(client: [::1]:63981, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:12:04 ruptelaNet.go:278: Sent ACK (client: [::1]:63981, IMEI: 352094087982671) +2018/09/16 06:12:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:12:07 ruptelaNet.go:261: Data received(client: [::1]:63981, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 06:12:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:12:07 ruptelaNet.go:278: Sent ACK (client: [::1]:63981, IMEI: 352094087982671) +2018/09/16 06:12:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63981, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 06:12:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:64040) +2018/09/16 06:12:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:12:33 ruptelaNet.go:261: Data received(client: [::1]:64040, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:12:33 ruptelaNet.go:278: Sent ACK (client: [::1]:64040, IMEI: 352094087982671) +2018/09/16 06:12:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:12:36 ruptelaNet.go:261: Data received(client: [::1]:64040, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 06:12:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:12:36 ruptelaNet.go:278: Sent ACK (client: [::1]:64040, IMEI: 352094087982671) +2018/09/16 06:12:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64040, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 06:13:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:64098) +2018/09/16 06:13:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:64097) +2018/09/16 06:13:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:13:01 ruptelaNet.go:261: Data received(client: [::1]:64098, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:13:01 ruptelaNet.go:278: Sent ACK (client: [::1]:64098, IMEI: 352094089712860) +2018/09/16 06:13:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:13:02 ruptelaNet.go:261: Data received(client: [::1]:64097, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:13:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64097, IMEI: 352094087982671) +2018/09/16 06:13:03 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:13:03 ruptelaNet.go:261: Data received(client: [::1]:64098, IMEI: 352094089712860) with duration 2.07 s +2018/09/16 06:13:03 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:13:03 ruptelaNet.go:278: Sent ACK (client: [::1]:64098, IMEI: 352094089712860) +2018/09/16 06:13:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64098, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 06:13:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:13:05 ruptelaNet.go:261: Data received(client: [::1]:64097, IMEI: 352094087982671) with duration 3.44 s +2018/09/16 06:13:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:13:05 ruptelaNet.go:278: Sent ACK (client: [::1]:64097, IMEI: 352094087982671) +2018/09/16 06:13:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64097, IMEI: 352094087982671) with duration 5.5 s +2018/09/16 06:13:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:64152) +2018/09/16 06:13:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:13:30 ruptelaNet.go:261: Data received(client: [::1]:64152, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 06:13:30 ruptelaNet.go:278: Sent ACK (client: [::1]:64152, IMEI: 352094087982671) +2018/09/16 06:13:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:13:33 ruptelaNet.go:261: Data received(client: [::1]:64152, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:13:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:13:33 ruptelaNet.go:278: Sent ACK (client: [::1]:64152, IMEI: 352094087982671) +2018/09/16 06:13:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64152, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:13:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:64215) +2018/09/16 06:14:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:14:00 ruptelaNet.go:261: Data received(client: [::1]:64215, IMEI: 352094087982671) with duration 1.17 s +2018/09/16 06:14:00 ruptelaNet.go:278: Sent ACK (client: [::1]:64215, IMEI: 352094087982671) +2018/09/16 06:14:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:64221) +2018/09/16 06:14:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:14:02 ruptelaNet.go:261: Data received(client: [::1]:64221, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:14:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64221, IMEI: 352094089712860) +2018/09/16 06:14:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:14:02 ruptelaNet.go:261: Data received(client: [::1]:64215, IMEI: 352094087982671) with duration 3.56 s +2018/09/16 06:14:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:14:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64215, IMEI: 352094087982671) +2018/09/16 06:14:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64215, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 06:14:04 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:14:04 ruptelaNet.go:261: Data received(client: [::1]:64221, IMEI: 352094089712860) with duration 2.88 s +2018/09/16 06:14:05 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:14:05 ruptelaNet.go:278: Sent ACK (client: [::1]:64221, IMEI: 352094089712860) +2018/09/16 06:14:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64221, IMEI: 352094089712860) with duration 5.32 s +2018/09/16 06:14:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:64278) +2018/09/16 06:14:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:14:28 ruptelaNet.go:261: Data received(client: [::1]:64278, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 06:14:28 ruptelaNet.go:278: Sent ACK (client: [::1]:64278, IMEI: 352094087982671) +2018/09/16 06:14:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:14:30 ruptelaNet.go:261: Data received(client: [::1]:64278, IMEI: 352094087982671) with duration 3.75 s +2018/09/16 06:14:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:14:30 ruptelaNet.go:278: Sent ACK (client: [::1]:64278, IMEI: 352094087982671) +2018/09/16 06:14:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64278, IMEI: 352094087982671) with duration 5.9 s +2018/09/16 06:14:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:64337) +2018/09/16 06:14:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:14:56 ruptelaNet.go:261: Data received(client: [::1]:64337, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 06:14:56 ruptelaNet.go:278: Sent ACK (client: [::1]:64337, IMEI: 352094087982671) +2018/09/16 06:14:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:14:59 ruptelaNet.go:261: Data received(client: [::1]:64337, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 06:14:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:14:59 ruptelaNet.go:278: Sent ACK (client: [::1]:64337, IMEI: 352094087982671) +2018/09/16 06:15:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64337, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 06:15:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:64348) +2018/09/16 06:15:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:15:02 ruptelaNet.go:261: Data received(client: [::1]:64348, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:15:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64348, IMEI: 352094089712860) +2018/09/16 06:15:04 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:15:04 ruptelaNet.go:261: Data received(client: [::1]:64348, IMEI: 352094089712860) with duration 2.01 s +2018/09/16 06:15:04 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:15:04 ruptelaNet.go:278: Sent ACK (client: [::1]:64348, IMEI: 352094089712860) +2018/09/16 06:15:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64348, IMEI: 352094089712860) with duration 2.72 s +2018/09/16 06:15:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:64395) +2018/09/16 06:15:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:15:25 ruptelaNet.go:261: Data received(client: [::1]:64395, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:15:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64395, IMEI: 352094087982671) +2018/09/16 06:15:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:15:28 ruptelaNet.go:261: Data received(client: [::1]:64395, IMEI: 352094087982671) with duration 3.56 s +2018/09/16 06:15:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:15:28 ruptelaNet.go:278: Sent ACK (client: [::1]:64395, IMEI: 352094087982671) +2018/09/16 06:15:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64395, IMEI: 352094087982671) with duration 6.53 s +2018/09/16 06:15:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:64451) +2018/09/16 06:15:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:15:54 ruptelaNet.go:261: Data received(client: [::1]:64451, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:15:54 ruptelaNet.go:278: Sent ACK (client: [::1]:64451, IMEI: 352094087982671) +2018/09/16 06:15:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:15:58 ruptelaNet.go:261: Data received(client: [::1]:64451, IMEI: 352094087982671) with duration 4.27 s +2018/09/16 06:15:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:15:58 ruptelaNet.go:278: Sent ACK (client: [::1]:64451, IMEI: 352094087982671) +2018/09/16 06:16:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64451, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 06:16:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:64473) +2018/09/16 06:16:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:16:03 ruptelaNet.go:261: Data received(client: [::1]:64473, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:16:03 ruptelaNet.go:278: Sent ACK (client: [::1]:64473, IMEI: 352094089712860) +2018/09/16 06:16:05 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:16:05 ruptelaNet.go:261: Data received(client: [::1]:64473, IMEI: 352094089712860) with duration 2.21 s +2018/09/16 06:16:05 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:16:05 ruptelaNet.go:278: Sent ACK (client: [::1]:64473, IMEI: 352094089712860) +2018/09/16 06:16:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64473, IMEI: 352094089712860) with duration 2.95 s +2018/09/16 06:16:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:64514) +2018/09/16 06:16:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:16:24 ruptelaNet.go:261: Data received(client: [::1]:64514, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:16:24 ruptelaNet.go:278: Sent ACK (client: [::1]:64514, IMEI: 352094087982671) +2018/09/16 06:16:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:16:26 ruptelaNet.go:261: Data received(client: [::1]:64514, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 06:16:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:16:26 ruptelaNet.go:278: Sent ACK (client: [::1]:64514, IMEI: 352094087982671) +2018/09/16 06:16:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64514, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 06:16:50 ruptelaNet.go:200: teltonika New connection(client: [::1]:64569) +2018/09/16 06:16:51 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:16:51 ruptelaNet.go:261: Data received(client: [::1]:64569, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:16:51 ruptelaNet.go:278: Sent ACK (client: [::1]:64569, IMEI: 352094087982671) +2018/09/16 06:16:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:16:54 ruptelaNet.go:261: Data received(client: [::1]:64569, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:16:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:16:54 ruptelaNet.go:278: Sent ACK (client: [::1]:64569, IMEI: 352094087982671) +2018/09/16 06:16:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64569, IMEI: 352094087982671) with duration 6.08 s +2018/09/16 06:17:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:64592) +2018/09/16 06:17:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:17:02 ruptelaNet.go:261: Data received(client: [::1]:64592, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:17:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64592, IMEI: 352094089712860) +2018/09/16 06:17:04 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:17:04 ruptelaNet.go:261: Data received(client: [::1]:64592, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 06:17:04 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:17:04 ruptelaNet.go:278: Sent ACK (client: [::1]:64592, IMEI: 352094089712860) +2018/09/16 06:17:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64592, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 06:17:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:64626) +2018/09/16 06:17:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:17:20 ruptelaNet.go:261: Data received(client: [::1]:64626, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:17:20 ruptelaNet.go:278: Sent ACK (client: [::1]:64626, IMEI: 352094087982671) +2018/09/16 06:17:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:17:23 ruptelaNet.go:261: Data received(client: [::1]:64626, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 06:17:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:17:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64626, IMEI: 352094087982671) +2018/09/16 06:17:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64626, IMEI: 352094087982671) with duration 6.17 s +2018/09/16 06:17:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64687) +2018/09/16 06:17:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:17:49 ruptelaNet.go:261: Data received(client: [::1]:64687, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:17:49 ruptelaNet.go:278: Sent ACK (client: [::1]:64687, IMEI: 352094087982671) +2018/09/16 06:17:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:17:52 ruptelaNet.go:261: Data received(client: [::1]:64687, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:17:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:17:52 ruptelaNet.go:278: Sent ACK (client: [::1]:64687, IMEI: 352094087982671) +2018/09/16 06:17:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64687, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 06:18:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:64717) +2018/09/16 06:18:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:18:02 ruptelaNet.go:261: Data received(client: [::1]:64717, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:18:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64717, IMEI: 352094089712860) +2018/09/16 06:18:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:64745) +2018/09/16 06:18:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:18:18 ruptelaNet.go:261: Data received(client: [::1]:64745, IMEI: 352094087982671) with duration 0.85 s +2018/09/16 06:18:18 ruptelaNet.go:278: Sent ACK (client: [::1]:64745, IMEI: 352094087982671) +2018/09/16 06:18:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:18:21 ruptelaNet.go:261: Data received(client: [::1]:64745, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 06:18:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:18:21 ruptelaNet.go:278: Sent ACK (client: [::1]:64745, IMEI: 352094087982671) +2018/09/16 06:18:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64745, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:18:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:64808) +2018/09/16 06:18:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:18:47 ruptelaNet.go:261: Data received(client: [::1]:64808, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 06:18:47 ruptelaNet.go:278: Sent ACK (client: [::1]:64808, IMEI: 352094087982671) +2018/09/16 06:18:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:18:50 ruptelaNet.go:261: Data received(client: [::1]:64808, IMEI: 352094087982671) with duration 3.72 s +2018/09/16 06:18:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:18:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64808, IMEI: 352094087982671) +2018/09/16 06:18:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64808, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 06:19:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:64865) +2018/09/16 06:19:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:19:16 ruptelaNet.go:261: Data received(client: [::1]:64865, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 06:19:16 ruptelaNet.go:278: Sent ACK (client: [::1]:64865, IMEI: 352094087982671) +2018/09/16 06:19:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:19:19 ruptelaNet.go:261: Data received(client: [::1]:64865, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:19:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:19:19 ruptelaNet.go:278: Sent ACK (client: [::1]:64865, IMEI: 352094087982671) +2018/09/16 06:19:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64865, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 06:19:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:64918) +2018/09/16 06:19:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:19:40 ruptelaNet.go:261: Data received(client: [::1]:64918, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:19:40 ruptelaNet.go:278: Sent ACK (client: [::1]:64918, IMEI: 352094089712860) +2018/09/16 06:19:42 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:19:42 ruptelaNet.go:261: Data received(client: [::1]:64918, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:19:42 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:19:42 ruptelaNet.go:278: Sent ACK (client: [::1]:64918, IMEI: 352094089712860) +2018/09/16 06:19:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64918, IMEI: 352094089712860) with duration 2.67 s +2018/09/16 06:19:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:64925) +2018/09/16 06:19:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:19:45 ruptelaNet.go:261: Data received(client: [::1]:64925, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 06:19:45 ruptelaNet.go:278: Sent ACK (client: [::1]:64925, IMEI: 352094087982671) +2018/09/16 06:19:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:19:48 ruptelaNet.go:261: Data received(client: [::1]:64925, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:19:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:19:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64925, IMEI: 352094087982671) +2018/09/16 06:19:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64925, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:20:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:64978) +2018/09/16 06:20:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:20:10 ruptelaNet.go:261: Data received(client: [::1]:64978, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:20:10 ruptelaNet.go:278: Sent ACK (client: [::1]:64978, IMEI: 352094089712860) +2018/09/16 06:20:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:20:13 ruptelaNet.go:261: Data received(client: [::1]:64978, IMEI: 352094089712860) with duration 2.26 s +2018/09/16 06:20:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:20:13 ruptelaNet.go:278: Sent ACK (client: [::1]:64978, IMEI: 352094089712860) +2018/09/16 06:20:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:64985) +2018/09/16 06:20:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64978, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 06:20:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:20:14 ruptelaNet.go:261: Data received(client: [::1]:64985, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:20:14 ruptelaNet.go:278: Sent ACK (client: [::1]:64985, IMEI: 352094087982671) +2018/09/16 06:20:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:20:17 ruptelaNet.go:261: Data received(client: [::1]:64985, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:20:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:20:17 ruptelaNet.go:278: Sent ACK (client: [::1]:64985, IMEI: 352094087982671) +2018/09/16 06:20:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64985, IMEI: 352094087982671) with duration 6 s +2018/09/16 06:20:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:65048) +2018/09/16 06:20:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:20:43 ruptelaNet.go:261: Data received(client: [::1]:65048, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 06:20:43 ruptelaNet.go:278: Sent ACK (client: [::1]:65048, IMEI: 352094087982671) +2018/09/16 06:20:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:20:46 ruptelaNet.go:261: Data received(client: [::1]:65048, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 06:20:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:20:46 ruptelaNet.go:278: Sent ACK (client: [::1]:65048, IMEI: 352094087982671) +2018/09/16 06:20:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65048, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 06:21:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:65104) +2018/09/16 06:21:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:21:09 ruptelaNet.go:261: Data received(client: [::1]:65104, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:21:09 ruptelaNet.go:278: Sent ACK (client: [::1]:65104, IMEI: 352094089712860) +2018/09/16 06:21:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:65111) +2018/09/16 06:21:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:21:12 ruptelaNet.go:261: Data received(client: [::1]:65104, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 06:21:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:21:12 ruptelaNet.go:278: Sent ACK (client: [::1]:65104, IMEI: 352094089712860) +2018/09/16 06:21:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65104, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 06:21:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:21:13 ruptelaNet.go:261: Data received(client: [::1]:65111, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 06:21:13 ruptelaNet.go:278: Sent ACK (client: [::1]:65111, IMEI: 352094087982671) +2018/09/16 06:21:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:21:15 ruptelaNet.go:261: Data received(client: [::1]:65111, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 06:21:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:21:15 ruptelaNet.go:278: Sent ACK (client: [::1]:65111, IMEI: 352094087982671) +2018/09/16 06:21:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65111, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 06:21:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:65169) +2018/09/16 06:21:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:21:41 ruptelaNet.go:261: Data received(client: [::1]:65169, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:21:41 ruptelaNet.go:278: Sent ACK (client: [::1]:65169, IMEI: 352094087982671) +2018/09/16 06:21:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:21:44 ruptelaNet.go:261: Data received(client: [::1]:65169, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 06:21:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:21:44 ruptelaNet.go:278: Sent ACK (client: [::1]:65169, IMEI: 352094087982671) +2018/09/16 06:21:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65169, IMEI: 352094087982671) with duration 5.81 s +2018/09/16 06:22:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:65229) +2018/09/16 06:22:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:65230) +2018/09/16 06:22:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:22:10 ruptelaNet.go:261: Data received(client: [::1]:65230, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:22:10 ruptelaNet.go:278: Sent ACK (client: [::1]:65230, IMEI: 352094089712860) +2018/09/16 06:22:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:22:10 ruptelaNet.go:261: Data received(client: [::1]:65229, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 06:22:10 ruptelaNet.go:278: Sent ACK (client: [::1]:65229, IMEI: 352094087982671) +2018/09/16 06:22:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:22:12 ruptelaNet.go:261: Data received(client: [::1]:65230, IMEI: 352094089712860) with duration 2.31 s +2018/09/16 06:22:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:22:12 ruptelaNet.go:278: Sent ACK (client: [::1]:65230, IMEI: 352094089712860) +2018/09/16 06:22:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65230, IMEI: 352094089712860) with duration 3.13 s +2018/09/16 06:22:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:22:14 ruptelaNet.go:261: Data received(client: [::1]:65229, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 06:22:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:22:14 ruptelaNet.go:278: Sent ACK (client: [::1]:65229, IMEI: 352094087982671) +2018/09/16 06:22:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65229, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 06:22:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64717, IMEI: 352094089712860) with duration 255.51 s +2018/09/16 06:22:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:65288) +2018/09/16 06:22:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:22:39 ruptelaNet.go:261: Data received(client: [::1]:65288, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 06:22:39 ruptelaNet.go:278: Sent ACK (client: [::1]:65288, IMEI: 352094087982671) +2018/09/16 06:22:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:22:43 ruptelaNet.go:261: Data received(client: [::1]:65288, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 06:22:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:22:43 ruptelaNet.go:278: Sent ACK (client: [::1]:65288, IMEI: 352094087982671) +2018/09/16 06:22:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65288, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 06:23:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:65349) +2018/09/16 06:23:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:23:08 ruptelaNet.go:261: Data received(client: [::1]:65349, IMEI: 352094087982671) with duration 0.87 s +2018/09/16 06:23:08 ruptelaNet.go:278: Sent ACK (client: [::1]:65349, IMEI: 352094087982671) +2018/09/16 06:23:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:65355) +2018/09/16 06:23:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:23:10 ruptelaNet.go:261: Data received(client: [::1]:65355, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:23:10 ruptelaNet.go:278: Sent ACK (client: [::1]:65355, IMEI: 352094089712860) +2018/09/16 06:23:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:23:11 ruptelaNet.go:261: Data received(client: [::1]:65349, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 06:23:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:23:11 ruptelaNet.go:278: Sent ACK (client: [::1]:65349, IMEI: 352094087982671) +2018/09/16 06:23:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:23:12 ruptelaNet.go:261: Data received(client: [::1]:65355, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:23:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:23:12 ruptelaNet.go:278: Sent ACK (client: [::1]:65355, IMEI: 352094089712860) +2018/09/16 06:23:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65355, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 06:23:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65349, IMEI: 352094087982671) with duration 5.87 s +2018/09/16 06:23:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:65404) +2018/09/16 06:23:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:23:37 ruptelaNet.go:261: Data received(client: [::1]:65404, IMEI: 352094087982671) with duration 0.74 s +2018/09/16 06:23:37 ruptelaNet.go:278: Sent ACK (client: [::1]:65404, IMEI: 352094087982671) +2018/09/16 06:23:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:23:41 ruptelaNet.go:261: Data received(client: [::1]:65404, IMEI: 352094087982671) with duration 4.02 s +2018/09/16 06:23:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:23:41 ruptelaNet.go:278: Sent ACK (client: [::1]:65404, IMEI: 352094087982671) +2018/09/16 06:23:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65404, IMEI: 352094087982671) with duration 6.17 s +2018/09/16 06:24:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:65468) +2018/09/16 06:24:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:24:07 ruptelaNet.go:261: Data received(client: [::1]:65468, IMEI: 352094087982671) with duration 1.17 s +2018/09/16 06:24:07 ruptelaNet.go:278: Sent ACK (client: [::1]:65468, IMEI: 352094087982671) +2018/09/16 06:24:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:24:09 ruptelaNet.go:261: Data received(client: [::1]:65468, IMEI: 352094087982671) with duration 4 s +2018/09/16 06:24:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:24:09 ruptelaNet.go:278: Sent ACK (client: [::1]:65468, IMEI: 352094087982671) +2018/09/16 06:24:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:65475) +2018/09/16 06:24:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:24:10 ruptelaNet.go:261: Data received(client: [::1]:65475, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:24:10 ruptelaNet.go:278: Sent ACK (client: [::1]:65475, IMEI: 352094089712860) +2018/09/16 06:24:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65468, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:24:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:24:12 ruptelaNet.go:261: Data received(client: [::1]:65475, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 06:24:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:24:12 ruptelaNet.go:278: Sent ACK (client: [::1]:65475, IMEI: 352094089712860) +2018/09/16 06:24:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65475, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 06:24:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:65527) +2018/09/16 06:24:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:24:35 ruptelaNet.go:261: Data received(client: [::1]:65527, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 06:24:35 ruptelaNet.go:278: Sent ACK (client: [::1]:65527, IMEI: 352094087982671) +2018/09/16 06:24:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:24:39 ruptelaNet.go:261: Data received(client: [::1]:65527, IMEI: 352094087982671) with duration 4.23 s +2018/09/16 06:24:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:24:39 ruptelaNet.go:278: Sent ACK (client: [::1]:65527, IMEI: 352094087982671) +2018/09/16 06:24:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65527, IMEI: 352094087982671) with duration 6.37 s +2018/09/16 06:25:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:49207) +2018/09/16 06:25:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:25:05 ruptelaNet.go:261: Data received(client: [::1]:49207, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:25:05 ruptelaNet.go:278: Sent ACK (client: [::1]:49207, IMEI: 352094087982671) +2018/09/16 06:25:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:25:07 ruptelaNet.go:261: Data received(client: [::1]:49207, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:25:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:25:07 ruptelaNet.go:278: Sent ACK (client: [::1]:49207, IMEI: 352094087982671) +2018/09/16 06:25:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49207, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:25:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:49222) +2018/09/16 06:25:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:25:11 ruptelaNet.go:261: Data received(client: [::1]:49222, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:25:11 ruptelaNet.go:278: Sent ACK (client: [::1]:49222, IMEI: 352094089712860) +2018/09/16 06:25:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:25:13 ruptelaNet.go:261: Data received(client: [::1]:49222, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 06:25:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:25:13 ruptelaNet.go:278: Sent ACK (client: [::1]:49222, IMEI: 352094089712860) +2018/09/16 06:25:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49222, IMEI: 352094089712860) with duration 3.79 s +2018/09/16 06:25:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:49269) +2018/09/16 06:25:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:25:34 ruptelaNet.go:261: Data received(client: [::1]:49269, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:25:34 ruptelaNet.go:278: Sent ACK (client: [::1]:49269, IMEI: 352094087982671) +2018/09/16 06:25:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:25:37 ruptelaNet.go:261: Data received(client: [::1]:49269, IMEI: 352094087982671) with duration 4.14 s +2018/09/16 06:25:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:25:37 ruptelaNet.go:278: Sent ACK (client: [::1]:49269, IMEI: 352094087982671) +2018/09/16 06:25:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49269, IMEI: 352094087982671) with duration 6.25 s +2018/09/16 06:26:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:49328) +2018/09/16 06:26:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:26:03 ruptelaNet.go:261: Data received(client: [::1]:49328, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:26:03 ruptelaNet.go:278: Sent ACK (client: [::1]:49328, IMEI: 352094087982671) +2018/09/16 06:26:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:26:05 ruptelaNet.go:261: Data received(client: [::1]:49328, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:26:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:26:05 ruptelaNet.go:278: Sent ACK (client: [::1]:49328, IMEI: 352094087982671) +2018/09/16 06:26:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49328, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:26:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:49349) +2018/09/16 06:26:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:26:10 ruptelaNet.go:261: Data received(client: [::1]:49349, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:26:10 ruptelaNet.go:278: Sent ACK (client: [::1]:49349, IMEI: 352094089712860) +2018/09/16 06:26:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:26:12 ruptelaNet.go:261: Data received(client: [::1]:49349, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 06:26:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:26:12 ruptelaNet.go:278: Sent ACK (client: [::1]:49349, IMEI: 352094089712860) +2018/09/16 06:26:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49349, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:26:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:49391) +2018/09/16 06:26:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:26:31 ruptelaNet.go:261: Data received(client: [::1]:49391, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:26:31 ruptelaNet.go:278: Sent ACK (client: [::1]:49391, IMEI: 352094087982671) +2018/09/16 06:26:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:26:34 ruptelaNet.go:261: Data received(client: [::1]:49391, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:26:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:26:34 ruptelaNet.go:278: Sent ACK (client: [::1]:49391, IMEI: 352094087982671) +2018/09/16 06:26:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49391, IMEI: 352094087982671) with duration 6.28 s +2018/09/16 06:27:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:49452) +2018/09/16 06:27:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:27:00 ruptelaNet.go:261: Data received(client: [::1]:49452, IMEI: 352094087982671) with duration 0.71 s +2018/09/16 06:27:00 ruptelaNet.go:278: Sent ACK (client: [::1]:49452, IMEI: 352094087982671) +2018/09/16 06:27:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:27:03 ruptelaNet.go:261: Data received(client: [::1]:49452, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 06:27:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:27:03 ruptelaNet.go:278: Sent ACK (client: [::1]:49452, IMEI: 352094087982671) +2018/09/16 06:27:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49452, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:27:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:49478) +2018/09/16 06:27:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:27:10 ruptelaNet.go:261: Data received(client: [::1]:49478, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:27:10 ruptelaNet.go:278: Sent ACK (client: [::1]:49478, IMEI: 352094089712860) +2018/09/16 06:27:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:27:12 ruptelaNet.go:261: Data received(client: [::1]:49478, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 06:27:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:27:12 ruptelaNet.go:278: Sent ACK (client: [::1]:49478, IMEI: 352094089712860) +2018/09/16 06:27:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49478, IMEI: 352094089712860) with duration 2.71 s +2018/09/16 06:27:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:49514) +2018/09/16 06:27:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:27:30 ruptelaNet.go:261: Data received(client: [::1]:49514, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:27:30 ruptelaNet.go:278: Sent ACK (client: [::1]:49514, IMEI: 352094087982671) +2018/09/16 06:27:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:27:32 ruptelaNet.go:261: Data received(client: [::1]:49514, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:27:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:27:32 ruptelaNet.go:278: Sent ACK (client: [::1]:49514, IMEI: 352094087982671) +2018/09/16 06:27:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49514, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:27:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:49569) +2018/09/16 06:27:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:27:58 ruptelaNet.go:261: Data received(client: [::1]:49569, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 06:27:58 ruptelaNet.go:278: Sent ACK (client: [::1]:49569, IMEI: 352094087982671) +2018/09/16 06:28:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:28:01 ruptelaNet.go:261: Data received(client: [::1]:49569, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:28:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:28:01 ruptelaNet.go:278: Sent ACK (client: [::1]:49569, IMEI: 352094087982671) +2018/09/16 06:28:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49569, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 06:28:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:49590) +2018/09/16 06:28:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:28:11 ruptelaNet.go:261: Data received(client: [::1]:49590, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 06:28:11 ruptelaNet.go:278: Sent ACK (client: [::1]:49590, IMEI: 352094089712860) +2018/09/16 06:28:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:28:12 ruptelaNet.go:261: Data received(client: [::1]:49590, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 06:28:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:28:12 ruptelaNet.go:278: Sent ACK (client: [::1]:49590, IMEI: 352094089712860) +2018/09/16 06:28:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49590, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 06:28:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:49626) +2018/09/16 06:28:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:28:28 ruptelaNet.go:261: Data received(client: [::1]:49626, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:28:28 ruptelaNet.go:278: Sent ACK (client: [::1]:49626, IMEI: 352094087982671) +2018/09/16 06:28:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:28:31 ruptelaNet.go:261: Data received(client: [::1]:49626, IMEI: 352094087982671) with duration 4.43 s +2018/09/16 06:28:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:28:31 ruptelaNet.go:278: Sent ACK (client: [::1]:49626, IMEI: 352094087982671) +2018/09/16 06:28:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49626, IMEI: 352094087982671) with duration 6.4 s +2018/09/16 06:28:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:49686) +2018/09/16 06:28:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:28:56 ruptelaNet.go:261: Data received(client: [::1]:49686, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 06:28:56 ruptelaNet.go:278: Sent ACK (client: [::1]:49686, IMEI: 352094087982671) +2018/09/16 06:28:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:28:59 ruptelaNet.go:261: Data received(client: [::1]:49686, IMEI: 352094087982671) with duration 4.1 s +2018/09/16 06:28:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:28:59 ruptelaNet.go:278: Sent ACK (client: [::1]:49686, IMEI: 352094087982671) +2018/09/16 06:29:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49686, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 06:29:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:49718) +2018/09/16 06:29:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:29:10 ruptelaNet.go:261: Data received(client: [::1]:49718, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:29:10 ruptelaNet.go:278: Sent ACK (client: [::1]:49718, IMEI: 352094089712860) +2018/09/16 06:29:12 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:29:12 ruptelaNet.go:261: Data received(client: [::1]:49718, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 06:29:12 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:29:12 ruptelaNet.go:278: Sent ACK (client: [::1]:49718, IMEI: 352094089712860) +2018/09/16 06:29:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49718, IMEI: 352094089712860) with duration 2.67 s +2018/09/16 06:29:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49746) +2018/09/16 06:29:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:29:25 ruptelaNet.go:261: Data received(client: [::1]:49746, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 06:29:25 ruptelaNet.go:278: Sent ACK (client: [::1]:49746, IMEI: 352094087982671) +2018/09/16 06:29:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:29:29 ruptelaNet.go:261: Data received(client: [::1]:49746, IMEI: 352094087982671) with duration 4.5 s +2018/09/16 06:29:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:29:29 ruptelaNet.go:278: Sent ACK (client: [::1]:49746, IMEI: 352094087982671) +2018/09/16 06:29:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49746, IMEI: 352094087982671) with duration 6.56 s +2018/09/16 06:29:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:49808) +2018/09/16 06:29:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:29:54 ruptelaNet.go:261: Data received(client: [::1]:49808, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 06:29:54 ruptelaNet.go:278: Sent ACK (client: [::1]:49808, IMEI: 352094087982671) +2018/09/16 06:29:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:29:57 ruptelaNet.go:261: Data received(client: [::1]:49808, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 06:29:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:29:57 ruptelaNet.go:278: Sent ACK (client: [::1]:49808, IMEI: 352094087982671) +2018/09/16 06:30:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49808, IMEI: 352094087982671) with duration 6.1 s +2018/09/16 06:30:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:49843) +2018/09/16 06:30:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:30:11 ruptelaNet.go:261: Data received(client: [::1]:49843, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:30:11 ruptelaNet.go:278: Sent ACK (client: [::1]:49843, IMEI: 352094089712860) +2018/09/16 06:30:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:30:13 ruptelaNet.go:261: Data received(client: [::1]:49843, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:30:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:30:13 ruptelaNet.go:278: Sent ACK (client: [::1]:49843, IMEI: 352094089712860) +2018/09/16 06:30:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49843, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 06:30:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:49868) +2018/09/16 06:30:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:30:24 ruptelaNet.go:261: Data received(client: [::1]:49868, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:30:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49868, IMEI: 352094087982671) +2018/09/16 06:30:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:30:27 ruptelaNet.go:261: Data received(client: [::1]:49868, IMEI: 352094087982671) with duration 4.82 s +2018/09/16 06:30:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:30:27 ruptelaNet.go:278: Sent ACK (client: [::1]:49868, IMEI: 352094087982671) +2018/09/16 06:30:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49868, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 06:30:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:49934) +2018/09/16 06:30:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:30:53 ruptelaNet.go:261: Data received(client: [::1]:49934, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 06:30:53 ruptelaNet.go:278: Sent ACK (client: [::1]:49934, IMEI: 352094087982671) +2018/09/16 06:30:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:30:56 ruptelaNet.go:261: Data received(client: [::1]:49934, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:30:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:30:56 ruptelaNet.go:278: Sent ACK (client: [::1]:49934, IMEI: 352094087982671) +2018/09/16 06:30:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49934, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:31:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:49974) +2018/09/16 06:31:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:31:11 ruptelaNet.go:261: Data received(client: [::1]:49974, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:31:11 ruptelaNet.go:278: Sent ACK (client: [::1]:49974, IMEI: 352094089712860) +2018/09/16 06:31:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:31:13 ruptelaNet.go:261: Data received(client: [::1]:49974, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 06:31:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:31:13 ruptelaNet.go:278: Sent ACK (client: [::1]:49974, IMEI: 352094089712860) +2018/09/16 06:31:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49974, IMEI: 352094089712860) with duration 2.99 s +2018/09/16 06:31:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:49992) +2018/09/16 06:31:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:31:22 ruptelaNet.go:261: Data received(client: [::1]:49992, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:31:22 ruptelaNet.go:278: Sent ACK (client: [::1]:49992, IMEI: 352094087982671) +2018/09/16 06:31:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:31:26 ruptelaNet.go:261: Data received(client: [::1]:49992, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 06:31:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:31:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49992, IMEI: 352094087982671) +2018/09/16 06:31:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49992, IMEI: 352094087982671) with duration 6.66 s +2018/09/16 06:31:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:50061) +2018/09/16 06:31:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:31:52 ruptelaNet.go:261: Data received(client: [::1]:50061, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:31:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50061, IMEI: 352094087982671) +2018/09/16 06:31:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:31:54 ruptelaNet.go:261: Data received(client: [::1]:50061, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 06:31:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:31:54 ruptelaNet.go:278: Sent ACK (client: [::1]:50061, IMEI: 352094087982671) +2018/09/16 06:31:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50061, IMEI: 352094087982671) with duration 6.08 s +2018/09/16 06:32:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50104) +2018/09/16 06:32:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:32:11 ruptelaNet.go:261: Data received(client: [::1]:50104, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:32:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50104, IMEI: 352094089712860) +2018/09/16 06:32:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:32:13 ruptelaNet.go:261: Data received(client: [::1]:50104, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 06:32:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:32:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50104, IMEI: 352094089712860) +2018/09/16 06:32:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50104, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 06:32:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:50120) +2018/09/16 06:32:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:32:20 ruptelaNet.go:261: Data received(client: [::1]:50120, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:32:20 ruptelaNet.go:278: Sent ACK (client: [::1]:50120, IMEI: 352094087982671) +2018/09/16 06:32:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:32:23 ruptelaNet.go:261: Data received(client: [::1]:50120, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:32:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:32:23 ruptelaNet.go:278: Sent ACK (client: [::1]:50120, IMEI: 352094087982671) +2018/09/16 06:32:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50120, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 06:32:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:50185) +2018/09/16 06:32:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:32:49 ruptelaNet.go:261: Data received(client: [::1]:50185, IMEI: 352094087982671) with duration 0.01 s +2018/09/16 06:32:49 ruptelaNet.go:278: Sent ACK (client: [::1]:50185, IMEI: 352094087982671) +2018/09/16 06:32:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:32:52 ruptelaNet.go:261: Data received(client: [::1]:50185, IMEI: 352094087982671) with duration 2.86 s +2018/09/16 06:32:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:32:52 ruptelaNet.go:278: Sent ACK (client: [::1]:50185, IMEI: 352094087982671) +2018/09/16 06:32:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50185, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 06:33:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50228) +2018/09/16 06:33:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:33:11 ruptelaNet.go:261: Data received(client: [::1]:50228, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:33:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50228, IMEI: 352094089712860) +2018/09/16 06:33:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:33:13 ruptelaNet.go:261: Data received(client: [::1]:50228, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:33:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:33:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50228, IMEI: 352094089712860) +2018/09/16 06:33:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50228, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 06:33:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:50239) +2018/09/16 06:33:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:33:18 ruptelaNet.go:261: Data received(client: [::1]:50239, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 06:33:18 ruptelaNet.go:278: Sent ACK (client: [::1]:50239, IMEI: 352094087982671) +2018/09/16 06:33:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:33:21 ruptelaNet.go:261: Data received(client: [::1]:50239, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 06:33:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:33:21 ruptelaNet.go:278: Sent ACK (client: [::1]:50239, IMEI: 352094087982671) +2018/09/16 06:33:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50239, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 06:33:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:50304) +2018/09/16 06:33:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:33:48 ruptelaNet.go:261: Data received(client: [::1]:50304, IMEI: 352094087982671) with duration 0.84 s +2018/09/16 06:33:48 ruptelaNet.go:278: Sent ACK (client: [::1]:50304, IMEI: 352094087982671) +2018/09/16 06:33:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:33:50 ruptelaNet.go:261: Data received(client: [::1]:50304, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 06:33:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:33:50 ruptelaNet.go:278: Sent ACK (client: [::1]:50304, IMEI: 352094087982671) +2018/09/16 06:33:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50304, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 06:34:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50354) +2018/09/16 06:34:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:34:11 ruptelaNet.go:261: Data received(client: [::1]:50354, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:34:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50354, IMEI: 352094089712860) +2018/09/16 06:34:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:34:13 ruptelaNet.go:261: Data received(client: [::1]:50354, IMEI: 352094089712860) with duration 1.88 s +2018/09/16 06:34:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:34:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50354, IMEI: 352094089712860) +2018/09/16 06:34:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50354, IMEI: 352094089712860) with duration 2.6 s +2018/09/16 06:34:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:50365) +2018/09/16 06:34:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:34:17 ruptelaNet.go:261: Data received(client: [::1]:50365, IMEI: 352094087982671) with duration 1.84 s +2018/09/16 06:34:17 ruptelaNet.go:278: Sent ACK (client: [::1]:50365, IMEI: 352094087982671) +2018/09/16 06:34:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:34:20 ruptelaNet.go:261: Data received(client: [::1]:50365, IMEI: 352094087982671) with duration 4.77 s +2018/09/16 06:34:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:34:20 ruptelaNet.go:278: Sent ACK (client: [::1]:50365, IMEI: 352094087982671) +2018/09/16 06:34:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50365, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 06:34:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:50418) +2018/09/16 06:34:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:34:46 ruptelaNet.go:261: Data received(client: [::1]:50418, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 06:34:46 ruptelaNet.go:278: Sent ACK (client: [::1]:50418, IMEI: 352094087982671) +2018/09/16 06:34:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:34:49 ruptelaNet.go:261: Data received(client: [::1]:50418, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:34:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:34:49 ruptelaNet.go:278: Sent ACK (client: [::1]:50418, IMEI: 352094087982671) +2018/09/16 06:34:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50418, IMEI: 352094087982671) with duration 6.38 s +2018/09/16 06:35:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50467) +2018/09/16 06:35:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:35:11 ruptelaNet.go:261: Data received(client: [::1]:50467, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:35:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50467, IMEI: 352094089712860) +2018/09/16 06:35:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:35:13 ruptelaNet.go:261: Data received(client: [::1]:50467, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:35:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:35:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50467, IMEI: 352094089712860) +2018/09/16 06:35:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50467, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 06:35:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:50478) +2018/09/16 06:35:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:35:15 ruptelaNet.go:261: Data received(client: [::1]:50478, IMEI: 352094087982671) with duration 0 s +2018/09/16 06:35:15 ruptelaNet.go:278: Sent ACK (client: [::1]:50478, IMEI: 352094087982671) +2018/09/16 06:35:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:35:18 ruptelaNet.go:261: Data received(client: [::1]:50478, IMEI: 352094087982671) with duration 2.87 s +2018/09/16 06:35:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:35:18 ruptelaNet.go:278: Sent ACK (client: [::1]:50478, IMEI: 352094087982671) +2018/09/16 06:35:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50478, IMEI: 352094087982671) with duration 5.02 s +2018/09/16 06:35:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:50535) +2018/09/16 06:35:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:35:45 ruptelaNet.go:261: Data received(client: [::1]:50535, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 06:35:45 ruptelaNet.go:278: Sent ACK (client: [::1]:50535, IMEI: 352094087982671) +2018/09/16 06:35:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:35:48 ruptelaNet.go:261: Data received(client: [::1]:50535, IMEI: 352094087982671) with duration 4.47 s +2018/09/16 06:35:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:35:48 ruptelaNet.go:278: Sent ACK (client: [::1]:50535, IMEI: 352094087982671) +2018/09/16 06:35:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50535, IMEI: 352094087982671) with duration 6.72 s +2018/09/16 06:36:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50591) +2018/09/16 06:36:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:36:11 ruptelaNet.go:261: Data received(client: [::1]:50591, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:36:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50591, IMEI: 352094089712860) +2018/09/16 06:36:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:50596) +2018/09/16 06:36:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:36:13 ruptelaNet.go:261: Data received(client: [::1]:50591, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 06:36:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:36:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50591, IMEI: 352094089712860) +2018/09/16 06:36:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:36:13 ruptelaNet.go:261: Data received(client: [::1]:50596, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 06:36:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50596, IMEI: 352094087982671) +2018/09/16 06:36:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50591, IMEI: 352094089712860) with duration 3.11 s +2018/09/16 06:36:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:36:18 ruptelaNet.go:261: Data received(client: [::1]:50596, IMEI: 352094087982671) with duration 5.64 s +2018/09/16 06:36:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:36:18 ruptelaNet.go:278: Sent ACK (client: [::1]:50596, IMEI: 352094087982671) +2018/09/16 06:36:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50596, IMEI: 352094087982671) with duration 7.68 s +2018/09/16 06:36:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:50655) +2018/09/16 06:36:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:36:45 ruptelaNet.go:261: Data received(client: [::1]:50655, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 06:36:45 ruptelaNet.go:278: Sent ACK (client: [::1]:50655, IMEI: 352094087982671) +2018/09/16 06:36:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:36:47 ruptelaNet.go:261: Data received(client: [::1]:50655, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 06:36:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:36:47 ruptelaNet.go:278: Sent ACK (client: [::1]:50655, IMEI: 352094087982671) +2018/09/16 06:36:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50655, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:37:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50710) +2018/09/16 06:37:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:37:11 ruptelaNet.go:261: Data received(client: [::1]:50710, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:37:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50710, IMEI: 352094089712860) +2018/09/16 06:37:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:50711) +2018/09/16 06:37:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:37:13 ruptelaNet.go:261: Data received(client: [::1]:50710, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:37:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:37:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50710, IMEI: 352094089712860) +2018/09/16 06:37:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:37:13 ruptelaNet.go:261: Data received(client: [::1]:50711, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:37:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50711, IMEI: 352094087982671) +2018/09/16 06:37:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50710, IMEI: 352094089712860) with duration 2.63 s +2018/09/16 06:37:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:37:16 ruptelaNet.go:261: Data received(client: [::1]:50711, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 06:37:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:37:16 ruptelaNet.go:278: Sent ACK (client: [::1]:50711, IMEI: 352094087982671) +2018/09/16 06:37:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50711, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 06:37:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:50768) +2018/09/16 06:37:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:37:42 ruptelaNet.go:261: Data received(client: [::1]:50768, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 06:37:42 ruptelaNet.go:278: Sent ACK (client: [::1]:50768, IMEI: 352094087982671) +2018/09/16 06:37:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:37:45 ruptelaNet.go:261: Data received(client: [::1]:50768, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:37:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:37:45 ruptelaNet.go:278: Sent ACK (client: [::1]:50768, IMEI: 352094087982671) +2018/09/16 06:37:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50768, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 06:38:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:50834) +2018/09/16 06:38:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50835) +2018/09/16 06:38:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:38:11 ruptelaNet.go:261: Data received(client: [::1]:50835, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:38:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50835, IMEI: 352094089712860) +2018/09/16 06:38:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:38:12 ruptelaNet.go:261: Data received(client: [::1]:50834, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:38:12 ruptelaNet.go:278: Sent ACK (client: [::1]:50834, IMEI: 352094087982671) +2018/09/16 06:38:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:38:13 ruptelaNet.go:261: Data received(client: [::1]:50835, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:38:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:38:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50835, IMEI: 352094089712860) +2018/09/16 06:38:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50835, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:38:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:38:15 ruptelaNet.go:261: Data received(client: [::1]:50834, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 06:38:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:38:15 ruptelaNet.go:278: Sent ACK (client: [::1]:50834, IMEI: 352094087982671) +2018/09/16 06:38:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50834, IMEI: 352094087982671) with duration 6.49 s +2018/09/16 06:38:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:50896) +2018/09/16 06:38:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:38:41 ruptelaNet.go:261: Data received(client: [::1]:50896, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 06:38:41 ruptelaNet.go:278: Sent ACK (client: [::1]:50896, IMEI: 352094087982671) +2018/09/16 06:38:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:38:43 ruptelaNet.go:261: Data received(client: [::1]:50896, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 06:38:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:38:43 ruptelaNet.go:278: Sent ACK (client: [::1]:50896, IMEI: 352094087982671) +2018/09/16 06:38:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50896, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 06:39:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:50962) +2018/09/16 06:39:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:39:09 ruptelaNet.go:261: Data received(client: [::1]:50962, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:39:09 ruptelaNet.go:278: Sent ACK (client: [::1]:50962, IMEI: 352094087982671) +2018/09/16 06:39:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:50968) +2018/09/16 06:39:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:39:11 ruptelaNet.go:261: Data received(client: [::1]:50968, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:39:11 ruptelaNet.go:278: Sent ACK (client: [::1]:50968, IMEI: 352094089712860) +2018/09/16 06:39:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:39:12 ruptelaNet.go:261: Data received(client: [::1]:50962, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 06:39:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:39:12 ruptelaNet.go:278: Sent ACK (client: [::1]:50962, IMEI: 352094087982671) +2018/09/16 06:39:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:39:13 ruptelaNet.go:261: Data received(client: [::1]:50968, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:39:13 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:39:13 ruptelaNet.go:278: Sent ACK (client: [::1]:50968, IMEI: 352094089712860) +2018/09/16 06:39:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50968, IMEI: 352094089712860) with duration 2.64 s +2018/09/16 06:39:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50962, IMEI: 352094087982671) with duration 8.16 s +2018/09/16 06:39:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:51017) +2018/09/16 06:39:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:39:38 ruptelaNet.go:261: Data received(client: [::1]:51017, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:39:38 ruptelaNet.go:278: Sent ACK (client: [::1]:51017, IMEI: 352094087982671) +2018/09/16 06:39:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:39:41 ruptelaNet.go:261: Data received(client: [::1]:51017, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 06:39:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:39:41 ruptelaNet.go:278: Sent ACK (client: [::1]:51017, IMEI: 352094087982671) +2018/09/16 06:39:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51017, IMEI: 352094087982671) with duration 5.74 s +2018/09/16 06:40:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:51077) +2018/09/16 06:40:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:40:07 ruptelaNet.go:261: Data received(client: [::1]:51077, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 06:40:07 ruptelaNet.go:278: Sent ACK (client: [::1]:51077, IMEI: 352094087982671) +2018/09/16 06:40:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:40:10 ruptelaNet.go:261: Data received(client: [::1]:51077, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 06:40:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:40:10 ruptelaNet.go:278: Sent ACK (client: [::1]:51077, IMEI: 352094087982671) +2018/09/16 06:40:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:51087) +2018/09/16 06:40:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:40:11 ruptelaNet.go:261: Data received(client: [::1]:51087, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:40:11 ruptelaNet.go:278: Sent ACK (client: [::1]:51087, IMEI: 352094089712860) +2018/09/16 06:40:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51077, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 06:40:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:40:14 ruptelaNet.go:261: Data received(client: [::1]:51087, IMEI: 352094089712860) with duration 2.11 s +2018/09/16 06:40:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:40:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51087, IMEI: 352094089712860) +2018/09/16 06:40:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51087, IMEI: 352094089712860) with duration 2.93 s +2018/09/16 06:40:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:51134) +2018/09/16 06:40:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:40:37 ruptelaNet.go:261: Data received(client: [::1]:51134, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 06:40:37 ruptelaNet.go:278: Sent ACK (client: [::1]:51134, IMEI: 352094087982671) +2018/09/16 06:40:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:40:39 ruptelaNet.go:261: Data received(client: [::1]:51134, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:40:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:40:39 ruptelaNet.go:278: Sent ACK (client: [::1]:51134, IMEI: 352094087982671) +2018/09/16 06:40:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51134, IMEI: 352094087982671) with duration 6.61 s +2018/09/16 06:41:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:51194) +2018/09/16 06:41:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:41:06 ruptelaNet.go:261: Data received(client: [::1]:51194, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:41:06 ruptelaNet.go:278: Sent ACK (client: [::1]:51194, IMEI: 352094087982671) +2018/09/16 06:41:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:41:08 ruptelaNet.go:261: Data received(client: [::1]:51194, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:41:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:41:08 ruptelaNet.go:278: Sent ACK (client: [::1]:51194, IMEI: 352094087982671) +2018/09/16 06:41:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51194, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:41:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51214) +2018/09/16 06:41:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:41:12 ruptelaNet.go:261: Data received(client: [::1]:51214, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:41:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51214, IMEI: 352094089712860) +2018/09/16 06:41:13 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:41:13 ruptelaNet.go:261: Data received(client: [::1]:51214, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 06:41:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:41:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51214, IMEI: 352094089712860) +2018/09/16 06:41:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51214, IMEI: 352094089712860) with duration 2.75 s +2018/09/16 06:41:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:51258) +2018/09/16 06:41:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:41:34 ruptelaNet.go:261: Data received(client: [::1]:51258, IMEI: 352094087982671) with duration 0.81 s +2018/09/16 06:41:34 ruptelaNet.go:278: Sent ACK (client: [::1]:51258, IMEI: 352094087982671) +2018/09/16 06:41:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:41:37 ruptelaNet.go:261: Data received(client: [::1]:51258, IMEI: 352094087982671) with duration 3.17 s +2018/09/16 06:41:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:41:37 ruptelaNet.go:278: Sent ACK (client: [::1]:51258, IMEI: 352094087982671) +2018/09/16 06:41:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51258, IMEI: 352094087982671) with duration 5.42 s +2018/09/16 06:42:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:51314) +2018/09/16 06:42:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:42:02 ruptelaNet.go:261: Data received(client: [::1]:51314, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:42:02 ruptelaNet.go:278: Sent ACK (client: [::1]:51314, IMEI: 352094087982671) +2018/09/16 06:42:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:42:05 ruptelaNet.go:261: Data received(client: [::1]:51314, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 06:42:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:42:05 ruptelaNet.go:278: Sent ACK (client: [::1]:51314, IMEI: 352094087982671) +2018/09/16 06:42:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51314, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:42:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51337) +2018/09/16 06:42:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:42:12 ruptelaNet.go:261: Data received(client: [::1]:51337, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:42:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51337, IMEI: 352094089712860) +2018/09/16 06:42:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:42:14 ruptelaNet.go:261: Data received(client: [::1]:51337, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 06:42:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:42:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51337, IMEI: 352094089712860) +2018/09/16 06:42:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51337, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 06:42:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:51374) +2018/09/16 06:42:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:42:31 ruptelaNet.go:261: Data received(client: [::1]:51374, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:42:31 ruptelaNet.go:278: Sent ACK (client: [::1]:51374, IMEI: 352094087982671) +2018/09/16 06:42:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:42:34 ruptelaNet.go:261: Data received(client: [::1]:51374, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:42:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:42:34 ruptelaNet.go:278: Sent ACK (client: [::1]:51374, IMEI: 352094087982671) +2018/09/16 06:42:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51374, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:42:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:51427) +2018/09/16 06:43:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:43:00 ruptelaNet.go:261: Data received(client: [::1]:51427, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 06:43:00 ruptelaNet.go:278: Sent ACK (client: [::1]:51427, IMEI: 352094087982671) +2018/09/16 06:43:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:43:03 ruptelaNet.go:261: Data received(client: [::1]:51427, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:43:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:43:03 ruptelaNet.go:278: Sent ACK (client: [::1]:51427, IMEI: 352094087982671) +2018/09/16 06:43:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51427, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:43:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:51456) +2018/09/16 06:43:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:43:13 ruptelaNet.go:261: Data received(client: [::1]:51456, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:43:13 ruptelaNet.go:278: Sent ACK (client: [::1]:51456, IMEI: 352094089712860) +2018/09/16 06:43:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:43:15 ruptelaNet.go:261: Data received(client: [::1]:51456, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:43:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:43:15 ruptelaNet.go:278: Sent ACK (client: [::1]:51456, IMEI: 352094089712860) +2018/09/16 06:43:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51456, IMEI: 352094089712860) with duration 2.69 s +2018/09/16 06:43:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:51484) +2018/09/16 06:43:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:43:29 ruptelaNet.go:261: Data received(client: [::1]:51484, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 06:43:29 ruptelaNet.go:278: Sent ACK (client: [::1]:51484, IMEI: 352094087982671) +2018/09/16 06:43:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:43:32 ruptelaNet.go:261: Data received(client: [::1]:51484, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 06:43:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:43:32 ruptelaNet.go:278: Sent ACK (client: [::1]:51484, IMEI: 352094087982671) +2018/09/16 06:43:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51484, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:43:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:51549) +2018/09/16 06:43:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:43:58 ruptelaNet.go:261: Data received(client: [::1]:51549, IMEI: 352094087982671) with duration 0 s +2018/09/16 06:43:58 ruptelaNet.go:278: Sent ACK (client: [::1]:51549, IMEI: 352094087982671) +2018/09/16 06:44:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:44:01 ruptelaNet.go:261: Data received(client: [::1]:51549, IMEI: 352094087982671) with duration 2.76 s +2018/09/16 06:44:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:44:01 ruptelaNet.go:278: Sent ACK (client: [::1]:51549, IMEI: 352094087982671) +2018/09/16 06:44:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51549, IMEI: 352094087982671) with duration 4.87 s +2018/09/16 06:44:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51575) +2018/09/16 06:44:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:44:12 ruptelaNet.go:261: Data received(client: [::1]:51575, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:44:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51575, IMEI: 352094089712860) +2018/09/16 06:44:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:44:14 ruptelaNet.go:261: Data received(client: [::1]:51575, IMEI: 352094089712860) with duration 1.99 s +2018/09/16 06:44:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:44:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51575, IMEI: 352094089712860) +2018/09/16 06:44:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51575, IMEI: 352094089712860) with duration 2.72 s +2018/09/16 06:44:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:51604) +2018/09/16 06:44:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:44:27 ruptelaNet.go:261: Data received(client: [::1]:51604, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 06:44:27 ruptelaNet.go:278: Sent ACK (client: [::1]:51604, IMEI: 352094087982671) +2018/09/16 06:44:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:44:30 ruptelaNet.go:261: Data received(client: [::1]:51604, IMEI: 352094087982671) with duration 3.7 s +2018/09/16 06:44:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:44:30 ruptelaNet.go:278: Sent ACK (client: [::1]:51604, IMEI: 352094087982671) +2018/09/16 06:44:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51604, IMEI: 352094087982671) with duration 5.74 s +2018/09/16 06:44:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:51665) +2018/09/16 06:44:57 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:44:57 ruptelaNet.go:261: Data received(client: [::1]:51665, IMEI: 352094087982671) with duration 1.3 s +2018/09/16 06:44:57 ruptelaNet.go:278: Sent ACK (client: [::1]:51665, IMEI: 352094087982671) +2018/09/16 06:44:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:44:59 ruptelaNet.go:261: Data received(client: [::1]:51665, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 06:44:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:44:59 ruptelaNet.go:278: Sent ACK (client: [::1]:51665, IMEI: 352094087982671) +2018/09/16 06:45:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51665, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:45:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51702) +2018/09/16 06:45:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:45:12 ruptelaNet.go:261: Data received(client: [::1]:51702, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:45:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51702, IMEI: 352094089712860) +2018/09/16 06:45:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:45:14 ruptelaNet.go:261: Data received(client: [::1]:51702, IMEI: 352094089712860) with duration 2.27 s +2018/09/16 06:45:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:45:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51702, IMEI: 352094089712860) +2018/09/16 06:45:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51702, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 06:45:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:51723) +2018/09/16 06:45:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:45:25 ruptelaNet.go:261: Data received(client: [::1]:51723, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:45:25 ruptelaNet.go:278: Sent ACK (client: [::1]:51723, IMEI: 352094087982671) +2018/09/16 06:45:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:45:28 ruptelaNet.go:261: Data received(client: [::1]:51723, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:45:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:45:28 ruptelaNet.go:278: Sent ACK (client: [::1]:51723, IMEI: 352094087982671) +2018/09/16 06:45:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51723, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:45:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:51779) +2018/09/16 06:45:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:45:54 ruptelaNet.go:261: Data received(client: [::1]:51779, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:45:54 ruptelaNet.go:278: Sent ACK (client: [::1]:51779, IMEI: 352094087982671) +2018/09/16 06:45:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:45:57 ruptelaNet.go:261: Data received(client: [::1]:51779, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 06:45:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:45:57 ruptelaNet.go:278: Sent ACK (client: [::1]:51779, IMEI: 352094087982671) +2018/09/16 06:45:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51779, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 06:46:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51824) +2018/09/16 06:46:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:46:12 ruptelaNet.go:261: Data received(client: [::1]:51824, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:46:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51824, IMEI: 352094089712860) +2018/09/16 06:46:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:46:14 ruptelaNet.go:261: Data received(client: [::1]:51824, IMEI: 352094089712860) with duration 1.98 s +2018/09/16 06:46:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:46:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51824, IMEI: 352094089712860) +2018/09/16 06:46:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51824, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:46:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:51845) +2018/09/16 06:46:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:46:23 ruptelaNet.go:261: Data received(client: [::1]:51845, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:46:23 ruptelaNet.go:278: Sent ACK (client: [::1]:51845, IMEI: 352094087982671) +2018/09/16 06:46:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:46:26 ruptelaNet.go:261: Data received(client: [::1]:51845, IMEI: 352094087982671) with duration 3.72 s +2018/09/16 06:46:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:46:26 ruptelaNet.go:278: Sent ACK (client: [::1]:51845, IMEI: 352094087982671) +2018/09/16 06:46:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51845, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:46:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:51899) +2018/09/16 06:46:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:46:52 ruptelaNet.go:261: Data received(client: [::1]:51899, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:46:52 ruptelaNet.go:278: Sent ACK (client: [::1]:51899, IMEI: 352094087982671) +2018/09/16 06:46:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:46:55 ruptelaNet.go:261: Data received(client: [::1]:51899, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:46:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:46:55 ruptelaNet.go:278: Sent ACK (client: [::1]:51899, IMEI: 352094087982671) +2018/09/16 06:46:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51899, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 06:47:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:51944) +2018/09/16 06:47:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:47:12 ruptelaNet.go:261: Data received(client: [::1]:51944, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:47:12 ruptelaNet.go:278: Sent ACK (client: [::1]:51944, IMEI: 352094089712860) +2018/09/16 06:47:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:47:14 ruptelaNet.go:261: Data received(client: [::1]:51944, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:47:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:47:14 ruptelaNet.go:278: Sent ACK (client: [::1]:51944, IMEI: 352094089712860) +2018/09/16 06:47:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51944, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:47:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:51964) +2018/09/16 06:47:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:47:21 ruptelaNet.go:261: Data received(client: [::1]:51964, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:47:21 ruptelaNet.go:278: Sent ACK (client: [::1]:51964, IMEI: 352094087982671) +2018/09/16 06:47:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:47:25 ruptelaNet.go:261: Data received(client: [::1]:51964, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 06:47:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:47:25 ruptelaNet.go:278: Sent ACK (client: [::1]:51964, IMEI: 352094087982671) +2018/09/16 06:47:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:51964, IMEI: 352094087982671) with duration 6.32 s +2018/09/16 06:47:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:52023) +2018/09/16 06:47:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:47:50 ruptelaNet.go:261: Data received(client: [::1]:52023, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 06:47:50 ruptelaNet.go:278: Sent ACK (client: [::1]:52023, IMEI: 352094087982671) +2018/09/16 06:47:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:47:53 ruptelaNet.go:261: Data received(client: [::1]:52023, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 06:47:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:47:53 ruptelaNet.go:278: Sent ACK (client: [::1]:52023, IMEI: 352094087982671) +2018/09/16 06:47:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52023, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 06:48:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52071) +2018/09/16 06:48:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:48:13 ruptelaNet.go:261: Data received(client: [::1]:52071, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:48:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52071, IMEI: 352094089712860) +2018/09/16 06:48:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:48:15 ruptelaNet.go:261: Data received(client: [::1]:52071, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:48:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:48:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52071, IMEI: 352094089712860) +2018/09/16 06:48:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52071, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 06:48:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:52083) +2018/09/16 06:48:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:48:19 ruptelaNet.go:261: Data received(client: [::1]:52083, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 06:48:19 ruptelaNet.go:278: Sent ACK (client: [::1]:52083, IMEI: 352094087982671) +2018/09/16 06:48:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:48:22 ruptelaNet.go:261: Data received(client: [::1]:52083, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 06:48:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:48:22 ruptelaNet.go:278: Sent ACK (client: [::1]:52083, IMEI: 352094087982671) +2018/09/16 06:48:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52083, IMEI: 352094087982671) with duration 5.76 s +2018/09/16 06:48:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:52149) +2018/09/16 06:48:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:48:48 ruptelaNet.go:261: Data received(client: [::1]:52149, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:48:48 ruptelaNet.go:278: Sent ACK (client: [::1]:52149, IMEI: 352094087982671) +2018/09/16 06:48:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:48:51 ruptelaNet.go:261: Data received(client: [::1]:52149, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:48:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:48:51 ruptelaNet.go:278: Sent ACK (client: [::1]:52149, IMEI: 352094087982671) +2018/09/16 06:48:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52149, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:49:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:52205) +2018/09/16 06:49:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:49:12 ruptelaNet.go:261: Data received(client: [::1]:52205, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:49:12 ruptelaNet.go:278: Sent ACK (client: [::1]:52205, IMEI: 352094089712860) +2018/09/16 06:49:14 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:49:14 ruptelaNet.go:261: Data received(client: [::1]:52205, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 06:49:14 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:49:14 ruptelaNet.go:278: Sent ACK (client: [::1]:52205, IMEI: 352094089712860) +2018/09/16 06:49:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52205, IMEI: 352094089712860) with duration 2.84 s +2018/09/16 06:49:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:52216) +2018/09/16 06:49:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:49:18 ruptelaNet.go:261: Data received(client: [::1]:52216, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:49:18 ruptelaNet.go:278: Sent ACK (client: [::1]:52216, IMEI: 352094087982671) +2018/09/16 06:49:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:49:20 ruptelaNet.go:261: Data received(client: [::1]:52216, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 06:49:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:49:20 ruptelaNet.go:278: Sent ACK (client: [::1]:52216, IMEI: 352094087982671) +2018/09/16 06:49:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52216, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 06:49:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:52271) +2018/09/16 06:49:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:49:47 ruptelaNet.go:261: Data received(client: [::1]:52271, IMEI: 352094087982671) with duration 2.01 s +2018/09/16 06:49:47 ruptelaNet.go:278: Sent ACK (client: [::1]:52271, IMEI: 352094087982671) +2018/09/16 06:49:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:49:50 ruptelaNet.go:261: Data received(client: [::1]:52271, IMEI: 352094087982671) with duration 4.86 s +2018/09/16 06:49:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:49:50 ruptelaNet.go:278: Sent ACK (client: [::1]:52271, IMEI: 352094087982671) +2018/09/16 06:49:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52271, IMEI: 352094087982671) with duration 6.97 s +2018/09/16 06:50:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52331) +2018/09/16 06:50:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:50:13 ruptelaNet.go:261: Data received(client: [::1]:52331, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:50:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52331, IMEI: 352094089712860) +2018/09/16 06:50:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:50:15 ruptelaNet.go:261: Data received(client: [::1]:52331, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 06:50:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:50:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52331, IMEI: 352094089712860) +2018/09/16 06:50:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:52337) +2018/09/16 06:50:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52331, IMEI: 352094089712860) with duration 3.26 s +2018/09/16 06:50:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:50:17 ruptelaNet.go:261: Data received(client: [::1]:52337, IMEI: 352094087982671) with duration 1.31 s +2018/09/16 06:50:17 ruptelaNet.go:278: Sent ACK (client: [::1]:52337, IMEI: 352094087982671) +2018/09/16 06:50:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:50:19 ruptelaNet.go:261: Data received(client: [::1]:52337, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 06:50:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:50:19 ruptelaNet.go:278: Sent ACK (client: [::1]:52337, IMEI: 352094087982671) +2018/09/16 06:50:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52337, IMEI: 352094087982671) with duration 6.25 s +2018/09/16 06:50:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:52394) +2018/09/16 06:50:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:50:46 ruptelaNet.go:261: Data received(client: [::1]:52394, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 06:50:46 ruptelaNet.go:278: Sent ACK (client: [::1]:52394, IMEI: 352094087982671) +2018/09/16 06:50:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:50:48 ruptelaNet.go:261: Data received(client: [::1]:52394, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 06:50:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:50:48 ruptelaNet.go:278: Sent ACK (client: [::1]:52394, IMEI: 352094087982671) +2018/09/16 06:50:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52394, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 06:51:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52455) +2018/09/16 06:51:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:51:13 ruptelaNet.go:261: Data received(client: [::1]:52455, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:51:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52455, IMEI: 352094089712860) +2018/09/16 06:51:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52456) +2018/09/16 06:51:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:51:14 ruptelaNet.go:261: Data received(client: [::1]:52456, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 06:51:14 ruptelaNet.go:278: Sent ACK (client: [::1]:52456, IMEI: 352094087982671) +2018/09/16 06:51:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:51:15 ruptelaNet.go:261: Data received(client: [::1]:52455, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 06:51:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:51:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52455, IMEI: 352094089712860) +2018/09/16 06:51:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52455, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 06:51:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:51:17 ruptelaNet.go:261: Data received(client: [::1]:52456, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:51:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:51:17 ruptelaNet.go:278: Sent ACK (client: [::1]:52456, IMEI: 352094087982671) +2018/09/16 06:51:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52456, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 06:51:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:52515) +2018/09/16 06:51:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:51:43 ruptelaNet.go:261: Data received(client: [::1]:52515, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:51:43 ruptelaNet.go:278: Sent ACK (client: [::1]:52515, IMEI: 352094087982671) +2018/09/16 06:51:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:51:46 ruptelaNet.go:261: Data received(client: [::1]:52515, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 06:51:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:51:46 ruptelaNet.go:278: Sent ACK (client: [::1]:52515, IMEI: 352094087982671) +2018/09/16 06:51:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52515, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 06:52:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:52576) +2018/09/16 06:52:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:52:12 ruptelaNet.go:261: Data received(client: [::1]:52576, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 06:52:12 ruptelaNet.go:278: Sent ACK (client: [::1]:52576, IMEI: 352094087982671) +2018/09/16 06:52:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52582) +2018/09/16 06:52:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:52:13 ruptelaNet.go:261: Data received(client: [::1]:52582, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:52:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52582, IMEI: 352094089712860) +2018/09/16 06:52:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:52:15 ruptelaNet.go:261: Data received(client: [::1]:52582, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 06:52:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:52:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52582, IMEI: 352094089712860) +2018/09/16 06:52:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:52:15 ruptelaNet.go:261: Data received(client: [::1]:52576, IMEI: 352094087982671) with duration 3.66 s +2018/09/16 06:52:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:52:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52576, IMEI: 352094087982671) +2018/09/16 06:52:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52582, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 06:52:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52576, IMEI: 352094087982671) with duration 5.81 s +2018/09/16 06:52:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:52640) +2018/09/16 06:52:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:52:42 ruptelaNet.go:261: Data received(client: [::1]:52640, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 06:52:42 ruptelaNet.go:278: Sent ACK (client: [::1]:52640, IMEI: 352094087982671) +2018/09/16 06:52:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:52:44 ruptelaNet.go:261: Data received(client: [::1]:52640, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:52:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:52:44 ruptelaNet.go:278: Sent ACK (client: [::1]:52640, IMEI: 352094087982671) +2018/09/16 06:52:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52640, IMEI: 352094087982671) with duration 6.96 s +2018/09/16 06:53:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:52695) +2018/09/16 06:53:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:53:10 ruptelaNet.go:261: Data received(client: [::1]:52695, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:53:10 ruptelaNet.go:278: Sent ACK (client: [::1]:52695, IMEI: 352094087982671) +2018/09/16 06:53:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52705) +2018/09/16 06:53:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:53:13 ruptelaNet.go:261: Data received(client: [::1]:52705, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:53:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52705, IMEI: 352094089712860) +2018/09/16 06:53:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:53:14 ruptelaNet.go:261: Data received(client: [::1]:52695, IMEI: 352094087982671) with duration 4.17 s +2018/09/16 06:53:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:53:14 ruptelaNet.go:278: Sent ACK (client: [::1]:52695, IMEI: 352094087982671) +2018/09/16 06:53:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:53:15 ruptelaNet.go:261: Data received(client: [::1]:52705, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 06:53:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:53:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52705, IMEI: 352094089712860) +2018/09/16 06:53:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52695, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 06:53:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52705, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 06:53:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:52758) +2018/09/16 06:53:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:53:39 ruptelaNet.go:261: Data received(client: [::1]:52758, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 06:53:39 ruptelaNet.go:278: Sent ACK (client: [::1]:52758, IMEI: 352094087982671) +2018/09/16 06:53:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:53:43 ruptelaNet.go:261: Data received(client: [::1]:52758, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 06:53:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:53:43 ruptelaNet.go:278: Sent ACK (client: [::1]:52758, IMEI: 352094087982671) +2018/09/16 06:53:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52758, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 06:54:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:52823) +2018/09/16 06:54:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:54:08 ruptelaNet.go:261: Data received(client: [::1]:52823, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 06:54:08 ruptelaNet.go:278: Sent ACK (client: [::1]:52823, IMEI: 352094087982671) +2018/09/16 06:54:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:54:11 ruptelaNet.go:261: Data received(client: [::1]:52823, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 06:54:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:54:11 ruptelaNet.go:278: Sent ACK (client: [::1]:52823, IMEI: 352094087982671) +2018/09/16 06:54:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52823, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 06:54:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:52839) +2018/09/16 06:54:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:54:15 ruptelaNet.go:261: Data received(client: [::1]:52839, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:54:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52839, IMEI: 352094089712860) +2018/09/16 06:54:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:54:17 ruptelaNet.go:261: Data received(client: [::1]:52839, IMEI: 352094089712860) with duration 2.12 s +2018/09/16 06:54:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:54:17 ruptelaNet.go:278: Sent ACK (client: [::1]:52839, IMEI: 352094089712860) +2018/09/16 06:54:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52839, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 06:54:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:52886) +2018/09/16 06:54:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:54:37 ruptelaNet.go:261: Data received(client: [::1]:52886, IMEI: 352094087982671) with duration 0.81 s +2018/09/16 06:54:37 ruptelaNet.go:278: Sent ACK (client: [::1]:52886, IMEI: 352094087982671) +2018/09/16 06:54:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:54:40 ruptelaNet.go:261: Data received(client: [::1]:52886, IMEI: 352094087982671) with duration 3.26 s +2018/09/16 06:54:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:54:40 ruptelaNet.go:278: Sent ACK (client: [::1]:52886, IMEI: 352094087982671) +2018/09/16 06:54:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52886, IMEI: 352094087982671) with duration 5.42 s +2018/09/16 06:55:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:52935) +2018/09/16 06:55:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:55:05 ruptelaNet.go:261: Data received(client: [::1]:52935, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:55:05 ruptelaNet.go:278: Sent ACK (client: [::1]:52935, IMEI: 352094087982671) +2018/09/16 06:55:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:55:08 ruptelaNet.go:261: Data received(client: [::1]:52935, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:55:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:55:08 ruptelaNet.go:278: Sent ACK (client: [::1]:52935, IMEI: 352094087982671) +2018/09/16 06:55:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52935, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 06:55:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:52955) +2018/09/16 06:55:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:55:13 ruptelaNet.go:261: Data received(client: [::1]:52955, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:55:13 ruptelaNet.go:278: Sent ACK (client: [::1]:52955, IMEI: 352094089712860) +2018/09/16 06:55:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:55:15 ruptelaNet.go:261: Data received(client: [::1]:52955, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 06:55:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:55:15 ruptelaNet.go:278: Sent ACK (client: [::1]:52955, IMEI: 352094089712860) +2018/09/16 06:55:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52955, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 06:55:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:52997) +2018/09/16 06:55:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:55:35 ruptelaNet.go:261: Data received(client: [::1]:52997, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 06:55:35 ruptelaNet.go:278: Sent ACK (client: [::1]:52997, IMEI: 352094087982671) +2018/09/16 06:55:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:55:37 ruptelaNet.go:261: Data received(client: [::1]:52997, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 06:55:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:55:37 ruptelaNet.go:278: Sent ACK (client: [::1]:52997, IMEI: 352094087982671) +2018/09/16 06:55:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52997, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 06:56:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:53058) +2018/09/16 06:56:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:56:04 ruptelaNet.go:261: Data received(client: [::1]:53058, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 06:56:04 ruptelaNet.go:278: Sent ACK (client: [::1]:53058, IMEI: 352094087982671) +2018/09/16 06:56:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:56:07 ruptelaNet.go:261: Data received(client: [::1]:53058, IMEI: 352094087982671) with duration 4.18 s +2018/09/16 06:56:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:56:07 ruptelaNet.go:278: Sent ACK (client: [::1]:53058, IMEI: 352094087982671) +2018/09/16 06:56:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53058, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 06:56:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:53081) +2018/09/16 06:56:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:56:13 ruptelaNet.go:261: Data received(client: [::1]:53081, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:56:13 ruptelaNet.go:278: Sent ACK (client: [::1]:53081, IMEI: 352094089712860) +2018/09/16 06:56:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:56:15 ruptelaNet.go:261: Data received(client: [::1]:53081, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 06:56:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:56:15 ruptelaNet.go:278: Sent ACK (client: [::1]:53081, IMEI: 352094089712860) +2018/09/16 06:56:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53081, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 06:56:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:53122) +2018/09/16 06:56:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:56:33 ruptelaNet.go:261: Data received(client: [::1]:53122, IMEI: 352094087982671) with duration 0.36 s +2018/09/16 06:56:33 ruptelaNet.go:278: Sent ACK (client: [::1]:53122, IMEI: 352094087982671) +2018/09/16 06:56:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:56:36 ruptelaNet.go:261: Data received(client: [::1]:53122, IMEI: 352094087982671) with duration 3.23 s +2018/09/16 06:56:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:56:36 ruptelaNet.go:278: Sent ACK (client: [::1]:53122, IMEI: 352094087982671) +2018/09/16 06:56:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53122, IMEI: 352094087982671) with duration 5.38 s +2018/09/16 06:57:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:53181) +2018/09/16 06:57:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:57:01 ruptelaNet.go:261: Data received(client: [::1]:53181, IMEI: 352094087982671) with duration 1 s +2018/09/16 06:57:01 ruptelaNet.go:278: Sent ACK (client: [::1]:53181, IMEI: 352094087982671) +2018/09/16 06:57:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:57:04 ruptelaNet.go:261: Data received(client: [::1]:53181, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:57:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:57:04 ruptelaNet.go:278: Sent ACK (client: [::1]:53181, IMEI: 352094087982671) +2018/09/16 06:57:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53181, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 06:57:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:53214) +2018/09/16 06:57:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:57:13 ruptelaNet.go:261: Data received(client: [::1]:53214, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:57:13 ruptelaNet.go:278: Sent ACK (client: [::1]:53214, IMEI: 352094089712860) +2018/09/16 06:57:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:57:15 ruptelaNet.go:261: Data received(client: [::1]:53214, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:57:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:57:15 ruptelaNet.go:278: Sent ACK (client: [::1]:53214, IMEI: 352094089712860) +2018/09/16 06:57:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53214, IMEI: 352094089712860) with duration 2.67 s +2018/09/16 06:57:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:53245) +2018/09/16 06:57:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:57:30 ruptelaNet.go:261: Data received(client: [::1]:53245, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 06:57:30 ruptelaNet.go:278: Sent ACK (client: [::1]:53245, IMEI: 352094087982671) +2018/09/16 06:57:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:57:33 ruptelaNet.go:261: Data received(client: [::1]:53245, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:57:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:57:33 ruptelaNet.go:278: Sent ACK (client: [::1]:53245, IMEI: 352094087982671) +2018/09/16 06:57:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53245, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 06:57:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:53303) +2018/09/16 06:58:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:58:00 ruptelaNet.go:261: Data received(client: [::1]:53303, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 06:58:00 ruptelaNet.go:278: Sent ACK (client: [::1]:53303, IMEI: 352094087982671) +2018/09/16 06:58:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:58:03 ruptelaNet.go:261: Data received(client: [::1]:53303, IMEI: 352094087982671) with duration 4.33 s +2018/09/16 06:58:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:58:03 ruptelaNet.go:278: Sent ACK (client: [::1]:53303, IMEI: 352094087982671) +2018/09/16 06:58:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53303, IMEI: 352094087982671) with duration 6.58 s +2018/09/16 06:58:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53337) +2018/09/16 06:58:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:58:14 ruptelaNet.go:261: Data received(client: [::1]:53337, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:58:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53337, IMEI: 352094089712860) +2018/09/16 06:58:16 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:58:16 ruptelaNet.go:261: Data received(client: [::1]:53337, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 06:58:16 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:58:16 ruptelaNet.go:278: Sent ACK (client: [::1]:53337, IMEI: 352094089712860) +2018/09/16 06:58:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53337, IMEI: 352094089712860) with duration 2.71 s +2018/09/16 06:58:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:53360) +2018/09/16 06:58:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:58:28 ruptelaNet.go:261: Data received(client: [::1]:53360, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 06:58:28 ruptelaNet.go:278: Sent ACK (client: [::1]:53360, IMEI: 352094087982671) +2018/09/16 06:58:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:58:31 ruptelaNet.go:261: Data received(client: [::1]:53360, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 06:58:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:58:31 ruptelaNet.go:278: Sent ACK (client: [::1]:53360, IMEI: 352094087982671) +2018/09/16 06:58:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53360, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 06:58:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:53419) +2018/09/16 06:58:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:58:58 ruptelaNet.go:261: Data received(client: [::1]:53419, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 06:58:58 ruptelaNet.go:278: Sent ACK (client: [::1]:53419, IMEI: 352094087982671) +2018/09/16 06:59:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:53427) +2018/09/16 06:59:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:59:00 ruptelaNet.go:261: Data received(client: [::1]:53419, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 06:59:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:59:00 ruptelaNet.go:278: Sent ACK (client: [::1]:53419, IMEI: 352094087982671) +2018/09/16 06:59:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53419, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 06:59:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53456) +2018/09/16 06:59:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:59:14 ruptelaNet.go:261: Data received(client: [::1]:53456, IMEI: 352094089712860) with duration 0 s +2018/09/16 06:59:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53456, IMEI: 352094089712860) +2018/09/16 06:59:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53427, IMEI: 0) with duration 15.53 s +2018/09/16 06:59:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:53462) +2018/09/16 06:59:16 ruptelaNet.go:355: data packet length : 978 +2018/09/16 06:59:16 ruptelaNet.go:261: Data received(client: [::1]:53456, IMEI: 352094089712860) with duration 1.88 s +2018/09/16 06:59:16 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 06:59:16 ruptelaNet.go:278: Sent ACK (client: [::1]:53456, IMEI: 352094089712860) +2018/09/16 06:59:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53456, IMEI: 352094089712860) with duration 2.79 s +2018/09/16 06:59:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:53481) +2018/09/16 06:59:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:59:27 ruptelaNet.go:261: Data received(client: [::1]:53481, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 06:59:27 ruptelaNet.go:278: Sent ACK (client: [::1]:53481, IMEI: 352094087982671) +2018/09/16 06:59:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:59:29 ruptelaNet.go:261: Data received(client: [::1]:53481, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 06:59:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:59:29 ruptelaNet.go:278: Sent ACK (client: [::1]:53481, IMEI: 352094087982671) +2018/09/16 06:59:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53481, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 06:59:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53462, IMEI: 0) with duration 15.46 s +2018/09/16 06:59:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:53538) +2018/09/16 06:59:55 ruptelaNet.go:355: data packet length : 15 +2018/09/16 06:59:55 ruptelaNet.go:261: Data received(client: [::1]:53538, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 06:59:55 ruptelaNet.go:278: Sent ACK (client: [::1]:53538, IMEI: 352094087982671) +2018/09/16 06:59:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 06:59:58 ruptelaNet.go:261: Data received(client: [::1]:53538, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 06:59:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 06:59:58 ruptelaNet.go:278: Sent ACK (client: [::1]:53538, IMEI: 352094087982671) +2018/09/16 07:00:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53538, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 07:00:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53579) +2018/09/16 07:00:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:00:14 ruptelaNet.go:261: Data received(client: [::1]:53579, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:00:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53579, IMEI: 352094089712860) +2018/09/16 07:00:15 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:00:15 ruptelaNet.go:261: Data received(client: [::1]:53579, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 07:00:15 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:00:15 ruptelaNet.go:278: Sent ACK (client: [::1]:53579, IMEI: 352094089712860) +2018/09/16 07:00:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53579, IMEI: 352094089712860) with duration 3.02 s +2018/09/16 07:00:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:53601) +2018/09/16 07:00:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:00:24 ruptelaNet.go:261: Data received(client: [::1]:53601, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 07:00:24 ruptelaNet.go:278: Sent ACK (client: [::1]:53601, IMEI: 352094087982671) +2018/09/16 07:00:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:00:27 ruptelaNet.go:261: Data received(client: [::1]:53601, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 07:00:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:00:27 ruptelaNet.go:278: Sent ACK (client: [::1]:53601, IMEI: 352094087982671) +2018/09/16 07:00:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53601, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 07:00:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:53666) +2018/09/16 07:00:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:00:54 ruptelaNet.go:261: Data received(client: [::1]:53666, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 07:00:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53666, IMEI: 352094087982671) +2018/09/16 07:00:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:00:57 ruptelaNet.go:261: Data received(client: [::1]:53666, IMEI: 352094087982671) with duration 4.07 s +2018/09/16 07:00:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:00:57 ruptelaNet.go:278: Sent ACK (client: [::1]:53666, IMEI: 352094087982671) +2018/09/16 07:00:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53666, IMEI: 352094087982671) with duration 6.41 s +2018/09/16 07:01:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:53710) +2018/09/16 07:01:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:01:15 ruptelaNet.go:261: Data received(client: [::1]:53710, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:01:15 ruptelaNet.go:278: Sent ACK (client: [::1]:53710, IMEI: 352094089712860) +2018/09/16 07:01:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:01:17 ruptelaNet.go:261: Data received(client: [::1]:53710, IMEI: 352094089712860) with duration 2.52 s +2018/09/16 07:01:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:01:17 ruptelaNet.go:278: Sent ACK (client: [::1]:53710, IMEI: 352094089712860) +2018/09/16 07:01:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53710, IMEI: 352094089712860) with duration 3.89 s +2018/09/16 07:01:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:53726) +2018/09/16 07:01:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:01:22 ruptelaNet.go:261: Data received(client: [::1]:53726, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 07:01:22 ruptelaNet.go:278: Sent ACK (client: [::1]:53726, IMEI: 352094087982671) +2018/09/16 07:01:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:01:25 ruptelaNet.go:261: Data received(client: [::1]:53726, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 07:01:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:01:25 ruptelaNet.go:278: Sent ACK (client: [::1]:53726, IMEI: 352094087982671) +2018/09/16 07:01:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53726, IMEI: 352094087982671) with duration 5.77 s +2018/09/16 07:01:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:53780) +2018/09/16 07:01:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:01:52 ruptelaNet.go:261: Data received(client: [::1]:53780, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:01:52 ruptelaNet.go:278: Sent ACK (client: [::1]:53780, IMEI: 352094087982671) +2018/09/16 07:01:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:01:54 ruptelaNet.go:261: Data received(client: [::1]:53780, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:01:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:01:54 ruptelaNet.go:278: Sent ACK (client: [::1]:53780, IMEI: 352094087982671) +2018/09/16 07:01:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53780, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 07:02:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53831) +2018/09/16 07:02:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:02:14 ruptelaNet.go:261: Data received(client: [::1]:53831, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:02:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53831, IMEI: 352094089712860) +2018/09/16 07:02:16 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:02:16 ruptelaNet.go:261: Data received(client: [::1]:53831, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 07:02:16 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:02:16 ruptelaNet.go:278: Sent ACK (client: [::1]:53831, IMEI: 352094089712860) +2018/09/16 07:02:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53831, IMEI: 352094089712860) with duration 2.8 s +2018/09/16 07:02:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:53842) +2018/09/16 07:02:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:02:21 ruptelaNet.go:261: Data received(client: [::1]:53842, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:02:21 ruptelaNet.go:278: Sent ACK (client: [::1]:53842, IMEI: 352094087982671) +2018/09/16 07:02:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:02:23 ruptelaNet.go:261: Data received(client: [::1]:53842, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:02:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:02:23 ruptelaNet.go:278: Sent ACK (client: [::1]:53842, IMEI: 352094087982671) +2018/09/16 07:02:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53842, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:02:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:53899) +2018/09/16 07:02:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:02:50 ruptelaNet.go:261: Data received(client: [::1]:53899, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:02:50 ruptelaNet.go:278: Sent ACK (client: [::1]:53899, IMEI: 352094087982671) +2018/09/16 07:02:53 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:02:53 ruptelaNet.go:261: Data received(client: [::1]:53899, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:02:53 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:02:53 ruptelaNet.go:278: Sent ACK (client: [::1]:53899, IMEI: 352094087982671) +2018/09/16 07:02:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53899, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 07:03:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:53950) +2018/09/16 07:03:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:03:14 ruptelaNet.go:261: Data received(client: [::1]:53950, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:03:14 ruptelaNet.go:278: Sent ACK (client: [::1]:53950, IMEI: 352094089712860) +2018/09/16 07:03:16 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:03:16 ruptelaNet.go:261: Data received(client: [::1]:53950, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 07:03:16 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:03:16 ruptelaNet.go:278: Sent ACK (client: [::1]:53950, IMEI: 352094089712860) +2018/09/16 07:03:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53950, IMEI: 352094089712860) with duration 3.58 s +2018/09/16 07:03:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:53962) +2018/09/16 07:03:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:03:19 ruptelaNet.go:261: Data received(client: [::1]:53962, IMEI: 352094087982671) with duration 0.79 s +2018/09/16 07:03:19 ruptelaNet.go:278: Sent ACK (client: [::1]:53962, IMEI: 352094087982671) +2018/09/16 07:03:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:03:21 ruptelaNet.go:261: Data received(client: [::1]:53962, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 07:03:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:03:21 ruptelaNet.go:278: Sent ACK (client: [::1]:53962, IMEI: 352094087982671) +2018/09/16 07:03:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:53962, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 07:03:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:54026) +2018/09/16 07:03:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:03:48 ruptelaNet.go:261: Data received(client: [::1]:54026, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 07:03:48 ruptelaNet.go:278: Sent ACK (client: [::1]:54026, IMEI: 352094087982671) +2018/09/16 07:03:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:03:50 ruptelaNet.go:261: Data received(client: [::1]:54026, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 07:03:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:03:50 ruptelaNet.go:278: Sent ACK (client: [::1]:54026, IMEI: 352094087982671) +2018/09/16 07:03:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54026, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 07:04:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:54074) +2018/09/16 07:04:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:04:14 ruptelaNet.go:261: Data received(client: [::1]:54074, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:04:14 ruptelaNet.go:278: Sent ACK (client: [::1]:54074, IMEI: 352094089712860) +2018/09/16 07:04:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:54080) +2018/09/16 07:04:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:04:17 ruptelaNet.go:261: Data received(client: [::1]:54080, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 07:04:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54080, IMEI: 352094087982671) +2018/09/16 07:04:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:04:18 ruptelaNet.go:261: Data received(client: [::1]:54074, IMEI: 352094089712860) with duration 3.68 s +2018/09/16 07:04:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:04:18 ruptelaNet.go:278: Sent ACK (client: [::1]:54074, IMEI: 352094089712860) +2018/09/16 07:04:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:04:19 ruptelaNet.go:261: Data received(client: [::1]:54080, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 07:04:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:04:19 ruptelaNet.go:278: Sent ACK (client: [::1]:54080, IMEI: 352094087982671) +2018/09/16 07:04:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54074, IMEI: 352094089712860) with duration 4.88 s +2018/09/16 07:04:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54080, IMEI: 352094087982671) with duration 5.79 s +2018/09/16 07:04:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:54137) +2018/09/16 07:04:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:04:45 ruptelaNet.go:261: Data received(client: [::1]:54137, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:04:45 ruptelaNet.go:278: Sent ACK (client: [::1]:54137, IMEI: 352094087982671) +2018/09/16 07:04:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:04:48 ruptelaNet.go:261: Data received(client: [::1]:54137, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:04:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:04:48 ruptelaNet.go:278: Sent ACK (client: [::1]:54137, IMEI: 352094087982671) +2018/09/16 07:04:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54137, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 07:05:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:54195) +2018/09/16 07:05:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:05:15 ruptelaNet.go:261: Data received(client: [::1]:54195, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 07:05:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54195, IMEI: 352094087982671) +2018/09/16 07:05:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:54201) +2018/09/16 07:05:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:05:16 ruptelaNet.go:261: Data received(client: [::1]:54201, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:05:16 ruptelaNet.go:278: Sent ACK (client: [::1]:54201, IMEI: 352094089712860) +2018/09/16 07:05:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:05:17 ruptelaNet.go:261: Data received(client: [::1]:54195, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 07:05:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:05:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54195, IMEI: 352094087982671) +2018/09/16 07:05:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:05:18 ruptelaNet.go:261: Data received(client: [::1]:54201, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 07:05:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:05:18 ruptelaNet.go:278: Sent ACK (client: [::1]:54201, IMEI: 352094089712860) +2018/09/16 07:05:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54201, IMEI: 352094089712860) with duration 3.71 s +2018/09/16 07:05:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54195, IMEI: 352094087982671) with duration 6.19 s +2018/09/16 07:05:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:54256) +2018/09/16 07:05:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:05:43 ruptelaNet.go:261: Data received(client: [::1]:54256, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 07:05:43 ruptelaNet.go:278: Sent ACK (client: [::1]:54256, IMEI: 352094087982671) +2018/09/16 07:05:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:05:46 ruptelaNet.go:261: Data received(client: [::1]:54256, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 07:05:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:05:46 ruptelaNet.go:278: Sent ACK (client: [::1]:54256, IMEI: 352094087982671) +2018/09/16 07:05:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54256, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 07:06:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:54318) +2018/09/16 07:06:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:06:13 ruptelaNet.go:261: Data received(client: [::1]:54318, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:06:13 ruptelaNet.go:278: Sent ACK (client: [::1]:54318, IMEI: 352094087982671) +2018/09/16 07:06:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:54324) +2018/09/16 07:06:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:06:14 ruptelaNet.go:261: Data received(client: [::1]:54324, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:06:14 ruptelaNet.go:278: Sent ACK (client: [::1]:54324, IMEI: 352094089712860) +2018/09/16 07:06:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:06:15 ruptelaNet.go:261: Data received(client: [::1]:54318, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 07:06:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:06:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54318, IMEI: 352094087982671) +2018/09/16 07:06:16 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:06:16 ruptelaNet.go:261: Data received(client: [::1]:54324, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 07:06:16 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:06:16 ruptelaNet.go:278: Sent ACK (client: [::1]:54324, IMEI: 352094089712860) +2018/09/16 07:06:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54324, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 07:06:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54318, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 07:06:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:54384) +2018/09/16 07:06:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:06:42 ruptelaNet.go:261: Data received(client: [::1]:54384, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:06:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54384, IMEI: 352094087982671) +2018/09/16 07:06:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:06:45 ruptelaNet.go:261: Data received(client: [::1]:54384, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 07:06:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:06:45 ruptelaNet.go:278: Sent ACK (client: [::1]:54384, IMEI: 352094087982671) +2018/09/16 07:06:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54384, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 07:07:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:54442) +2018/09/16 07:07:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:07:11 ruptelaNet.go:261: Data received(client: [::1]:54442, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 07:07:11 ruptelaNet.go:278: Sent ACK (client: [::1]:54442, IMEI: 352094087982671) +2018/09/16 07:07:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:07:13 ruptelaNet.go:261: Data received(client: [::1]:54442, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:07:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:07:13 ruptelaNet.go:278: Sent ACK (client: [::1]:54442, IMEI: 352094087982671) +2018/09/16 07:07:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:54453) +2018/09/16 07:07:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:07:14 ruptelaNet.go:261: Data received(client: [::1]:54453, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:07:14 ruptelaNet.go:278: Sent ACK (client: [::1]:54453, IMEI: 352094089712860) +2018/09/16 07:07:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54442, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:07:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:07:17 ruptelaNet.go:261: Data received(client: [::1]:54453, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 07:07:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:07:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54453, IMEI: 352094089712860) +2018/09/16 07:07:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54453, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 07:07:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:54497) +2018/09/16 07:07:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:07:40 ruptelaNet.go:261: Data received(client: [::1]:54497, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:07:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54497, IMEI: 352094087982671) +2018/09/16 07:07:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:07:42 ruptelaNet.go:261: Data received(client: [::1]:54497, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:07:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:07:42 ruptelaNet.go:278: Sent ACK (client: [::1]:54497, IMEI: 352094087982671) +2018/09/16 07:07:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54497, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 07:08:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:54557) +2018/09/16 07:08:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:08:08 ruptelaNet.go:261: Data received(client: [::1]:54557, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 07:08:08 ruptelaNet.go:278: Sent ACK (client: [::1]:54557, IMEI: 352094087982671) +2018/09/16 07:08:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:08:11 ruptelaNet.go:261: Data received(client: [::1]:54557, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:08:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:08:11 ruptelaNet.go:278: Sent ACK (client: [::1]:54557, IMEI: 352094087982671) +2018/09/16 07:08:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54557, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:08:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:54574) +2018/09/16 07:08:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:08:15 ruptelaNet.go:261: Data received(client: [::1]:54574, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:08:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54574, IMEI: 352094089712860) +2018/09/16 07:08:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:08:17 ruptelaNet.go:261: Data received(client: [::1]:54574, IMEI: 352094089712860) with duration 2.75 s +2018/09/16 07:08:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:08:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54574, IMEI: 352094089712860) +2018/09/16 07:08:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54574, IMEI: 352094089712860) with duration 3.57 s +2018/09/16 07:08:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:54591) +2018/09/16 07:08:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:54619) +2018/09/16 07:08:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:08:38 ruptelaNet.go:261: Data received(client: [::1]:54619, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 07:08:38 ruptelaNet.go:278: Sent ACK (client: [::1]:54619, IMEI: 352094087982671) +2018/09/16 07:08:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54591, IMEI: 0) with duration 15.45 s +2018/09/16 07:08:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:54624) +2018/09/16 07:08:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:08:40 ruptelaNet.go:261: Data received(client: [::1]:54619, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 07:08:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:08:40 ruptelaNet.go:278: Sent ACK (client: [::1]:54619, IMEI: 352094087982671) +2018/09/16 07:08:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54619, IMEI: 352094087982671) with duration 6 s +2018/09/16 07:08:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54624, IMEI: 0) with duration 15.46 s +2018/09/16 07:09:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:54677) +2018/09/16 07:09:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:09:07 ruptelaNet.go:261: Data received(client: [::1]:54677, IMEI: 352094087982671) with duration 1.16 s +2018/09/16 07:09:07 ruptelaNet.go:278: Sent ACK (client: [::1]:54677, IMEI: 352094087982671) +2018/09/16 07:09:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:09:10 ruptelaNet.go:261: Data received(client: [::1]:54677, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 07:09:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:09:10 ruptelaNet.go:278: Sent ACK (client: [::1]:54677, IMEI: 352094087982671) +2018/09/16 07:09:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54677, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 07:09:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:54696) +2018/09/16 07:09:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:09:15 ruptelaNet.go:261: Data received(client: [::1]:54696, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:09:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54696, IMEI: 352094089712860) +2018/09/16 07:09:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:09:17 ruptelaNet.go:261: Data received(client: [::1]:54696, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:09:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:09:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54696, IMEI: 352094089712860) +2018/09/16 07:09:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54696, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 07:09:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:54740) +2018/09/16 07:09:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:09:36 ruptelaNet.go:261: Data received(client: [::1]:54740, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:09:36 ruptelaNet.go:278: Sent ACK (client: [::1]:54740, IMEI: 352094087982671) +2018/09/16 07:09:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:09:38 ruptelaNet.go:261: Data received(client: [::1]:54740, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:09:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:09:38 ruptelaNet.go:278: Sent ACK (client: [::1]:54740, IMEI: 352094087982671) +2018/09/16 07:09:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54740, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:10:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:54804) +2018/09/16 07:10:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:10:05 ruptelaNet.go:261: Data received(client: [::1]:54804, IMEI: 352094087982671) with duration 0.66 s +2018/09/16 07:10:05 ruptelaNet.go:278: Sent ACK (client: [::1]:54804, IMEI: 352094087982671) +2018/09/16 07:10:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:10:07 ruptelaNet.go:261: Data received(client: [::1]:54804, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 07:10:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:10:07 ruptelaNet.go:278: Sent ACK (client: [::1]:54804, IMEI: 352094087982671) +2018/09/16 07:10:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54804, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 07:10:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:54827) +2018/09/16 07:10:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:10:15 ruptelaNet.go:261: Data received(client: [::1]:54827, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 07:10:15 ruptelaNet.go:278: Sent ACK (client: [::1]:54827, IMEI: 352094089712860) +2018/09/16 07:10:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:10:17 ruptelaNet.go:261: Data received(client: [::1]:54827, IMEI: 352094089712860) with duration 2.43 s +2018/09/16 07:10:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:10:17 ruptelaNet.go:278: Sent ACK (client: [::1]:54827, IMEI: 352094089712860) +2018/09/16 07:10:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54827, IMEI: 352094089712860) with duration 3.63 s +2018/09/16 07:10:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:54864) +2018/09/16 07:10:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:10:34 ruptelaNet.go:261: Data received(client: [::1]:54864, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:10:34 ruptelaNet.go:278: Sent ACK (client: [::1]:54864, IMEI: 352094087982671) +2018/09/16 07:10:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:10:36 ruptelaNet.go:261: Data received(client: [::1]:54864, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:10:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:10:36 ruptelaNet.go:278: Sent ACK (client: [::1]:54864, IMEI: 352094087982671) +2018/09/16 07:10:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54864, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 07:11:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:54922) +2018/09/16 07:11:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:11:02 ruptelaNet.go:261: Data received(client: [::1]:54922, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 07:11:02 ruptelaNet.go:278: Sent ACK (client: [::1]:54922, IMEI: 352094087982671) +2018/09/16 07:11:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:11:05 ruptelaNet.go:261: Data received(client: [::1]:54922, IMEI: 352094087982671) with duration 3.65 s +2018/09/16 07:11:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:11:05 ruptelaNet.go:278: Sent ACK (client: [::1]:54922, IMEI: 352094087982671) +2018/09/16 07:11:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54922, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 07:11:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:54953) +2018/09/16 07:11:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:11:16 ruptelaNet.go:261: Data received(client: [::1]:54953, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:11:16 ruptelaNet.go:278: Sent ACK (client: [::1]:54953, IMEI: 352094089712860) +2018/09/16 07:11:19 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:11:19 ruptelaNet.go:261: Data received(client: [::1]:54953, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 07:11:19 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:11:19 ruptelaNet.go:278: Sent ACK (client: [::1]:54953, IMEI: 352094089712860) +2018/09/16 07:11:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54953, IMEI: 352094089712860) with duration 4.09 s +2018/09/16 07:11:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:54982) +2018/09/16 07:11:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:11:32 ruptelaNet.go:261: Data received(client: [::1]:54982, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:11:32 ruptelaNet.go:278: Sent ACK (client: [::1]:54982, IMEI: 352094087982671) +2018/09/16 07:11:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:11:35 ruptelaNet.go:261: Data received(client: [::1]:54982, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 07:11:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:11:35 ruptelaNet.go:278: Sent ACK (client: [::1]:54982, IMEI: 352094087982671) +2018/09/16 07:11:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:54982, IMEI: 352094087982671) with duration 6.56 s +2018/09/16 07:11:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:55042) +2018/09/16 07:12:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:12:00 ruptelaNet.go:261: Data received(client: [::1]:55042, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:12:00 ruptelaNet.go:278: Sent ACK (client: [::1]:55042, IMEI: 352094087982671) +2018/09/16 07:12:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:12:03 ruptelaNet.go:261: Data received(client: [::1]:55042, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:12:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:12:03 ruptelaNet.go:278: Sent ACK (client: [::1]:55042, IMEI: 352094087982671) +2018/09/16 07:12:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55042, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 07:12:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:55079) +2018/09/16 07:12:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:12:17 ruptelaNet.go:261: Data received(client: [::1]:55079, IMEI: 352094089712860) with duration 0.24 s +2018/09/16 07:12:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55079, IMEI: 352094089712860) +2018/09/16 07:12:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:12:20 ruptelaNet.go:261: Data received(client: [::1]:55079, IMEI: 352094089712860) with duration 3.37 s +2018/09/16 07:12:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:12:20 ruptelaNet.go:278: Sent ACK (client: [::1]:55079, IMEI: 352094089712860) +2018/09/16 07:12:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55079, IMEI: 352094089712860) with duration 5.93 s +2018/09/16 07:12:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:55102) +2018/09/16 07:12:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:12:29 ruptelaNet.go:261: Data received(client: [::1]:55102, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 07:12:29 ruptelaNet.go:278: Sent ACK (client: [::1]:55102, IMEI: 352094087982671) +2018/09/16 07:12:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:12:33 ruptelaNet.go:261: Data received(client: [::1]:55102, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 07:12:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:12:33 ruptelaNet.go:278: Sent ACK (client: [::1]:55102, IMEI: 352094087982671) +2018/09/16 07:12:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55102, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 07:12:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:55155) +2018/09/16 07:12:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:12:58 ruptelaNet.go:261: Data received(client: [::1]:55155, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 07:12:58 ruptelaNet.go:278: Sent ACK (client: [::1]:55155, IMEI: 352094087982671) +2018/09/16 07:13:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:13:02 ruptelaNet.go:261: Data received(client: [::1]:55155, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 07:13:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:13:02 ruptelaNet.go:278: Sent ACK (client: [::1]:55155, IMEI: 352094087982671) +2018/09/16 07:13:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55155, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 07:13:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55191) +2018/09/16 07:13:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:13:15 ruptelaNet.go:261: Data received(client: [::1]:55191, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:13:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55191, IMEI: 352094089712860) +2018/09/16 07:13:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:13:18 ruptelaNet.go:261: Data received(client: [::1]:55191, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 07:13:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:13:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55191, IMEI: 352094089712860) +2018/09/16 07:13:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55191, IMEI: 352094089712860) with duration 3.99 s +2018/09/16 07:13:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:55219) +2018/09/16 07:13:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:13:28 ruptelaNet.go:261: Data received(client: [::1]:55219, IMEI: 352094087982671) with duration 0.77 s +2018/09/16 07:13:28 ruptelaNet.go:278: Sent ACK (client: [::1]:55219, IMEI: 352094087982671) +2018/09/16 07:13:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:13:30 ruptelaNet.go:261: Data received(client: [::1]:55219, IMEI: 352094087982671) with duration 3.23 s +2018/09/16 07:13:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:13:30 ruptelaNet.go:278: Sent ACK (client: [::1]:55219, IMEI: 352094087982671) +2018/09/16 07:13:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55219, IMEI: 352094087982671) with duration 5.38 s +2018/09/16 07:13:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:55273) +2018/09/16 07:13:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:13:56 ruptelaNet.go:261: Data received(client: [::1]:55273, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:13:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55273, IMEI: 352094087982671) +2018/09/16 07:13:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:13:58 ruptelaNet.go:261: Data received(client: [::1]:55273, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 07:13:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:13:58 ruptelaNet.go:278: Sent ACK (client: [::1]:55273, IMEI: 352094087982671) +2018/09/16 07:14:00 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55273, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 07:14:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55317) +2018/09/16 07:14:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:14:15 ruptelaNet.go:261: Data received(client: [::1]:55317, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:14:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55317, IMEI: 352094089712860) +2018/09/16 07:14:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:14:17 ruptelaNet.go:261: Data received(client: [::1]:55317, IMEI: 352094089712860) with duration 2.02 s +2018/09/16 07:14:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:14:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55317, IMEI: 352094089712860) +2018/09/16 07:14:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55317, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 07:14:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:55338) +2018/09/16 07:14:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:14:25 ruptelaNet.go:261: Data received(client: [::1]:55338, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 07:14:25 ruptelaNet.go:278: Sent ACK (client: [::1]:55338, IMEI: 352094087982671) +2018/09/16 07:14:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:14:28 ruptelaNet.go:261: Data received(client: [::1]:55338, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:14:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:14:28 ruptelaNet.go:278: Sent ACK (client: [::1]:55338, IMEI: 352094087982671) +2018/09/16 07:14:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55338, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:14:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:55394) +2018/09/16 07:14:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:14:54 ruptelaNet.go:261: Data received(client: [::1]:55394, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:14:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55394, IMEI: 352094087982671) +2018/09/16 07:14:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:14:56 ruptelaNet.go:261: Data received(client: [::1]:55394, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 07:14:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:14:56 ruptelaNet.go:278: Sent ACK (client: [::1]:55394, IMEI: 352094087982671) +2018/09/16 07:14:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55394, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:15:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:55442) +2018/09/16 07:15:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:15:16 ruptelaNet.go:261: Data received(client: [::1]:55442, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:15:16 ruptelaNet.go:278: Sent ACK (client: [::1]:55442, IMEI: 352094089712860) +2018/09/16 07:15:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:15:18 ruptelaNet.go:261: Data received(client: [::1]:55442, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 07:15:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:15:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55442, IMEI: 352094089712860) +2018/09/16 07:15:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55442, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 07:15:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:55453) +2018/09/16 07:15:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:15:23 ruptelaNet.go:261: Data received(client: [::1]:55453, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:15:23 ruptelaNet.go:278: Sent ACK (client: [::1]:55453, IMEI: 352094087982671) +2018/09/16 07:15:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:15:26 ruptelaNet.go:261: Data received(client: [::1]:55453, IMEI: 352094087982671) with duration 4.3 s +2018/09/16 07:15:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:15:26 ruptelaNet.go:278: Sent ACK (client: [::1]:55453, IMEI: 352094087982671) +2018/09/16 07:15:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55453, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 07:15:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:55515) +2018/09/16 07:15:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:15:52 ruptelaNet.go:261: Data received(client: [::1]:55515, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 07:15:52 ruptelaNet.go:278: Sent ACK (client: [::1]:55515, IMEI: 352094087982671) +2018/09/16 07:15:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:15:54 ruptelaNet.go:261: Data received(client: [::1]:55515, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 07:15:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:15:54 ruptelaNet.go:278: Sent ACK (client: [::1]:55515, IMEI: 352094087982671) +2018/09/16 07:15:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55515, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 07:16:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55566) +2018/09/16 07:16:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:16:15 ruptelaNet.go:261: Data received(client: [::1]:55566, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:16:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55566, IMEI: 352094089712860) +2018/09/16 07:16:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:16:18 ruptelaNet.go:261: Data received(client: [::1]:55566, IMEI: 352094089712860) with duration 2.64 s +2018/09/16 07:16:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:16:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55566, IMEI: 352094089712860) +2018/09/16 07:16:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55566, IMEI: 352094089712860) with duration 3.56 s +2018/09/16 07:16:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:55578) +2018/09/16 07:16:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:16:21 ruptelaNet.go:261: Data received(client: [::1]:55578, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 07:16:21 ruptelaNet.go:278: Sent ACK (client: [::1]:55578, IMEI: 352094087982671) +2018/09/16 07:16:24 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:16:24 ruptelaNet.go:261: Data received(client: [::1]:55578, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 07:16:24 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:16:24 ruptelaNet.go:278: Sent ACK (client: [::1]:55578, IMEI: 352094087982671) +2018/09/16 07:16:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55578, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 07:16:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:55634) +2018/09/16 07:16:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:16:49 ruptelaNet.go:261: Data received(client: [::1]:55634, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:16:49 ruptelaNet.go:278: Sent ACK (client: [::1]:55634, IMEI: 352094087982671) +2018/09/16 07:16:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:16:52 ruptelaNet.go:261: Data received(client: [::1]:55634, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:16:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:16:52 ruptelaNet.go:278: Sent ACK (client: [::1]:55634, IMEI: 352094087982671) +2018/09/16 07:16:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55634, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 07:17:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55694) +2018/09/16 07:17:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:17:15 ruptelaNet.go:261: Data received(client: [::1]:55694, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:17:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55694, IMEI: 352094089712860) +2018/09/16 07:17:17 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:17:17 ruptelaNet.go:261: Data received(client: [::1]:55694, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 07:17:17 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:17:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55694, IMEI: 352094089712860) +2018/09/16 07:17:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:55703) +2018/09/16 07:17:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55694, IMEI: 352094089712860) with duration 2.64 s +2018/09/16 07:17:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:17:19 ruptelaNet.go:261: Data received(client: [::1]:55703, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:17:19 ruptelaNet.go:278: Sent ACK (client: [::1]:55703, IMEI: 352094087982671) +2018/09/16 07:17:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:17:22 ruptelaNet.go:261: Data received(client: [::1]:55703, IMEI: 352094087982671) with duration 4.39 s +2018/09/16 07:17:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:17:22 ruptelaNet.go:278: Sent ACK (client: [::1]:55703, IMEI: 352094087982671) +2018/09/16 07:17:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55703, IMEI: 352094087982671) with duration 6.54 s +2018/09/16 07:17:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:55763) +2018/09/16 07:17:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:17:48 ruptelaNet.go:261: Data received(client: [::1]:55763, IMEI: 352094087982671) with duration 0.73 s +2018/09/16 07:17:48 ruptelaNet.go:278: Sent ACK (client: [::1]:55763, IMEI: 352094087982671) +2018/09/16 07:17:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:17:50 ruptelaNet.go:261: Data received(client: [::1]:55763, IMEI: 352094087982671) with duration 3.6 s +2018/09/16 07:17:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:17:50 ruptelaNet.go:278: Sent ACK (client: [::1]:55763, IMEI: 352094087982671) +2018/09/16 07:17:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55763, IMEI: 352094087982671) with duration 5.75 s +2018/09/16 07:18:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:55823) +2018/09/16 07:18:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:55824) +2018/09/16 07:18:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:18:16 ruptelaNet.go:261: Data received(client: [::1]:55824, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:18:16 ruptelaNet.go:278: Sent ACK (client: [::1]:55824, IMEI: 352094089712860) +2018/09/16 07:18:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:18:17 ruptelaNet.go:261: Data received(client: [::1]:55823, IMEI: 352094087982671) with duration 1.28 s +2018/09/16 07:18:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55823, IMEI: 352094087982671) +2018/09/16 07:18:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:18:18 ruptelaNet.go:261: Data received(client: [::1]:55824, IMEI: 352094089712860) with duration 2.24 s +2018/09/16 07:18:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:18:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55824, IMEI: 352094089712860) +2018/09/16 07:18:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55824, IMEI: 352094089712860) with duration 4.4 s +2018/09/16 07:18:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:18:20 ruptelaNet.go:261: Data received(client: [::1]:55823, IMEI: 352094087982671) with duration 4.71 s +2018/09/16 07:18:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:18:20 ruptelaNet.go:278: Sent ACK (client: [::1]:55823, IMEI: 352094087982671) +2018/09/16 07:18:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55823, IMEI: 352094087982671) with duration 6.94 s +2018/09/16 07:18:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:55891) +2018/09/16 07:18:47 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:18:47 ruptelaNet.go:261: Data received(client: [::1]:55891, IMEI: 352094087982671) with duration 1.2 s +2018/09/16 07:18:47 ruptelaNet.go:278: Sent ACK (client: [::1]:55891, IMEI: 352094087982671) +2018/09/16 07:18:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:18:50 ruptelaNet.go:261: Data received(client: [::1]:55891, IMEI: 352094087982671) with duration 4.1 s +2018/09/16 07:18:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:18:50 ruptelaNet.go:278: Sent ACK (client: [::1]:55891, IMEI: 352094087982671) +2018/09/16 07:18:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55891, IMEI: 352094087982671) with duration 6.25 s +2018/09/16 07:19:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:55951) +2018/09/16 07:19:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:19:15 ruptelaNet.go:261: Data received(client: [::1]:55951, IMEI: 352094087982671) with duration 0.87 s +2018/09/16 07:19:15 ruptelaNet.go:278: Sent ACK (client: [::1]:55951, IMEI: 352094087982671) +2018/09/16 07:19:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:55957) +2018/09/16 07:19:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:19:17 ruptelaNet.go:261: Data received(client: [::1]:55957, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:19:17 ruptelaNet.go:278: Sent ACK (client: [::1]:55957, IMEI: 352094089712860) +2018/09/16 07:19:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:19:18 ruptelaNet.go:261: Data received(client: [::1]:55951, IMEI: 352094087982671) with duration 3.67 s +2018/09/16 07:19:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:19:18 ruptelaNet.go:278: Sent ACK (client: [::1]:55951, IMEI: 352094087982671) +2018/09/16 07:19:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:19:20 ruptelaNet.go:261: Data received(client: [::1]:55957, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 07:19:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:19:20 ruptelaNet.go:278: Sent ACK (client: [::1]:55957, IMEI: 352094089712860) +2018/09/16 07:19:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55951, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 07:19:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:55957, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 07:19:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:56011) +2018/09/16 07:19:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:19:45 ruptelaNet.go:261: Data received(client: [::1]:56011, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:19:45 ruptelaNet.go:278: Sent ACK (client: [::1]:56011, IMEI: 352094087982671) +2018/09/16 07:19:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:19:47 ruptelaNet.go:261: Data received(client: [::1]:56011, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:19:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:19:47 ruptelaNet.go:278: Sent ACK (client: [::1]:56011, IMEI: 352094087982671) +2018/09/16 07:19:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56011, IMEI: 352094087982671) with duration 6.15 s +2018/09/16 07:20:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:56070) +2018/09/16 07:20:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:20:14 ruptelaNet.go:261: Data received(client: [::1]:56070, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:20:14 ruptelaNet.go:278: Sent ACK (client: [::1]:56070, IMEI: 352094087982671) +2018/09/16 07:20:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:20:16 ruptelaNet.go:261: Data received(client: [::1]:56070, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 07:20:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:20:16 ruptelaNet.go:278: Sent ACK (client: [::1]:56070, IMEI: 352094087982671) +2018/09/16 07:20:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56070, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 07:20:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:56099) +2018/09/16 07:20:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:20:25 ruptelaNet.go:261: Data received(client: [::1]:56099, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:20:25 ruptelaNet.go:278: Sent ACK (client: [::1]:56099, IMEI: 352094089712860) +2018/09/16 07:20:30 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:20:30 ruptelaNet.go:261: Data received(client: [::1]:56099, IMEI: 352094089712860) with duration 4.3 s +2018/09/16 07:20:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:20:30 ruptelaNet.go:278: Sent ACK (client: [::1]:56099, IMEI: 352094089712860) +2018/09/16 07:20:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56099, IMEI: 352094089712860) with duration 5.12 s +2018/09/16 07:20:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:56132) +2018/09/16 07:20:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:20:43 ruptelaNet.go:261: Data received(client: [::1]:56132, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 07:20:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56132, IMEI: 352094087982671) +2018/09/16 07:20:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:20:45 ruptelaNet.go:261: Data received(client: [::1]:56132, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 07:20:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:20:45 ruptelaNet.go:278: Sent ACK (client: [::1]:56132, IMEI: 352094087982671) +2018/09/16 07:20:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56132, IMEI: 352094087982671) with duration 6.11 s +2018/09/16 07:21:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:56194) +2018/09/16 07:21:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:21:12 ruptelaNet.go:261: Data received(client: [::1]:56194, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:21:12 ruptelaNet.go:278: Sent ACK (client: [::1]:56194, IMEI: 352094087982671) +2018/09/16 07:21:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:21:15 ruptelaNet.go:261: Data received(client: [::1]:56194, IMEI: 352094087982671) with duration 3.92 s +2018/09/16 07:21:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:21:15 ruptelaNet.go:278: Sent ACK (client: [::1]:56194, IMEI: 352094087982671) +2018/09/16 07:21:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56194, IMEI: 352094087982671) with duration 6.19 s +2018/09/16 07:21:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:56210) +2018/09/16 07:21:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:21:18 ruptelaNet.go:261: Data received(client: [::1]:56210, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:21:18 ruptelaNet.go:278: Sent ACK (client: [::1]:56210, IMEI: 352094089712860) +2018/09/16 07:21:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:21:20 ruptelaNet.go:261: Data received(client: [::1]:56210, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:21:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:21:20 ruptelaNet.go:278: Sent ACK (client: [::1]:56210, IMEI: 352094089712860) +2018/09/16 07:21:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56210, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 07:21:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:56251) +2018/09/16 07:21:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:21:41 ruptelaNet.go:261: Data received(client: [::1]:56251, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:21:41 ruptelaNet.go:278: Sent ACK (client: [::1]:56251, IMEI: 352094087982671) +2018/09/16 07:21:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:21:43 ruptelaNet.go:261: Data received(client: [::1]:56251, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:21:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:21:43 ruptelaNet.go:278: Sent ACK (client: [::1]:56251, IMEI: 352094087982671) +2018/09/16 07:21:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56251, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:22:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:56315) +2018/09/16 07:22:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:22:10 ruptelaNet.go:261: Data received(client: [::1]:56315, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 07:22:10 ruptelaNet.go:278: Sent ACK (client: [::1]:56315, IMEI: 352094087982671) +2018/09/16 07:22:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:22:13 ruptelaNet.go:261: Data received(client: [::1]:56315, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:22:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:22:13 ruptelaNet.go:278: Sent ACK (client: [::1]:56315, IMEI: 352094087982671) +2018/09/16 07:22:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56315, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 07:22:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:56332) +2018/09/16 07:22:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:22:18 ruptelaNet.go:261: Data received(client: [::1]:56332, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:22:18 ruptelaNet.go:278: Sent ACK (client: [::1]:56332, IMEI: 352094089712860) +2018/09/16 07:22:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:22:21 ruptelaNet.go:261: Data received(client: [::1]:56332, IMEI: 352094089712860) with duration 3.51 s +2018/09/16 07:22:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:22:21 ruptelaNet.go:278: Sent ACK (client: [::1]:56332, IMEI: 352094089712860) +2018/09/16 07:22:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56332, IMEI: 352094089712860) with duration 4.38 s +2018/09/16 07:22:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:56372) +2018/09/16 07:22:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:22:39 ruptelaNet.go:261: Data received(client: [::1]:56372, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:22:39 ruptelaNet.go:278: Sent ACK (client: [::1]:56372, IMEI: 352094087982671) +2018/09/16 07:22:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:22:42 ruptelaNet.go:261: Data received(client: [::1]:56372, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:22:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:22:42 ruptelaNet.go:278: Sent ACK (client: [::1]:56372, IMEI: 352094087982671) +2018/09/16 07:22:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56372, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:23:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:56432) +2018/09/16 07:23:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:23:08 ruptelaNet.go:261: Data received(client: [::1]:56432, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 07:23:08 ruptelaNet.go:278: Sent ACK (client: [::1]:56432, IMEI: 352094087982671) +2018/09/16 07:23:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:23:10 ruptelaNet.go:261: Data received(client: [::1]:56432, IMEI: 352094087982671) with duration 3.7 s +2018/09/16 07:23:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:23:10 ruptelaNet.go:278: Sent ACK (client: [::1]:56432, IMEI: 352094087982671) +2018/09/16 07:23:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56432, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 07:23:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:56458) +2018/09/16 07:23:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:23:16 ruptelaNet.go:261: Data received(client: [::1]:56458, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:23:16 ruptelaNet.go:278: Sent ACK (client: [::1]:56458, IMEI: 352094089712860) +2018/09/16 07:23:18 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:23:18 ruptelaNet.go:261: Data received(client: [::1]:56458, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 07:23:18 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:23:18 ruptelaNet.go:278: Sent ACK (client: [::1]:56458, IMEI: 352094089712860) +2018/09/16 07:23:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56458, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 07:23:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:56496) +2018/09/16 07:23:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:23:37 ruptelaNet.go:261: Data received(client: [::1]:56496, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:23:37 ruptelaNet.go:278: Sent ACK (client: [::1]:56496, IMEI: 352094087982671) +2018/09/16 07:23:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:23:39 ruptelaNet.go:261: Data received(client: [::1]:56496, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:23:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:23:39 ruptelaNet.go:278: Sent ACK (client: [::1]:56496, IMEI: 352094087982671) +2018/09/16 07:23:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56496, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:24:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:56559) +2018/09/16 07:24:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:24:06 ruptelaNet.go:261: Data received(client: [::1]:56559, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:24:06 ruptelaNet.go:278: Sent ACK (client: [::1]:56559, IMEI: 352094087982671) +2018/09/16 07:24:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:24:08 ruptelaNet.go:261: Data received(client: [::1]:56559, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:24:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:24:08 ruptelaNet.go:278: Sent ACK (client: [::1]:56559, IMEI: 352094087982671) +2018/09/16 07:24:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56559, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 07:24:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:56608) +2018/09/16 07:24:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:24:24 ruptelaNet.go:261: Data received(client: [::1]:56608, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:24:24 ruptelaNet.go:278: Sent ACK (client: [::1]:56608, IMEI: 352094089712860) +2018/09/16 07:24:29 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:24:29 ruptelaNet.go:261: Data received(client: [::1]:56608, IMEI: 352094089712860) with duration 5.02 s +2018/09/16 07:24:29 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:24:29 ruptelaNet.go:278: Sent ACK (client: [::1]:56608, IMEI: 352094089712860) +2018/09/16 07:24:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56608, IMEI: 352094089712860) with duration 7.68 s +2018/09/16 07:24:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:56628) +2018/09/16 07:24:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:24:35 ruptelaNet.go:261: Data received(client: [::1]:56628, IMEI: 352094087982671) with duration 1.15 s +2018/09/16 07:24:35 ruptelaNet.go:278: Sent ACK (client: [::1]:56628, IMEI: 352094087982671) +2018/09/16 07:24:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:24:37 ruptelaNet.go:261: Data received(client: [::1]:56628, IMEI: 352094087982671) with duration 4.01 s +2018/09/16 07:24:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:24:37 ruptelaNet.go:278: Sent ACK (client: [::1]:56628, IMEI: 352094087982671) +2018/09/16 07:24:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56628, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 07:25:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:56687) +2018/09/16 07:25:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:25:04 ruptelaNet.go:261: Data received(client: [::1]:56687, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 07:25:04 ruptelaNet.go:278: Sent ACK (client: [::1]:56687, IMEI: 352094087982671) +2018/09/16 07:25:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:25:06 ruptelaNet.go:261: Data received(client: [::1]:56687, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 07:25:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:25:06 ruptelaNet.go:278: Sent ACK (client: [::1]:56687, IMEI: 352094087982671) +2018/09/16 07:25:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56687, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 07:25:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:56719) +2018/09/16 07:25:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:25:16 ruptelaNet.go:261: Data received(client: [::1]:56719, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:25:16 ruptelaNet.go:278: Sent ACK (client: [::1]:56719, IMEI: 352094089712860) +2018/09/16 07:25:19 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:25:19 ruptelaNet.go:261: Data received(client: [::1]:56719, IMEI: 352094089712860) with duration 2.56 s +2018/09/16 07:25:19 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:25:19 ruptelaNet.go:278: Sent ACK (client: [::1]:56719, IMEI: 352094089712860) +2018/09/16 07:25:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56719, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 07:25:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:56750) +2018/09/16 07:25:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:25:33 ruptelaNet.go:261: Data received(client: [::1]:56750, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:25:33 ruptelaNet.go:278: Sent ACK (client: [::1]:56750, IMEI: 352094087982671) +2018/09/16 07:25:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:25:35 ruptelaNet.go:261: Data received(client: [::1]:56750, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:25:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:25:35 ruptelaNet.go:278: Sent ACK (client: [::1]:56750, IMEI: 352094087982671) +2018/09/16 07:25:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56750, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 07:26:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:56809) +2018/09/16 07:26:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:26:02 ruptelaNet.go:261: Data received(client: [::1]:56809, IMEI: 352094087982671) with duration 0.61 s +2018/09/16 07:26:02 ruptelaNet.go:278: Sent ACK (client: [::1]:56809, IMEI: 352094087982671) +2018/09/16 07:26:04 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:26:04 ruptelaNet.go:261: Data received(client: [::1]:56809, IMEI: 352094087982671) with duration 3.28 s +2018/09/16 07:26:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:26:04 ruptelaNet.go:278: Sent ACK (client: [::1]:56809, IMEI: 352094087982671) +2018/09/16 07:26:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56809, IMEI: 352094087982671) with duration 5.35 s +2018/09/16 07:26:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:56866) +2018/09/16 07:26:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:26:28 ruptelaNet.go:261: Data received(client: [::1]:56866, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 07:26:28 ruptelaNet.go:278: Sent ACK (client: [::1]:56866, IMEI: 352094089712860) +2018/09/16 07:26:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:56872) +2018/09/16 07:26:30 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:26:30 ruptelaNet.go:261: Data received(client: [::1]:56866, IMEI: 352094089712860) with duration 2.46 s +2018/09/16 07:26:30 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:26:30 ruptelaNet.go:278: Sent ACK (client: [::1]:56866, IMEI: 352094089712860) +2018/09/16 07:26:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:26:31 ruptelaNet.go:261: Data received(client: [::1]:56872, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:26:31 ruptelaNet.go:278: Sent ACK (client: [::1]:56872, IMEI: 352094087982671) +2018/09/16 07:26:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56866, IMEI: 352094089712860) with duration 3.79 s +2018/09/16 07:26:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:26:34 ruptelaNet.go:261: Data received(client: [::1]:56872, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 07:26:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:26:34 ruptelaNet.go:278: Sent ACK (client: [::1]:56872, IMEI: 352094087982671) +2018/09/16 07:26:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56872, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:26:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:56937) +2018/09/16 07:27:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:27:00 ruptelaNet.go:261: Data received(client: [::1]:56937, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:27:00 ruptelaNet.go:278: Sent ACK (client: [::1]:56937, IMEI: 352094087982671) +2018/09/16 07:27:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:27:02 ruptelaNet.go:261: Data received(client: [::1]:56937, IMEI: 352094087982671) with duration 3.82 s +2018/09/16 07:27:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:27:02 ruptelaNet.go:278: Sent ACK (client: [::1]:56937, IMEI: 352094087982671) +2018/09/16 07:27:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56937, IMEI: 352094087982671) with duration 6.08 s +2018/09/16 07:27:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:56975) +2018/09/16 07:27:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:27:19 ruptelaNet.go:261: Data received(client: [::1]:56975, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:27:19 ruptelaNet.go:278: Sent ACK (client: [::1]:56975, IMEI: 352094089712860) +2018/09/16 07:27:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:27:23 ruptelaNet.go:261: Data received(client: [::1]:56975, IMEI: 352094089712860) with duration 3.89 s +2018/09/16 07:27:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:27:23 ruptelaNet.go:278: Sent ACK (client: [::1]:56975, IMEI: 352094089712860) +2018/09/16 07:27:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56975, IMEI: 352094089712860) with duration 5.43 s +2018/09/16 07:27:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:56992) +2018/09/16 07:27:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:27:29 ruptelaNet.go:261: Data received(client: [::1]:56992, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 07:27:29 ruptelaNet.go:278: Sent ACK (client: [::1]:56992, IMEI: 352094087982671) +2018/09/16 07:27:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:27:31 ruptelaNet.go:261: Data received(client: [::1]:56992, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:27:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:27:31 ruptelaNet.go:278: Sent ACK (client: [::1]:56992, IMEI: 352094087982671) +2018/09/16 07:27:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:56992, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:27:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:57051) +2018/09/16 07:27:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:27:58 ruptelaNet.go:261: Data received(client: [::1]:57051, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 07:27:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57051, IMEI: 352094087982671) +2018/09/16 07:28:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:28:00 ruptelaNet.go:261: Data received(client: [::1]:57051, IMEI: 352094087982671) with duration 3.71 s +2018/09/16 07:28:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:28:00 ruptelaNet.go:278: Sent ACK (client: [::1]:57051, IMEI: 352094087982671) +2018/09/16 07:28:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57051, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 07:28:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:57105) +2018/09/16 07:28:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:28:22 ruptelaNet.go:261: Data received(client: [::1]:57105, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:28:22 ruptelaNet.go:278: Sent ACK (client: [::1]:57105, IMEI: 352094089712860) +2018/09/16 07:28:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:28:24 ruptelaNet.go:261: Data received(client: [::1]:57105, IMEI: 352094089712860) with duration 2.46 s +2018/09/16 07:28:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:28:24 ruptelaNet.go:278: Sent ACK (client: [::1]:57105, IMEI: 352094089712860) +2018/09/16 07:28:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:57115) +2018/09/16 07:28:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:28:27 ruptelaNet.go:261: Data received(client: [::1]:57115, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 07:28:27 ruptelaNet.go:278: Sent ACK (client: [::1]:57115, IMEI: 352094087982671) +2018/09/16 07:28:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57105, IMEI: 352094089712860) with duration 5.83 s +2018/09/16 07:28:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:28:29 ruptelaNet.go:261: Data received(client: [::1]:57115, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:28:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:28:29 ruptelaNet.go:278: Sent ACK (client: [::1]:57115, IMEI: 352094087982671) +2018/09/16 07:28:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57115, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 07:28:54 ruptelaNet.go:200: teltonika New connection(client: [::1]:57171) +2018/09/16 07:28:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:28:56 ruptelaNet.go:261: Data received(client: [::1]:57171, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:28:56 ruptelaNet.go:278: Sent ACK (client: [::1]:57171, IMEI: 352094087982671) +2018/09/16 07:28:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:28:58 ruptelaNet.go:261: Data received(client: [::1]:57171, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 07:28:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:28:58 ruptelaNet.go:278: Sent ACK (client: [::1]:57171, IMEI: 352094087982671) +2018/09/16 07:29:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57171, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 07:29:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:57224) +2018/09/16 07:29:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:29:19 ruptelaNet.go:261: Data received(client: [::1]:57224, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:29:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57224, IMEI: 352094089712860) +2018/09/16 07:29:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:29:21 ruptelaNet.go:261: Data received(client: [::1]:57224, IMEI: 352094089712860) with duration 2.13 s +2018/09/16 07:29:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:29:22 ruptelaNet.go:278: Sent ACK (client: [::1]:57224, IMEI: 352094089712860) +2018/09/16 07:29:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57224, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 07:29:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:57236) +2018/09/16 07:29:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:29:25 ruptelaNet.go:261: Data received(client: [::1]:57236, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 07:29:25 ruptelaNet.go:278: Sent ACK (client: [::1]:57236, IMEI: 352094087982671) +2018/09/16 07:29:28 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:29:28 ruptelaNet.go:261: Data received(client: [::1]:57236, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 07:29:28 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:29:28 ruptelaNet.go:278: Sent ACK (client: [::1]:57236, IMEI: 352094087982671) +2018/09/16 07:29:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57236, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 07:29:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:57265) +2018/09/16 07:29:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57265, IMEI: 0) with duration 15.39 s +2018/09/16 07:29:52 ruptelaNet.go:200: teltonika New connection(client: [::1]:57299) +2018/09/16 07:29:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:57300) +2018/09/16 07:29:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:29:54 ruptelaNet.go:261: Data received(client: [::1]:57300, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 07:29:54 ruptelaNet.go:278: Sent ACK (client: [::1]:57300, IMEI: 352094087982671) +2018/09/16 07:29:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:29:57 ruptelaNet.go:261: Data received(client: [::1]:57300, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 07:29:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:29:57 ruptelaNet.go:278: Sent ACK (client: [::1]:57300, IMEI: 352094087982671) +2018/09/16 07:29:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57300, IMEI: 352094087982671) with duration 6.47 s +2018/09/16 07:30:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57299, IMEI: 0) with duration 15.66 s +2018/09/16 07:30:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:57352) +2018/09/16 07:30:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:30:17 ruptelaNet.go:261: Data received(client: [::1]:57352, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:30:17 ruptelaNet.go:278: Sent ACK (client: [::1]:57352, IMEI: 352094089712860) +2018/09/16 07:30:19 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:30:19 ruptelaNet.go:261: Data received(client: [::1]:57352, IMEI: 352094089712860) with duration 2.44 s +2018/09/16 07:30:19 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:30:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57352, IMEI: 352094089712860) +2018/09/16 07:30:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57352, IMEI: 352094089712860) with duration 4.86 s +2018/09/16 07:30:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:57364) +2018/09/16 07:30:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:30:22 ruptelaNet.go:261: Data received(client: [::1]:57364, IMEI: 352094087982671) with duration 0.39 s +2018/09/16 07:30:22 ruptelaNet.go:278: Sent ACK (client: [::1]:57364, IMEI: 352094087982671) +2018/09/16 07:30:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:30:25 ruptelaNet.go:261: Data received(client: [::1]:57364, IMEI: 352094087982671) with duration 3.17 s +2018/09/16 07:30:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:30:25 ruptelaNet.go:278: Sent ACK (client: [::1]:57364, IMEI: 352094087982671) +2018/09/16 07:30:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57364, IMEI: 352094087982671) with duration 5.35 s +2018/09/16 07:30:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:57417) +2018/09/16 07:30:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:30:52 ruptelaNet.go:261: Data received(client: [::1]:57417, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:30:52 ruptelaNet.go:278: Sent ACK (client: [::1]:57417, IMEI: 352094087982671) +2018/09/16 07:30:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:30:54 ruptelaNet.go:261: Data received(client: [::1]:57417, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 07:30:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:30:54 ruptelaNet.go:278: Sent ACK (client: [::1]:57417, IMEI: 352094087982671) +2018/09/16 07:30:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57417, IMEI: 352094087982671) with duration 6.11 s +2018/09/16 07:31:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:57467) +2018/09/16 07:31:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:31:18 ruptelaNet.go:261: Data received(client: [::1]:57467, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:31:18 ruptelaNet.go:278: Sent ACK (client: [::1]:57467, IMEI: 352094089712860) +2018/09/16 07:31:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:57473) +2018/09/16 07:31:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:31:21 ruptelaNet.go:261: Data received(client: [::1]:57473, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:31:21 ruptelaNet.go:278: Sent ACK (client: [::1]:57473, IMEI: 352094087982671) +2018/09/16 07:31:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:31:21 ruptelaNet.go:261: Data received(client: [::1]:57467, IMEI: 352094089712860) with duration 2.1 s +2018/09/16 07:31:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:31:21 ruptelaNet.go:278: Sent ACK (client: [::1]:57467, IMEI: 352094089712860) +2018/09/16 07:31:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57467, IMEI: 352094089712860) with duration 3.89 s +2018/09/16 07:31:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:31:23 ruptelaNet.go:261: Data received(client: [::1]:57473, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:31:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:31:23 ruptelaNet.go:278: Sent ACK (client: [::1]:57473, IMEI: 352094087982671) +2018/09/16 07:31:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57473, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 07:31:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:57536) +2018/09/16 07:31:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:31:50 ruptelaNet.go:261: Data received(client: [::1]:57536, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:31:50 ruptelaNet.go:278: Sent ACK (client: [::1]:57536, IMEI: 352094087982671) +2018/09/16 07:31:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:31:52 ruptelaNet.go:261: Data received(client: [::1]:57536, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:31:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:31:52 ruptelaNet.go:278: Sent ACK (client: [::1]:57536, IMEI: 352094087982671) +2018/09/16 07:31:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57536, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:32:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:57597) +2018/09/16 07:32:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:32:19 ruptelaNet.go:261: Data received(client: [::1]:57597, IMEI: 352094087982671) with duration 0.91 s +2018/09/16 07:32:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57597, IMEI: 352094087982671) +2018/09/16 07:32:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:57602) +2018/09/16 07:32:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:32:19 ruptelaNet.go:261: Data received(client: [::1]:57602, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:32:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57602, IMEI: 352094089712860) +2018/09/16 07:32:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:32:21 ruptelaNet.go:261: Data received(client: [::1]:57597, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 07:32:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:32:21 ruptelaNet.go:278: Sent ACK (client: [::1]:57597, IMEI: 352094087982671) +2018/09/16 07:32:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57597, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 07:32:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:32:27 ruptelaNet.go:261: Data received(client: [::1]:57602, IMEI: 352094089712860) with duration 8.07 s +2018/09/16 07:32:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:32:27 ruptelaNet.go:278: Sent ACK (client: [::1]:57602, IMEI: 352094089712860) +2018/09/16 07:32:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57602, IMEI: 352094089712860) with duration 9.93 s +2018/09/16 07:32:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:57667) +2018/09/16 07:32:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:32:48 ruptelaNet.go:261: Data received(client: [::1]:57667, IMEI: 352094087982671) with duration 0.02 s +2018/09/16 07:32:48 ruptelaNet.go:278: Sent ACK (client: [::1]:57667, IMEI: 352094087982671) +2018/09/16 07:32:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:32:50 ruptelaNet.go:261: Data received(client: [::1]:57667, IMEI: 352094087982671) with duration 2.62 s +2018/09/16 07:32:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:32:50 ruptelaNet.go:278: Sent ACK (client: [::1]:57667, IMEI: 352094087982671) +2018/09/16 07:32:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57667, IMEI: 352094087982671) with duration 4.97 s +2018/09/16 07:33:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:57726) +2018/09/16 07:33:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:33:16 ruptelaNet.go:261: Data received(client: [::1]:57726, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 07:33:16 ruptelaNet.go:278: Sent ACK (client: [::1]:57726, IMEI: 352094087982671) +2018/09/16 07:33:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:33:19 ruptelaNet.go:261: Data received(client: [::1]:57726, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 07:33:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:33:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57726, IMEI: 352094087982671) +2018/09/16 07:33:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57726, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 07:33:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:57747) +2018/09/16 07:33:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:33:28 ruptelaNet.go:261: Data received(client: [::1]:57747, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:33:28 ruptelaNet.go:278: Sent ACK (client: [::1]:57747, IMEI: 352094089712860) +2018/09/16 07:33:37 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:33:37 ruptelaNet.go:261: Data received(client: [::1]:57747, IMEI: 352094089712860) with duration 8.91 s +2018/09/16 07:33:37 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:33:37 ruptelaNet.go:278: Sent ACK (client: [::1]:57747, IMEI: 352094089712860) +2018/09/16 07:33:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57747, IMEI: 352094089712860) with duration 13.72 s +2018/09/16 07:33:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:57780) +2018/09/16 07:33:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:33:45 ruptelaNet.go:261: Data received(client: [::1]:57780, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:33:45 ruptelaNet.go:278: Sent ACK (client: [::1]:57780, IMEI: 352094087982671) +2018/09/16 07:33:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:33:47 ruptelaNet.go:261: Data received(client: [::1]:57780, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 07:33:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:33:47 ruptelaNet.go:278: Sent ACK (client: [::1]:57780, IMEI: 352094087982671) +2018/09/16 07:33:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57780, IMEI: 352094087982671) with duration 6.02 s +2018/09/16 07:34:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:57846) +2018/09/16 07:34:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:34:14 ruptelaNet.go:261: Data received(client: [::1]:57846, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:34:14 ruptelaNet.go:278: Sent ACK (client: [::1]:57846, IMEI: 352094087982671) +2018/09/16 07:34:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:57857) +2018/09/16 07:34:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:34:17 ruptelaNet.go:261: Data received(client: [::1]:57857, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:34:17 ruptelaNet.go:278: Sent ACK (client: [::1]:57857, IMEI: 352094089712860) +2018/09/16 07:34:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:34:18 ruptelaNet.go:261: Data received(client: [::1]:57846, IMEI: 352094087982671) with duration 4.92 s +2018/09/16 07:34:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:34:18 ruptelaNet.go:278: Sent ACK (client: [::1]:57846, IMEI: 352094087982671) +2018/09/16 07:34:19 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:34:19 ruptelaNet.go:261: Data received(client: [::1]:57857, IMEI: 352094089712860) with duration 2.24 s +2018/09/16 07:34:19 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:34:19 ruptelaNet.go:278: Sent ACK (client: [::1]:57857, IMEI: 352094089712860) +2018/09/16 07:34:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57846, IMEI: 352094087982671) with duration 7.37 s +2018/09/16 07:34:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57857, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 07:34:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:57911) +2018/09/16 07:34:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:34:44 ruptelaNet.go:261: Data received(client: [::1]:57911, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:34:44 ruptelaNet.go:278: Sent ACK (client: [::1]:57911, IMEI: 352094087982671) +2018/09/16 07:34:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:34:47 ruptelaNet.go:261: Data received(client: [::1]:57911, IMEI: 352094087982671) with duration 4 s +2018/09/16 07:34:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:34:47 ruptelaNet.go:278: Sent ACK (client: [::1]:57911, IMEI: 352094087982671) +2018/09/16 07:34:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57911, IMEI: 352094087982671) with duration 6.46 s +2018/09/16 07:35:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:57971) +2018/09/16 07:35:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:35:13 ruptelaNet.go:261: Data received(client: [::1]:57971, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 07:35:13 ruptelaNet.go:278: Sent ACK (client: [::1]:57971, IMEI: 352094087982671) +2018/09/16 07:35:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:35:16 ruptelaNet.go:261: Data received(client: [::1]:57971, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 07:35:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:35:16 ruptelaNet.go:278: Sent ACK (client: [::1]:57971, IMEI: 352094087982671) +2018/09/16 07:35:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:57982) +2018/09/16 07:35:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:35:17 ruptelaNet.go:261: Data received(client: [::1]:57982, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:35:17 ruptelaNet.go:278: Sent ACK (client: [::1]:57982, IMEI: 352094089712860) +2018/09/16 07:35:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:35:20 ruptelaNet.go:261: Data received(client: [::1]:57982, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 07:35:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:35:20 ruptelaNet.go:278: Sent ACK (client: [::1]:57982, IMEI: 352094089712860) +2018/09/16 07:35:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57971, IMEI: 352094087982671) with duration 8.05 s +2018/09/16 07:35:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:57982, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 07:35:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:58035) +2018/09/16 07:35:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:35:44 ruptelaNet.go:261: Data received(client: [::1]:58035, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 07:35:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58035, IMEI: 352094087982671) +2018/09/16 07:35:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:35:47 ruptelaNet.go:261: Data received(client: [::1]:58035, IMEI: 352094087982671) with duration 3.95 s +2018/09/16 07:35:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:35:47 ruptelaNet.go:278: Sent ACK (client: [::1]:58035, IMEI: 352094087982671) +2018/09/16 07:35:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58035, IMEI: 352094087982671) with duration 6.32 s +2018/09/16 07:36:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:58096) +2018/09/16 07:36:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:36:13 ruptelaNet.go:261: Data received(client: [::1]:58096, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 07:36:13 ruptelaNet.go:278: Sent ACK (client: [::1]:58096, IMEI: 352094087982671) +2018/09/16 07:36:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:36:15 ruptelaNet.go:261: Data received(client: [::1]:58096, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 07:36:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:36:15 ruptelaNet.go:278: Sent ACK (client: [::1]:58096, IMEI: 352094087982671) +2018/09/16 07:36:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58096, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:36:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58108) +2018/09/16 07:36:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:36:18 ruptelaNet.go:261: Data received(client: [::1]:58108, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:36:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58108, IMEI: 352094089712860) +2018/09/16 07:36:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:36:21 ruptelaNet.go:261: Data received(client: [::1]:58108, IMEI: 352094089712860) with duration 2.56 s +2018/09/16 07:36:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:36:21 ruptelaNet.go:278: Sent ACK (client: [::1]:58108, IMEI: 352094089712860) +2018/09/16 07:36:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58108, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 07:36:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:58156) +2018/09/16 07:36:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:36:42 ruptelaNet.go:261: Data received(client: [::1]:58156, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:36:42 ruptelaNet.go:278: Sent ACK (client: [::1]:58156, IMEI: 352094087982671) +2018/09/16 07:36:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:36:44 ruptelaNet.go:261: Data received(client: [::1]:58156, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 07:36:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:36:44 ruptelaNet.go:278: Sent ACK (client: [::1]:58156, IMEI: 352094087982671) +2018/09/16 07:36:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58156, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 07:37:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:58214) +2018/09/16 07:37:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:37:11 ruptelaNet.go:261: Data received(client: [::1]:58214, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:37:11 ruptelaNet.go:278: Sent ACK (client: [::1]:58214, IMEI: 352094087982671) +2018/09/16 07:37:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:37:13 ruptelaNet.go:261: Data received(client: [::1]:58214, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:37:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:37:13 ruptelaNet.go:278: Sent ACK (client: [::1]:58214, IMEI: 352094087982671) +2018/09/16 07:37:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58214, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:37:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:58237) +2018/09/16 07:37:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:37:20 ruptelaNet.go:261: Data received(client: [::1]:58237, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:37:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58237, IMEI: 352094089712860) +2018/09/16 07:37:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:37:22 ruptelaNet.go:261: Data received(client: [::1]:58237, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 07:37:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:37:22 ruptelaNet.go:278: Sent ACK (client: [::1]:58237, IMEI: 352094089712860) +2018/09/16 07:37:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58237, IMEI: 352094089712860) with duration 3.38 s +2018/09/16 07:37:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:58273) +2018/09/16 07:37:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:37:40 ruptelaNet.go:261: Data received(client: [::1]:58273, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:37:40 ruptelaNet.go:278: Sent ACK (client: [::1]:58273, IMEI: 352094087982671) +2018/09/16 07:37:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:37:43 ruptelaNet.go:261: Data received(client: [::1]:58273, IMEI: 352094087982671) with duration 4.6 s +2018/09/16 07:37:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:37:43 ruptelaNet.go:278: Sent ACK (client: [::1]:58273, IMEI: 352094087982671) +2018/09/16 07:37:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58273, IMEI: 352094087982671) with duration 6.75 s +2018/09/16 07:38:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:58336) +2018/09/16 07:38:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:38:09 ruptelaNet.go:261: Data received(client: [::1]:58336, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 07:38:09 ruptelaNet.go:278: Sent ACK (client: [::1]:58336, IMEI: 352094087982671) +2018/09/16 07:38:11 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:38:11 ruptelaNet.go:261: Data received(client: [::1]:58336, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 07:38:11 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:38:11 ruptelaNet.go:278: Sent ACK (client: [::1]:58336, IMEI: 352094087982671) +2018/09/16 07:38:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58336, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 07:38:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58357) +2018/09/16 07:38:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:38:18 ruptelaNet.go:261: Data received(client: [::1]:58357, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:38:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58357, IMEI: 352094089712860) +2018/09/16 07:38:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:38:20 ruptelaNet.go:261: Data received(client: [::1]:58357, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 07:38:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:38:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58357, IMEI: 352094089712860) +2018/09/16 07:38:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58357, IMEI: 352094089712860) with duration 3 s +2018/09/16 07:38:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:58393) +2018/09/16 07:38:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:38:38 ruptelaNet.go:261: Data received(client: [::1]:58393, IMEI: 352094087982671) with duration 0.86 s +2018/09/16 07:38:38 ruptelaNet.go:278: Sent ACK (client: [::1]:58393, IMEI: 352094087982671) +2018/09/16 07:38:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:38:40 ruptelaNet.go:261: Data received(client: [::1]:58393, IMEI: 352094087982671) with duration 3.64 s +2018/09/16 07:38:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:38:40 ruptelaNet.go:278: Sent ACK (client: [::1]:58393, IMEI: 352094087982671) +2018/09/16 07:38:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58393, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 07:39:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:58444) +2018/09/16 07:39:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:39:07 ruptelaNet.go:261: Data received(client: [::1]:58444, IMEI: 352094087982671) with duration 1.22 s +2018/09/16 07:39:07 ruptelaNet.go:278: Sent ACK (client: [::1]:58444, IMEI: 352094087982671) +2018/09/16 07:39:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:39:10 ruptelaNet.go:261: Data received(client: [::1]:58444, IMEI: 352094087982671) with duration 4.19 s +2018/09/16 07:39:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:39:10 ruptelaNet.go:278: Sent ACK (client: [::1]:58444, IMEI: 352094087982671) +2018/09/16 07:39:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58444, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 07:39:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58473) +2018/09/16 07:39:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:39:18 ruptelaNet.go:261: Data received(client: [::1]:58473, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:39:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58473, IMEI: 352094089712860) +2018/09/16 07:39:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:39:20 ruptelaNet.go:261: Data received(client: [::1]:58473, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 07:39:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:39:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58473, IMEI: 352094089712860) +2018/09/16 07:39:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58473, IMEI: 352094089712860) with duration 3.4 s +2018/09/16 07:39:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:58506) +2018/09/16 07:39:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:39:36 ruptelaNet.go:261: Data received(client: [::1]:58506, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 07:39:36 ruptelaNet.go:278: Sent ACK (client: [::1]:58506, IMEI: 352094087982671) +2018/09/16 07:39:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:39:38 ruptelaNet.go:261: Data received(client: [::1]:58506, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 07:39:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:39:38 ruptelaNet.go:278: Sent ACK (client: [::1]:58506, IMEI: 352094087982671) +2018/09/16 07:39:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58506, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 07:40:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:58571) +2018/09/16 07:40:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:40:04 ruptelaNet.go:261: Data received(client: [::1]:58571, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 07:40:04 ruptelaNet.go:278: Sent ACK (client: [::1]:58571, IMEI: 352094087982671) +2018/09/16 07:40:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:40:06 ruptelaNet.go:261: Data received(client: [::1]:58571, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 07:40:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:40:06 ruptelaNet.go:278: Sent ACK (client: [::1]:58571, IMEI: 352094087982671) +2018/09/16 07:40:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58571, IMEI: 352094087982671) with duration 6.1 s +2018/09/16 07:40:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58604) +2018/09/16 07:40:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:40:18 ruptelaNet.go:261: Data received(client: [::1]:58604, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:40:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58604, IMEI: 352094089712860) +2018/09/16 07:40:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:40:20 ruptelaNet.go:261: Data received(client: [::1]:58604, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:40:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:40:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58604, IMEI: 352094089712860) +2018/09/16 07:40:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58604, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 07:40:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:58635) +2018/09/16 07:40:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:40:33 ruptelaNet.go:261: Data received(client: [::1]:58635, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:40:33 ruptelaNet.go:278: Sent ACK (client: [::1]:58635, IMEI: 352094087982671) +2018/09/16 07:40:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:40:36 ruptelaNet.go:261: Data received(client: [::1]:58635, IMEI: 352094087982671) with duration 4.4 s +2018/09/16 07:40:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:40:36 ruptelaNet.go:278: Sent ACK (client: [::1]:58635, IMEI: 352094087982671) +2018/09/16 07:40:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58635, IMEI: 352094087982671) with duration 6.65 s +2018/09/16 07:41:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:58694) +2018/09/16 07:41:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:41:02 ruptelaNet.go:261: Data received(client: [::1]:58694, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:41:02 ruptelaNet.go:278: Sent ACK (client: [::1]:58694, IMEI: 352094087982671) +2018/09/16 07:41:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:41:05 ruptelaNet.go:261: Data received(client: [::1]:58694, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:41:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:41:05 ruptelaNet.go:278: Sent ACK (client: [::1]:58694, IMEI: 352094087982671) +2018/09/16 07:41:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58694, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 07:41:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58725) +2018/09/16 07:41:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:41:18 ruptelaNet.go:261: Data received(client: [::1]:58725, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:41:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58725, IMEI: 352094089712860) +2018/09/16 07:41:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:41:20 ruptelaNet.go:261: Data received(client: [::1]:58725, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:41:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:41:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58725, IMEI: 352094089712860) +2018/09/16 07:41:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58725, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 07:41:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:58748) +2018/09/16 07:41:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:41:31 ruptelaNet.go:261: Data received(client: [::1]:58748, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:41:31 ruptelaNet.go:278: Sent ACK (client: [::1]:58748, IMEI: 352094087982671) +2018/09/16 07:41:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:41:33 ruptelaNet.go:261: Data received(client: [::1]:58748, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:41:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:41:33 ruptelaNet.go:278: Sent ACK (client: [::1]:58748, IMEI: 352094087982671) +2018/09/16 07:41:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58748, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 07:41:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:58813) +2018/09/16 07:42:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:42:00 ruptelaNet.go:261: Data received(client: [::1]:58813, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 07:42:00 ruptelaNet.go:278: Sent ACK (client: [::1]:58813, IMEI: 352094087982671) +2018/09/16 07:42:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:42:03 ruptelaNet.go:261: Data received(client: [::1]:58813, IMEI: 352094087982671) with duration 3.93 s +2018/09/16 07:42:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:42:03 ruptelaNet.go:278: Sent ACK (client: [::1]:58813, IMEI: 352094087982671) +2018/09/16 07:42:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58813, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:42:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58845) +2018/09/16 07:42:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:42:18 ruptelaNet.go:261: Data received(client: [::1]:58845, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:42:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58845, IMEI: 352094089712860) +2018/09/16 07:42:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:42:20 ruptelaNet.go:261: Data received(client: [::1]:58845, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 07:42:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:42:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58845, IMEI: 352094089712860) +2018/09/16 07:42:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58845, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 07:42:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:58867) +2018/09/16 07:42:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:42:29 ruptelaNet.go:261: Data received(client: [::1]:58867, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:42:29 ruptelaNet.go:278: Sent ACK (client: [::1]:58867, IMEI: 352094087982671) +2018/09/16 07:42:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:42:32 ruptelaNet.go:261: Data received(client: [::1]:58867, IMEI: 352094087982671) with duration 4.58 s +2018/09/16 07:42:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:42:32 ruptelaNet.go:278: Sent ACK (client: [::1]:58867, IMEI: 352094087982671) +2018/09/16 07:42:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58867, IMEI: 352094087982671) with duration 6.73 s +2018/09/16 07:42:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:58926) +2018/09/16 07:42:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:42:59 ruptelaNet.go:261: Data received(client: [::1]:58926, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:42:59 ruptelaNet.go:278: Sent ACK (client: [::1]:58926, IMEI: 352094087982671) +2018/09/16 07:43:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:43:02 ruptelaNet.go:261: Data received(client: [::1]:58926, IMEI: 352094087982671) with duration 4.2 s +2018/09/16 07:43:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:43:02 ruptelaNet.go:278: Sent ACK (client: [::1]:58926, IMEI: 352094087982671) +2018/09/16 07:43:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58926, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 07:43:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:58967) +2018/09/16 07:43:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:43:18 ruptelaNet.go:261: Data received(client: [::1]:58967, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:43:18 ruptelaNet.go:278: Sent ACK (client: [::1]:58967, IMEI: 352094089712860) +2018/09/16 07:43:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:43:20 ruptelaNet.go:261: Data received(client: [::1]:58967, IMEI: 352094089712860) with duration 2.15 s +2018/09/16 07:43:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:43:20 ruptelaNet.go:278: Sent ACK (client: [::1]:58967, IMEI: 352094089712860) +2018/09/16 07:43:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58967, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 07:43:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:58990) +2018/09/16 07:43:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:43:28 ruptelaNet.go:261: Data received(client: [::1]:58990, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:43:28 ruptelaNet.go:278: Sent ACK (client: [::1]:58990, IMEI: 352094087982671) +2018/09/16 07:43:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:43:32 ruptelaNet.go:261: Data received(client: [::1]:58990, IMEI: 352094087982671) with duration 5.61 s +2018/09/16 07:43:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:43:32 ruptelaNet.go:278: Sent ACK (client: [::1]:58990, IMEI: 352094087982671) +2018/09/16 07:43:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:58990, IMEI: 352094087982671) with duration 7.86 s +2018/09/16 07:43:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:59052) +2018/09/16 07:43:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:43:59 ruptelaNet.go:261: Data received(client: [::1]:59052, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 07:43:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59052, IMEI: 352094087982671) +2018/09/16 07:44:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:44:01 ruptelaNet.go:261: Data received(client: [::1]:59052, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 07:44:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:44:01 ruptelaNet.go:278: Sent ACK (client: [::1]:59052, IMEI: 352094087982671) +2018/09/16 07:44:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59052, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 07:44:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:59092) +2018/09/16 07:44:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:44:18 ruptelaNet.go:261: Data received(client: [::1]:59092, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:44:18 ruptelaNet.go:278: Sent ACK (client: [::1]:59092, IMEI: 352094089712860) +2018/09/16 07:44:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:44:20 ruptelaNet.go:261: Data received(client: [::1]:59092, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:44:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:44:20 ruptelaNet.go:278: Sent ACK (client: [::1]:59092, IMEI: 352094089712860) +2018/09/16 07:44:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59092, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 07:44:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:59104) +2018/09/16 07:44:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:44:29 ruptelaNet.go:261: Data received(client: [::1]:59104, IMEI: 352094087982671) with duration 3.04 s +2018/09/16 07:44:29 ruptelaNet.go:278: Sent ACK (client: [::1]:59104, IMEI: 352094087982671) +2018/09/16 07:44:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:44:32 ruptelaNet.go:261: Data received(client: [::1]:59104, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 07:44:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:44:32 ruptelaNet.go:278: Sent ACK (client: [::1]:59104, IMEI: 352094087982671) +2018/09/16 07:44:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59104, IMEI: 352094087982671) with duration 8.39 s +2018/09/16 07:44:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:59173) +2018/09/16 07:44:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:44:58 ruptelaNet.go:261: Data received(client: [::1]:59173, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:44:58 ruptelaNet.go:278: Sent ACK (client: [::1]:59173, IMEI: 352094087982671) +2018/09/16 07:45:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:45:00 ruptelaNet.go:261: Data received(client: [::1]:59173, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 07:45:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:45:00 ruptelaNet.go:278: Sent ACK (client: [::1]:59173, IMEI: 352094087982671) +2018/09/16 07:45:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59173, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 07:45:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:59215) +2018/09/16 07:45:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:45:18 ruptelaNet.go:261: Data received(client: [::1]:59215, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:45:18 ruptelaNet.go:278: Sent ACK (client: [::1]:59215, IMEI: 352094089712860) +2018/09/16 07:45:20 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:45:20 ruptelaNet.go:261: Data received(client: [::1]:59215, IMEI: 352094089712860) with duration 2.03 s +2018/09/16 07:45:20 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:45:20 ruptelaNet.go:278: Sent ACK (client: [::1]:59215, IMEI: 352094089712860) +2018/09/16 07:45:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59215, IMEI: 352094089712860) with duration 3.36 s +2018/09/16 07:45:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:59231) +2018/09/16 07:45:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:45:27 ruptelaNet.go:261: Data received(client: [::1]:59231, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 07:45:27 ruptelaNet.go:278: Sent ACK (client: [::1]:59231, IMEI: 352094087982671) +2018/09/16 07:45:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:45:29 ruptelaNet.go:261: Data received(client: [::1]:59231, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:45:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:45:29 ruptelaNet.go:278: Sent ACK (client: [::1]:59231, IMEI: 352094087982671) +2018/09/16 07:45:31 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59231, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 07:45:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:59284) +2018/09/16 07:45:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:45:56 ruptelaNet.go:261: Data received(client: [::1]:59284, IMEI: 352094087982671) with duration 1.06 s +2018/09/16 07:45:56 ruptelaNet.go:278: Sent ACK (client: [::1]:59284, IMEI: 352094087982671) +2018/09/16 07:45:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:45:58 ruptelaNet.go:261: Data received(client: [::1]:59284, IMEI: 352094087982671) with duration 3.93 s +2018/09/16 07:45:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:45:59 ruptelaNet.go:278: Sent ACK (client: [::1]:59284, IMEI: 352094087982671) +2018/09/16 07:46:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59284, IMEI: 352094087982671) with duration 8.64 s +2018/09/16 07:46:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:59332) +2018/09/16 07:46:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:46:18 ruptelaNet.go:261: Data received(client: [::1]:59332, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:46:18 ruptelaNet.go:278: Sent ACK (client: [::1]:59332, IMEI: 352094089712860) +2018/09/16 07:46:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:46:21 ruptelaNet.go:261: Data received(client: [::1]:59332, IMEI: 352094089712860) with duration 2.12 s +2018/09/16 07:46:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:46:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59332, IMEI: 352094089712860) +2018/09/16 07:46:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59332, IMEI: 352094089712860) with duration 3.14 s +2018/09/16 07:46:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:59343) +2018/09/16 07:46:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:46:25 ruptelaNet.go:261: Data received(client: [::1]:59343, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:46:25 ruptelaNet.go:278: Sent ACK (client: [::1]:59343, IMEI: 352094087982671) +2018/09/16 07:46:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:46:27 ruptelaNet.go:261: Data received(client: [::1]:59343, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:46:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:46:27 ruptelaNet.go:278: Sent ACK (client: [::1]:59343, IMEI: 352094087982671) +2018/09/16 07:46:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59343, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:46:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:59399) +2018/09/16 07:46:53 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:46:53 ruptelaNet.go:261: Data received(client: [::1]:59399, IMEI: 352094087982671) with duration 0.82 s +2018/09/16 07:46:53 ruptelaNet.go:278: Sent ACK (client: [::1]:59399, IMEI: 352094087982671) +2018/09/16 07:46:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:46:56 ruptelaNet.go:261: Data received(client: [::1]:59399, IMEI: 352094087982671) with duration 3.59 s +2018/09/16 07:46:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:46:56 ruptelaNet.go:278: Sent ACK (client: [::1]:59399, IMEI: 352094087982671) +2018/09/16 07:46:58 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59399, IMEI: 352094087982671) with duration 5.74 s +2018/09/16 07:47:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:59447) +2018/09/16 07:47:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:47:19 ruptelaNet.go:261: Data received(client: [::1]:59447, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:47:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59447, IMEI: 352094089712860) +2018/09/16 07:47:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:47:21 ruptelaNet.go:261: Data received(client: [::1]:59447, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 07:47:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:47:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59447, IMEI: 352094089712860) +2018/09/16 07:47:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:59454) +2018/09/16 07:47:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59447, IMEI: 352094089712860) with duration 3.48 s +2018/09/16 07:47:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:47:23 ruptelaNet.go:261: Data received(client: [::1]:59454, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:47:23 ruptelaNet.go:278: Sent ACK (client: [::1]:59454, IMEI: 352094087982671) +2018/09/16 07:47:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:47:25 ruptelaNet.go:261: Data received(client: [::1]:59454, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 07:47:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:47:25 ruptelaNet.go:278: Sent ACK (client: [::1]:59454, IMEI: 352094087982671) +2018/09/16 07:47:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59454, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 07:47:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:59518) +2018/09/16 07:47:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:47:52 ruptelaNet.go:261: Data received(client: [::1]:59518, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 07:47:52 ruptelaNet.go:278: Sent ACK (client: [::1]:59518, IMEI: 352094087982671) +2018/09/16 07:47:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:47:54 ruptelaNet.go:261: Data received(client: [::1]:59518, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:47:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:47:54 ruptelaNet.go:278: Sent ACK (client: [::1]:59518, IMEI: 352094087982671) +2018/09/16 07:47:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59518, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 07:48:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:59577) +2018/09/16 07:48:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:48:19 ruptelaNet.go:261: Data received(client: [::1]:59577, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:48:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59577, IMEI: 352094089712860) +2018/09/16 07:48:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:59578) +2018/09/16 07:48:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:48:21 ruptelaNet.go:261: Data received(client: [::1]:59578, IMEI: 352094087982671) with duration 1.07 s +2018/09/16 07:48:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59578, IMEI: 352094087982671) +2018/09/16 07:48:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:48:21 ruptelaNet.go:261: Data received(client: [::1]:59577, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 07:48:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:48:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59577, IMEI: 352094089712860) +2018/09/16 07:48:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59577, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 07:48:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:48:23 ruptelaNet.go:261: Data received(client: [::1]:59578, IMEI: 352094087982671) with duration 3.84 s +2018/09/16 07:48:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:48:23 ruptelaNet.go:278: Sent ACK (client: [::1]:59578, IMEI: 352094087982671) +2018/09/16 07:48:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59578, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 07:48:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:59641) +2018/09/16 07:48:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:48:50 ruptelaNet.go:261: Data received(client: [::1]:59641, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:48:50 ruptelaNet.go:278: Sent ACK (client: [::1]:59641, IMEI: 352094087982671) +2018/09/16 07:48:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:48:52 ruptelaNet.go:261: Data received(client: [::1]:59641, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:48:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:48:52 ruptelaNet.go:278: Sent ACK (client: [::1]:59641, IMEI: 352094087982671) +2018/09/16 07:48:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59641, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 07:49:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:59702) +2018/09/16 07:49:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:49:19 ruptelaNet.go:261: Data received(client: [::1]:59702, IMEI: 352094087982671) with duration 1 s +2018/09/16 07:49:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59702, IMEI: 352094087982671) +2018/09/16 07:49:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:59703) +2018/09/16 07:49:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:49:19 ruptelaNet.go:261: Data received(client: [::1]:59703, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:49:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59703, IMEI: 352094089712860) +2018/09/16 07:49:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:49:21 ruptelaNet.go:261: Data received(client: [::1]:59703, IMEI: 352094089712860) with duration 1.96 s +2018/09/16 07:49:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:49:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59703, IMEI: 352094089712860) +2018/09/16 07:49:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:49:21 ruptelaNet.go:261: Data received(client: [::1]:59702, IMEI: 352094087982671) with duration 3.77 s +2018/09/16 07:49:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:49:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59702, IMEI: 352094087982671) +2018/09/16 07:49:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59703, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 07:49:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59702, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 07:49:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:59766) +2018/09/16 07:49:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:49:48 ruptelaNet.go:261: Data received(client: [::1]:59766, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 07:49:48 ruptelaNet.go:278: Sent ACK (client: [::1]:59766, IMEI: 352094087982671) +2018/09/16 07:49:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:49:50 ruptelaNet.go:261: Data received(client: [::1]:59766, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 07:49:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:49:50 ruptelaNet.go:278: Sent ACK (client: [::1]:59766, IMEI: 352094087982671) +2018/09/16 07:49:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59766, IMEI: 352094087982671) with duration 5.92 s +2018/09/16 07:50:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:59823) +2018/09/16 07:50:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:50:17 ruptelaNet.go:261: Data received(client: [::1]:59823, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 07:50:17 ruptelaNet.go:278: Sent ACK (client: [::1]:59823, IMEI: 352094087982671) +2018/09/16 07:50:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:59833) +2018/09/16 07:50:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:50:19 ruptelaNet.go:261: Data received(client: [::1]:59833, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:50:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59833, IMEI: 352094089712860) +2018/09/16 07:50:19 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:50:19 ruptelaNet.go:261: Data received(client: [::1]:59823, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 07:50:19 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:50:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59823, IMEI: 352094087982671) +2018/09/16 07:50:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:50:21 ruptelaNet.go:261: Data received(client: [::1]:59833, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 07:50:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:50:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59833, IMEI: 352094089712860) +2018/09/16 07:50:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59823, IMEI: 352094087982671) with duration 6.26 s +2018/09/16 07:50:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59833, IMEI: 352094089712860) with duration 3.28 s +2018/09/16 07:50:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:59886) +2018/09/16 07:50:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:50:46 ruptelaNet.go:261: Data received(client: [::1]:59886, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 07:50:46 ruptelaNet.go:278: Sent ACK (client: [::1]:59886, IMEI: 352094087982671) +2018/09/16 07:50:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:50:48 ruptelaNet.go:261: Data received(client: [::1]:59886, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 07:50:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:50:48 ruptelaNet.go:278: Sent ACK (client: [::1]:59886, IMEI: 352094087982671) +2018/09/16 07:50:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59886, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 07:51:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:59949) +2018/09/16 07:51:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:51:15 ruptelaNet.go:261: Data received(client: [::1]:59949, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:51:15 ruptelaNet.go:278: Sent ACK (client: [::1]:59949, IMEI: 352094087982671) +2018/09/16 07:51:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:51:17 ruptelaNet.go:261: Data received(client: [::1]:59949, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:51:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:51:17 ruptelaNet.go:278: Sent ACK (client: [::1]:59949, IMEI: 352094087982671) +2018/09/16 07:51:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:59961) +2018/09/16 07:51:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:51:19 ruptelaNet.go:261: Data received(client: [::1]:59961, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:51:19 ruptelaNet.go:278: Sent ACK (client: [::1]:59961, IMEI: 352094089712860) +2018/09/16 07:51:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59949, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 07:51:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:51:21 ruptelaNet.go:261: Data received(client: [::1]:59961, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 07:51:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:51:21 ruptelaNet.go:278: Sent ACK (client: [::1]:59961, IMEI: 352094089712860) +2018/09/16 07:51:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:59961, IMEI: 352094089712860) with duration 2.7 s +2018/09/16 07:51:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:60009) +2018/09/16 07:51:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:51:44 ruptelaNet.go:261: Data received(client: [::1]:60009, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 07:51:44 ruptelaNet.go:278: Sent ACK (client: [::1]:60009, IMEI: 352094087982671) +2018/09/16 07:51:46 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:51:46 ruptelaNet.go:261: Data received(client: [::1]:60009, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 07:51:46 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:51:46 ruptelaNet.go:278: Sent ACK (client: [::1]:60009, IMEI: 352094087982671) +2018/09/16 07:51:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60009, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:52:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:60072) +2018/09/16 07:52:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:52:13 ruptelaNet.go:261: Data received(client: [::1]:60072, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 07:52:13 ruptelaNet.go:278: Sent ACK (client: [::1]:60072, IMEI: 352094087982671) +2018/09/16 07:52:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:52:15 ruptelaNet.go:261: Data received(client: [::1]:60072, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 07:52:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:52:15 ruptelaNet.go:278: Sent ACK (client: [::1]:60072, IMEI: 352094087982671) +2018/09/16 07:52:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60072, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 07:52:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:60089) +2018/09/16 07:52:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:52:19 ruptelaNet.go:261: Data received(client: [::1]:60089, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:52:19 ruptelaNet.go:278: Sent ACK (client: [::1]:60089, IMEI: 352094089712860) +2018/09/16 07:52:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:52:21 ruptelaNet.go:261: Data received(client: [::1]:60089, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:52:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:52:21 ruptelaNet.go:278: Sent ACK (client: [::1]:60089, IMEI: 352094089712860) +2018/09/16 07:52:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60089, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 07:52:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:60130) +2018/09/16 07:52:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:52:42 ruptelaNet.go:261: Data received(client: [::1]:60130, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:52:42 ruptelaNet.go:278: Sent ACK (client: [::1]:60130, IMEI: 352094087982671) +2018/09/16 07:52:44 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:52:44 ruptelaNet.go:261: Data received(client: [::1]:60130, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:52:44 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:52:44 ruptelaNet.go:278: Sent ACK (client: [::1]:60130, IMEI: 352094087982671) +2018/09/16 07:52:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60130, IMEI: 352094087982671) with duration 5.82 s +2018/09/16 07:53:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:60189) +2018/09/16 07:53:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:53:11 ruptelaNet.go:261: Data received(client: [::1]:60189, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 07:53:11 ruptelaNet.go:278: Sent ACK (client: [::1]:60189, IMEI: 352094087982671) +2018/09/16 07:53:14 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:53:14 ruptelaNet.go:261: Data received(client: [::1]:60189, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 07:53:14 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:53:14 ruptelaNet.go:278: Sent ACK (client: [::1]:60189, IMEI: 352094087982671) +2018/09/16 07:53:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60189, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 07:53:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:60207) +2018/09/16 07:53:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:53:19 ruptelaNet.go:261: Data received(client: [::1]:60207, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:53:19 ruptelaNet.go:278: Sent ACK (client: [::1]:60207, IMEI: 352094089712860) +2018/09/16 07:53:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:53:22 ruptelaNet.go:261: Data received(client: [::1]:60207, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 07:53:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:53:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60207, IMEI: 352094089712860) +2018/09/16 07:53:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60207, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 07:53:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:60246) +2018/09/16 07:53:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:53:40 ruptelaNet.go:261: Data received(client: [::1]:60246, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:53:40 ruptelaNet.go:278: Sent ACK (client: [::1]:60246, IMEI: 352094087982671) +2018/09/16 07:53:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:53:42 ruptelaNet.go:261: Data received(client: [::1]:60246, IMEI: 352094087982671) with duration 3.58 s +2018/09/16 07:53:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:53:42 ruptelaNet.go:278: Sent ACK (client: [::1]:60246, IMEI: 352094087982671) +2018/09/16 07:53:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60246, IMEI: 352094087982671) with duration 5.73 s +2018/09/16 07:54:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:60309) +2018/09/16 07:54:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:54:08 ruptelaNet.go:261: Data received(client: [::1]:60309, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 07:54:08 ruptelaNet.go:278: Sent ACK (client: [::1]:60309, IMEI: 352094087982671) +2018/09/16 07:54:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:54:10 ruptelaNet.go:261: Data received(client: [::1]:60309, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:54:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:54:10 ruptelaNet.go:278: Sent ACK (client: [::1]:60309, IMEI: 352094087982671) +2018/09/16 07:54:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60309, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 07:54:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:60335) +2018/09/16 07:54:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:54:19 ruptelaNet.go:261: Data received(client: [::1]:60335, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:54:19 ruptelaNet.go:278: Sent ACK (client: [::1]:60335, IMEI: 352094089712860) +2018/09/16 07:54:21 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:54:21 ruptelaNet.go:261: Data received(client: [::1]:60335, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 07:54:21 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:54:21 ruptelaNet.go:278: Sent ACK (client: [::1]:60335, IMEI: 352094089712860) +2018/09/16 07:54:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60335, IMEI: 352094089712860) with duration 3.15 s +2018/09/16 07:54:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:60368) +2018/09/16 07:54:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:54:37 ruptelaNet.go:261: Data received(client: [::1]:60368, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 07:54:37 ruptelaNet.go:278: Sent ACK (client: [::1]:60368, IMEI: 352094087982671) +2018/09/16 07:54:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:54:39 ruptelaNet.go:261: Data received(client: [::1]:60368, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 07:54:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:54:39 ruptelaNet.go:278: Sent ACK (client: [::1]:60368, IMEI: 352094087982671) +2018/09/16 07:54:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60368, IMEI: 352094087982671) with duration 5.78 s +2018/09/16 07:55:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:60426) +2018/09/16 07:55:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:55:06 ruptelaNet.go:261: Data received(client: [::1]:60426, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:55:06 ruptelaNet.go:278: Sent ACK (client: [::1]:60426, IMEI: 352094087982671) +2018/09/16 07:55:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:55:08 ruptelaNet.go:261: Data received(client: [::1]:60426, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:55:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:55:08 ruptelaNet.go:278: Sent ACK (client: [::1]:60426, IMEI: 352094087982671) +2018/09/16 07:55:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60426, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 07:55:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:60458) +2018/09/16 07:55:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:55:19 ruptelaNet.go:261: Data received(client: [::1]:60458, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:55:19 ruptelaNet.go:278: Sent ACK (client: [::1]:60458, IMEI: 352094089712860) +2018/09/16 07:55:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:55:22 ruptelaNet.go:261: Data received(client: [::1]:60458, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 07:55:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:55:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60458, IMEI: 352094089712860) +2018/09/16 07:55:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60458, IMEI: 352094089712860) with duration 2.8 s +2018/09/16 07:55:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:60490) +2018/09/16 07:55:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:55:35 ruptelaNet.go:261: Data received(client: [::1]:60490, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:55:35 ruptelaNet.go:278: Sent ACK (client: [::1]:60490, IMEI: 352094087982671) +2018/09/16 07:55:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:55:37 ruptelaNet.go:261: Data received(client: [::1]:60490, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:55:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:55:37 ruptelaNet.go:278: Sent ACK (client: [::1]:60490, IMEI: 352094087982671) +2018/09/16 07:55:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60490, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:56:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:60547) +2018/09/16 07:56:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:56:04 ruptelaNet.go:261: Data received(client: [::1]:60547, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:56:04 ruptelaNet.go:278: Sent ACK (client: [::1]:60547, IMEI: 352094087982671) +2018/09/16 07:56:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:56:06 ruptelaNet.go:261: Data received(client: [::1]:60547, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 07:56:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:56:06 ruptelaNet.go:278: Sent ACK (client: [::1]:60547, IMEI: 352094087982671) +2018/09/16 07:56:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60547, IMEI: 352094087982671) with duration 5.91 s +2018/09/16 07:56:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:60577) +2018/09/16 07:56:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:56:20 ruptelaNet.go:261: Data received(client: [::1]:60577, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:56:20 ruptelaNet.go:278: Sent ACK (client: [::1]:60577, IMEI: 352094089712860) +2018/09/16 07:56:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:56:22 ruptelaNet.go:261: Data received(client: [::1]:60577, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 07:56:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:56:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60577, IMEI: 352094089712860) +2018/09/16 07:56:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60577, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 07:56:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:60605) +2018/09/16 07:56:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:56:33 ruptelaNet.go:261: Data received(client: [::1]:60605, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 07:56:33 ruptelaNet.go:278: Sent ACK (client: [::1]:60605, IMEI: 352094087982671) +2018/09/16 07:56:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:56:35 ruptelaNet.go:261: Data received(client: [::1]:60605, IMEI: 352094087982671) with duration 3.72 s +2018/09/16 07:56:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:56:35 ruptelaNet.go:278: Sent ACK (client: [::1]:60605, IMEI: 352094087982671) +2018/09/16 07:56:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60605, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 07:57:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:60666) +2018/09/16 07:57:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:57:02 ruptelaNet.go:261: Data received(client: [::1]:60666, IMEI: 352094087982671) with duration 0.9 s +2018/09/16 07:57:02 ruptelaNet.go:278: Sent ACK (client: [::1]:60666, IMEI: 352094087982671) +2018/09/16 07:57:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:57:05 ruptelaNet.go:261: Data received(client: [::1]:60666, IMEI: 352094087982671) with duration 3.65 s +2018/09/16 07:57:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:57:05 ruptelaNet.go:278: Sent ACK (client: [::1]:60666, IMEI: 352094087982671) +2018/09/16 07:57:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60666, IMEI: 352094087982671) with duration 5.72 s +2018/09/16 07:57:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:60699) +2018/09/16 07:57:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:57:20 ruptelaNet.go:261: Data received(client: [::1]:60699, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:57:20 ruptelaNet.go:278: Sent ACK (client: [::1]:60699, IMEI: 352094089712860) +2018/09/16 07:57:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:57:22 ruptelaNet.go:261: Data received(client: [::1]:60699, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 07:57:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:57:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60699, IMEI: 352094089712860) +2018/09/16 07:57:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60699, IMEI: 352094089712860) with duration 2.89 s +2018/09/16 07:57:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:60721) +2018/09/16 07:57:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:57:31 ruptelaNet.go:261: Data received(client: [::1]:60721, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:57:31 ruptelaNet.go:278: Sent ACK (client: [::1]:60721, IMEI: 352094087982671) +2018/09/16 07:57:33 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:57:33 ruptelaNet.go:261: Data received(client: [::1]:60721, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 07:57:33 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:57:33 ruptelaNet.go:278: Sent ACK (client: [::1]:60721, IMEI: 352094087982671) +2018/09/16 07:57:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60721, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:57:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:60780) +2018/09/16 07:58:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:58:00 ruptelaNet.go:261: Data received(client: [::1]:60780, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:58:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60780, IMEI: 352094087982671) +2018/09/16 07:58:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:58:03 ruptelaNet.go:261: Data received(client: [::1]:60780, IMEI: 352094087982671) with duration 3.85 s +2018/09/16 07:58:03 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:58:03 ruptelaNet.go:278: Sent ACK (client: [::1]:60780, IMEI: 352094087982671) +2018/09/16 07:58:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60780, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 07:58:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:60826) +2018/09/16 07:58:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:58:20 ruptelaNet.go:261: Data received(client: [::1]:60826, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:58:20 ruptelaNet.go:278: Sent ACK (client: [::1]:60826, IMEI: 352094089712860) +2018/09/16 07:58:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:58:22 ruptelaNet.go:261: Data received(client: [::1]:60826, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:58:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:58:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60826, IMEI: 352094089712860) +2018/09/16 07:58:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60826, IMEI: 352094089712860) with duration 2.88 s +2018/09/16 07:58:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:60844) +2018/09/16 07:58:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:58:29 ruptelaNet.go:261: Data received(client: [::1]:60844, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 07:58:29 ruptelaNet.go:278: Sent ACK (client: [::1]:60844, IMEI: 352094087982671) +2018/09/16 07:58:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:58:31 ruptelaNet.go:261: Data received(client: [::1]:60844, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 07:58:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:58:31 ruptelaNet.go:278: Sent ACK (client: [::1]:60844, IMEI: 352094087982671) +2018/09/16 07:58:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60844, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 07:58:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:60909) +2018/09/16 07:58:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:58:58 ruptelaNet.go:261: Data received(client: [::1]:60909, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 07:58:58 ruptelaNet.go:278: Sent ACK (client: [::1]:60909, IMEI: 352094087982671) +2018/09/16 07:59:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:59:00 ruptelaNet.go:261: Data received(client: [::1]:60909, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 07:59:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:59:00 ruptelaNet.go:278: Sent ACK (client: [::1]:60909, IMEI: 352094087982671) +2018/09/16 07:59:02 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60909, IMEI: 352094087982671) with duration 5.8 s +2018/09/16 07:59:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:60956) +2018/09/16 07:59:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:59:20 ruptelaNet.go:261: Data received(client: [::1]:60956, IMEI: 352094089712860) with duration 0 s +2018/09/16 07:59:20 ruptelaNet.go:278: Sent ACK (client: [::1]:60956, IMEI: 352094089712860) +2018/09/16 07:59:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 07:59:22 ruptelaNet.go:261: Data received(client: [::1]:60956, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 07:59:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 07:59:22 ruptelaNet.go:278: Sent ACK (client: [::1]:60956, IMEI: 352094089712860) +2018/09/16 07:59:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60956, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 07:59:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:60963) +2018/09/16 07:59:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:59:27 ruptelaNet.go:261: Data received(client: [::1]:60963, IMEI: 352094087982671) with duration 1.16 s +2018/09/16 07:59:27 ruptelaNet.go:278: Sent ACK (client: [::1]:60963, IMEI: 352094087982671) +2018/09/16 07:59:29 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:59:29 ruptelaNet.go:261: Data received(client: [::1]:60963, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 07:59:29 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:59:29 ruptelaNet.go:278: Sent ACK (client: [::1]:60963, IMEI: 352094087982671) +2018/09/16 07:59:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:60963, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 07:59:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:61024) +2018/09/16 07:59:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 07:59:56 ruptelaNet.go:261: Data received(client: [::1]:61024, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 07:59:56 ruptelaNet.go:278: Sent ACK (client: [::1]:61024, IMEI: 352094087982671) +2018/09/16 07:59:58 ruptelaNet.go:355: data packet length : 427 +2018/09/16 07:59:58 ruptelaNet.go:261: Data received(client: [::1]:61024, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 07:59:58 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 07:59:58 ruptelaNet.go:278: Sent ACK (client: [::1]:61024, IMEI: 352094087982671) +2018/09/16 08:00:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61024, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 08:00:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61077) +2018/09/16 08:00:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:00:20 ruptelaNet.go:261: Data received(client: [::1]:61077, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:00:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61077, IMEI: 352094089712860) +2018/09/16 08:00:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:00:22 ruptelaNet.go:261: Data received(client: [::1]:61077, IMEI: 352094089712860) with duration 2.06 s +2018/09/16 08:00:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:00:22 ruptelaNet.go:278: Sent ACK (client: [::1]:61077, IMEI: 352094089712860) +2018/09/16 08:00:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61077, IMEI: 352094089712860) with duration 2.82 s +2018/09/16 08:00:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:61084) +2018/09/16 08:00:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:00:25 ruptelaNet.go:261: Data received(client: [::1]:61084, IMEI: 352094087982671) with duration 1.1 s +2018/09/16 08:00:25 ruptelaNet.go:278: Sent ACK (client: [::1]:61084, IMEI: 352094087982671) +2018/09/16 08:00:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:00:27 ruptelaNet.go:261: Data received(client: [::1]:61084, IMEI: 352094087982671) with duration 3.86 s +2018/09/16 08:00:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:00:27 ruptelaNet.go:278: Sent ACK (client: [::1]:61084, IMEI: 352094087982671) +2018/09/16 08:00:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61084, IMEI: 352094087982671) with duration 6.01 s +2018/09/16 08:00:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:61140) +2018/09/16 08:00:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:00:54 ruptelaNet.go:261: Data received(client: [::1]:61140, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 08:00:54 ruptelaNet.go:278: Sent ACK (client: [::1]:61140, IMEI: 352094087982671) +2018/09/16 08:00:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:00:56 ruptelaNet.go:261: Data received(client: [::1]:61140, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:00:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:00:56 ruptelaNet.go:278: Sent ACK (client: [::1]:61140, IMEI: 352094087982671) +2018/09/16 08:00:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61140, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:01:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61191) +2018/09/16 08:01:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:01:20 ruptelaNet.go:261: Data received(client: [::1]:61191, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:01:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61191, IMEI: 352094089712860) +2018/09/16 08:01:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:61197) +2018/09/16 08:01:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:01:23 ruptelaNet.go:261: Data received(client: [::1]:61197, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:01:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61197, IMEI: 352094087982671) +2018/09/16 08:01:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:01:23 ruptelaNet.go:261: Data received(client: [::1]:61191, IMEI: 352094089712860) with duration 2.46 s +2018/09/16 08:01:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:01:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61191, IMEI: 352094089712860) +2018/09/16 08:01:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61191, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 08:01:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:01:25 ruptelaNet.go:261: Data received(client: [::1]:61197, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:01:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:01:25 ruptelaNet.go:278: Sent ACK (client: [::1]:61197, IMEI: 352094087982671) +2018/09/16 08:01:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61197, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 08:01:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:61256) +2018/09/16 08:01:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:01:52 ruptelaNet.go:261: Data received(client: [::1]:61256, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 08:01:52 ruptelaNet.go:278: Sent ACK (client: [::1]:61256, IMEI: 352094087982671) +2018/09/16 08:01:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:01:55 ruptelaNet.go:261: Data received(client: [::1]:61256, IMEI: 352094087982671) with duration 4 s +2018/09/16 08:01:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:01:55 ruptelaNet.go:278: Sent ACK (client: [::1]:61256, IMEI: 352094087982671) +2018/09/16 08:01:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61256, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 08:02:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61311) +2018/09/16 08:02:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61317) +2018/09/16 08:02:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:02:20 ruptelaNet.go:261: Data received(client: [::1]:61317, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:02:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61317, IMEI: 352094089712860) +2018/09/16 08:02:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:02:21 ruptelaNet.go:261: Data received(client: [::1]:61311, IMEI: 352094087982671) with duration 0.95 s +2018/09/16 08:02:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61311, IMEI: 352094087982671) +2018/09/16 08:02:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:02:22 ruptelaNet.go:261: Data received(client: [::1]:61317, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:02:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:02:22 ruptelaNet.go:278: Sent ACK (client: [::1]:61317, IMEI: 352094089712860) +2018/09/16 08:02:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61317, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 08:02:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:02:23 ruptelaNet.go:261: Data received(client: [::1]:61311, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:02:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:02:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61311, IMEI: 352094087982671) +2018/09/16 08:02:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61311, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 08:02:49 ruptelaNet.go:200: teltonika New connection(client: [::1]:61372) +2018/09/16 08:02:50 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:02:50 ruptelaNet.go:261: Data received(client: [::1]:61372, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:02:50 ruptelaNet.go:278: Sent ACK (client: [::1]:61372, IMEI: 352094087982671) +2018/09/16 08:02:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:02:52 ruptelaNet.go:261: Data received(client: [::1]:61372, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:02:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:02:52 ruptelaNet.go:278: Sent ACK (client: [::1]:61372, IMEI: 352094087982671) +2018/09/16 08:02:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61372, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 08:03:18 ruptelaNet.go:200: teltonika New connection(client: [::1]:61426) +2018/09/16 08:03:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:03:19 ruptelaNet.go:261: Data received(client: [::1]:61426, IMEI: 352094087982671) with duration 0.81 s +2018/09/16 08:03:19 ruptelaNet.go:278: Sent ACK (client: [::1]:61426, IMEI: 352094087982671) +2018/09/16 08:03:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61432) +2018/09/16 08:03:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:03:20 ruptelaNet.go:261: Data received(client: [::1]:61432, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:03:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61432, IMEI: 352094089712860) +2018/09/16 08:03:21 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:03:21 ruptelaNet.go:261: Data received(client: [::1]:61426, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 08:03:21 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:03:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61426, IMEI: 352094087982671) +2018/09/16 08:03:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:03:22 ruptelaNet.go:261: Data received(client: [::1]:61432, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:03:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:03:22 ruptelaNet.go:278: Sent ACK (client: [::1]:61432, IMEI: 352094089712860) +2018/09/16 08:03:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61432, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 08:03:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61426, IMEI: 352094087982671) with duration 5.74 s +2018/09/16 08:03:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:61490) +2018/09/16 08:03:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:03:48 ruptelaNet.go:261: Data received(client: [::1]:61490, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 08:03:48 ruptelaNet.go:278: Sent ACK (client: [::1]:61490, IMEI: 352094087982671) +2018/09/16 08:03:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:03:50 ruptelaNet.go:261: Data received(client: [::1]:61490, IMEI: 352094087982671) with duration 3.45 s +2018/09/16 08:03:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:03:50 ruptelaNet.go:278: Sent ACK (client: [::1]:61490, IMEI: 352094087982671) +2018/09/16 08:03:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61490, IMEI: 352094087982671) with duration 5.58 s +2018/09/16 08:04:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:61549) +2018/09/16 08:04:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:04:16 ruptelaNet.go:261: Data received(client: [::1]:61549, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 08:04:16 ruptelaNet.go:278: Sent ACK (client: [::1]:61549, IMEI: 352094087982671) +2018/09/16 08:04:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:04:18 ruptelaNet.go:261: Data received(client: [::1]:61549, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:04:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:04:18 ruptelaNet.go:278: Sent ACK (client: [::1]:61549, IMEI: 352094087982671) +2018/09/16 08:04:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:61560) +2018/09/16 08:04:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:04:20 ruptelaNet.go:261: Data received(client: [::1]:61560, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:04:20 ruptelaNet.go:278: Sent ACK (client: [::1]:61560, IMEI: 352094089712860) +2018/09/16 08:04:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61549, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:04:22 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:04:22 ruptelaNet.go:261: Data received(client: [::1]:61560, IMEI: 352094089712860) with duration 2.19 s +2018/09/16 08:04:22 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:04:22 ruptelaNet.go:278: Sent ACK (client: [::1]:61560, IMEI: 352094089712860) +2018/09/16 08:04:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61560, IMEI: 352094089712860) with duration 3.01 s +2018/09/16 08:04:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:61612) +2018/09/16 08:04:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:04:45 ruptelaNet.go:261: Data received(client: [::1]:61612, IMEI: 352094087982671) with duration 0.78 s +2018/09/16 08:04:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61612, IMEI: 352094087982671) +2018/09/16 08:04:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:04:47 ruptelaNet.go:261: Data received(client: [::1]:61612, IMEI: 352094087982671) with duration 3.5 s +2018/09/16 08:04:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:04:47 ruptelaNet.go:278: Sent ACK (client: [::1]:61612, IMEI: 352094087982671) +2018/09/16 08:04:49 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61612, IMEI: 352094087982671) with duration 5.62 s +2018/09/16 08:05:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:61671) +2018/09/16 08:05:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:05:14 ruptelaNet.go:261: Data received(client: [::1]:61671, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:05:14 ruptelaNet.go:278: Sent ACK (client: [::1]:61671, IMEI: 352094087982671) +2018/09/16 08:05:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:05:17 ruptelaNet.go:261: Data received(client: [::1]:61671, IMEI: 352094087982671) with duration 4.13 s +2018/09/16 08:05:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:05:17 ruptelaNet.go:278: Sent ACK (client: [::1]:61671, IMEI: 352094087982671) +2018/09/16 08:05:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61671, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 08:05:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:61688) +2018/09/16 08:05:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:05:21 ruptelaNet.go:261: Data received(client: [::1]:61688, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:05:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61688, IMEI: 352094089712860) +2018/09/16 08:05:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:05:23 ruptelaNet.go:261: Data received(client: [::1]:61688, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:05:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:05:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61688, IMEI: 352094089712860) +2018/09/16 08:05:23 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61688, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:05:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:61735) +2018/09/16 08:05:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:05:43 ruptelaNet.go:261: Data received(client: [::1]:61735, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 08:05:43 ruptelaNet.go:278: Sent ACK (client: [::1]:61735, IMEI: 352094087982671) +2018/09/16 08:05:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:05:45 ruptelaNet.go:261: Data received(client: [::1]:61735, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 08:05:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:05:45 ruptelaNet.go:278: Sent ACK (client: [::1]:61735, IMEI: 352094087982671) +2018/09/16 08:05:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61735, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:06:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:61793) +2018/09/16 08:06:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:06:12 ruptelaNet.go:261: Data received(client: [::1]:61793, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:06:12 ruptelaNet.go:278: Sent ACK (client: [::1]:61793, IMEI: 352094087982671) +2018/09/16 08:06:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:06:15 ruptelaNet.go:261: Data received(client: [::1]:61793, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:06:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:06:15 ruptelaNet.go:278: Sent ACK (client: [::1]:61793, IMEI: 352094087982671) +2018/09/16 08:06:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61793, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 08:06:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:61810) +2018/09/16 08:06:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:06:21 ruptelaNet.go:261: Data received(client: [::1]:61810, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:06:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61810, IMEI: 352094089712860) +2018/09/16 08:06:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:06:23 ruptelaNet.go:261: Data received(client: [::1]:61810, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:06:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:06:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61810, IMEI: 352094089712860) +2018/09/16 08:06:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61810, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 08:06:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:61848) +2018/09/16 08:06:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:06:41 ruptelaNet.go:261: Data received(client: [::1]:61848, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:06:41 ruptelaNet.go:278: Sent ACK (client: [::1]:61848, IMEI: 352094087982671) +2018/09/16 08:06:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:06:43 ruptelaNet.go:261: Data received(client: [::1]:61848, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:06:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:06:43 ruptelaNet.go:278: Sent ACK (client: [::1]:61848, IMEI: 352094087982671) +2018/09/16 08:06:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61848, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:07:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:61912) +2018/09/16 08:07:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:07:10 ruptelaNet.go:261: Data received(client: [::1]:61912, IMEI: 352094087982671) with duration 0.31 s +2018/09/16 08:07:10 ruptelaNet.go:278: Sent ACK (client: [::1]:61912, IMEI: 352094087982671) +2018/09/16 08:07:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:07:13 ruptelaNet.go:261: Data received(client: [::1]:61912, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 08:07:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:07:13 ruptelaNet.go:278: Sent ACK (client: [::1]:61912, IMEI: 352094087982671) +2018/09/16 08:07:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61912, IMEI: 352094087982671) with duration 5.44 s +2018/09/16 08:07:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:61934) +2018/09/16 08:07:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:07:21 ruptelaNet.go:261: Data received(client: [::1]:61934, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 08:07:21 ruptelaNet.go:278: Sent ACK (client: [::1]:61934, IMEI: 352094089712860) +2018/09/16 08:07:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:07:23 ruptelaNet.go:261: Data received(client: [::1]:61934, IMEI: 352094089712860) with duration 2.25 s +2018/09/16 08:07:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:07:23 ruptelaNet.go:278: Sent ACK (client: [::1]:61934, IMEI: 352094089712860) +2018/09/16 08:07:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61934, IMEI: 352094089712860) with duration 3.07 s +2018/09/16 08:07:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:61971) +2018/09/16 08:07:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:07:39 ruptelaNet.go:261: Data received(client: [::1]:61971, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:07:39 ruptelaNet.go:278: Sent ACK (client: [::1]:61971, IMEI: 352094087982671) +2018/09/16 08:07:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:07:41 ruptelaNet.go:261: Data received(client: [::1]:61971, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 08:07:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:07:41 ruptelaNet.go:278: Sent ACK (client: [::1]:61971, IMEI: 352094087982671) +2018/09/16 08:07:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:61971, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 08:08:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:62026) +2018/09/16 08:08:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:08:07 ruptelaNet.go:261: Data received(client: [::1]:62026, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 08:08:07 ruptelaNet.go:278: Sent ACK (client: [::1]:62026, IMEI: 352094087982671) +2018/09/16 08:08:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:08:10 ruptelaNet.go:261: Data received(client: [::1]:62026, IMEI: 352094087982671) with duration 4.09 s +2018/09/16 08:08:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:08:10 ruptelaNet.go:278: Sent ACK (client: [::1]:62026, IMEI: 352094087982671) +2018/09/16 08:08:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62026, IMEI: 352094087982671) with duration 6.24 s +2018/09/16 08:08:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:62062) +2018/09/16 08:08:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:08:22 ruptelaNet.go:261: Data received(client: [::1]:62062, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:08:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62062, IMEI: 352094089712860) +2018/09/16 08:08:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:08:24 ruptelaNet.go:261: Data received(client: [::1]:62062, IMEI: 352094089712860) with duration 2.1 s +2018/09/16 08:08:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:08:24 ruptelaNet.go:278: Sent ACK (client: [::1]:62062, IMEI: 352094089712860) +2018/09/16 08:08:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62062, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 08:08:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:62085) +2018/09/16 08:08:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:08:36 ruptelaNet.go:261: Data received(client: [::1]:62085, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:08:36 ruptelaNet.go:278: Sent ACK (client: [::1]:62085, IMEI: 352094087982671) +2018/09/16 08:08:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:08:38 ruptelaNet.go:261: Data received(client: [::1]:62085, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 08:08:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:08:38 ruptelaNet.go:278: Sent ACK (client: [::1]:62085, IMEI: 352094087982671) +2018/09/16 08:08:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62085, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 08:09:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:62151) +2018/09/16 08:09:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:09:05 ruptelaNet.go:261: Data received(client: [::1]:62151, IMEI: 352094087982671) with duration 0.88 s +2018/09/16 08:09:05 ruptelaNet.go:278: Sent ACK (client: [::1]:62151, IMEI: 352094087982671) +2018/09/16 08:09:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:09:07 ruptelaNet.go:261: Data received(client: [::1]:62151, IMEI: 352094087982671) with duration 3.68 s +2018/09/16 08:09:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:09:07 ruptelaNet.go:278: Sent ACK (client: [::1]:62151, IMEI: 352094087982671) +2018/09/16 08:09:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62151, IMEI: 352094087982671) with duration 5.75 s +2018/09/16 08:09:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:62187) +2018/09/16 08:09:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:09:22 ruptelaNet.go:261: Data received(client: [::1]:62187, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:09:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62187, IMEI: 352094089712860) +2018/09/16 08:09:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:09:24 ruptelaNet.go:261: Data received(client: [::1]:62187, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:09:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:09:24 ruptelaNet.go:278: Sent ACK (client: [::1]:62187, IMEI: 352094089712860) +2018/09/16 08:09:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62187, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:09:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:62209) +2018/09/16 08:09:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:09:34 ruptelaNet.go:261: Data received(client: [::1]:62209, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:09:34 ruptelaNet.go:278: Sent ACK (client: [::1]:62209, IMEI: 352094087982671) +2018/09/16 08:09:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:09:36 ruptelaNet.go:261: Data received(client: [::1]:62209, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:09:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:09:36 ruptelaNet.go:278: Sent ACK (client: [::1]:62209, IMEI: 352094087982671) +2018/09/16 08:09:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62209, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:10:02 ruptelaNet.go:200: teltonika New connection(client: [::1]:62277) +2018/09/16 08:10:03 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:10:03 ruptelaNet.go:261: Data received(client: [::1]:62277, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:10:03 ruptelaNet.go:278: Sent ACK (client: [::1]:62277, IMEI: 352094087982671) +2018/09/16 08:10:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:10:06 ruptelaNet.go:261: Data received(client: [::1]:62277, IMEI: 352094087982671) with duration 4.19 s +2018/09/16 08:10:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:10:06 ruptelaNet.go:278: Sent ACK (client: [::1]:62277, IMEI: 352094087982671) +2018/09/16 08:10:08 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62277, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 08:10:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62315) +2018/09/16 08:10:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:10:21 ruptelaNet.go:261: Data received(client: [::1]:62315, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:10:21 ruptelaNet.go:278: Sent ACK (client: [::1]:62315, IMEI: 352094089712860) +2018/09/16 08:10:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:10:23 ruptelaNet.go:261: Data received(client: [::1]:62315, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 08:10:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:10:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62315, IMEI: 352094089712860) +2018/09/16 08:10:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62315, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 08:10:31 ruptelaNet.go:200: teltonika New connection(client: [::1]:62333) +2018/09/16 08:10:32 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:10:32 ruptelaNet.go:261: Data received(client: [::1]:62333, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:10:32 ruptelaNet.go:278: Sent ACK (client: [::1]:62333, IMEI: 352094087982671) +2018/09/16 08:10:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:10:35 ruptelaNet.go:261: Data received(client: [::1]:62333, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 08:10:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:10:35 ruptelaNet.go:278: Sent ACK (client: [::1]:62333, IMEI: 352094087982671) +2018/09/16 08:10:37 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62333, IMEI: 352094087982671) with duration 6.38 s +2018/09/16 08:11:00 ruptelaNet.go:200: teltonika New connection(client: [::1]:62396) +2018/09/16 08:11:01 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:11:01 ruptelaNet.go:261: Data received(client: [::1]:62396, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:11:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62396, IMEI: 352094087982671) +2018/09/16 08:11:03 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:11:03 ruptelaNet.go:261: Data received(client: [::1]:62396, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:11:04 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:11:04 ruptelaNet.go:278: Sent ACK (client: [::1]:62396, IMEI: 352094087982671) +2018/09/16 08:11:06 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62396, IMEI: 352094087982671) with duration 5.95 s +2018/09/16 08:11:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62441) +2018/09/16 08:11:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:11:21 ruptelaNet.go:261: Data received(client: [::1]:62441, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:11:21 ruptelaNet.go:278: Sent ACK (client: [::1]:62441, IMEI: 352094089712860) +2018/09/16 08:11:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:11:23 ruptelaNet.go:261: Data received(client: [::1]:62441, IMEI: 352094089712860) with duration 2.13 s +2018/09/16 08:11:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:11:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62441, IMEI: 352094089712860) +2018/09/16 08:11:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62441, IMEI: 352094089712860) with duration 2.85 s +2018/09/16 08:11:29 ruptelaNet.go:200: teltonika New connection(client: [::1]:62453) +2018/09/16 08:11:30 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:11:30 ruptelaNet.go:261: Data received(client: [::1]:62453, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:11:30 ruptelaNet.go:278: Sent ACK (client: [::1]:62453, IMEI: 352094087982671) +2018/09/16 08:11:32 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:11:32 ruptelaNet.go:261: Data received(client: [::1]:62453, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:11:32 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:11:32 ruptelaNet.go:278: Sent ACK (client: [::1]:62453, IMEI: 352094087982671) +2018/09/16 08:11:35 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62453, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 08:11:58 ruptelaNet.go:200: teltonika New connection(client: [::1]:62515) +2018/09/16 08:11:59 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:11:59 ruptelaNet.go:261: Data received(client: [::1]:62515, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:11:59 ruptelaNet.go:278: Sent ACK (client: [::1]:62515, IMEI: 352094087982671) +2018/09/16 08:12:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:12:02 ruptelaNet.go:261: Data received(client: [::1]:62515, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:12:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:12:02 ruptelaNet.go:278: Sent ACK (client: [::1]:62515, IMEI: 352094087982671) +2018/09/16 08:12:04 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62515, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:12:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:62561) +2018/09/16 08:12:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:12:22 ruptelaNet.go:261: Data received(client: [::1]:62561, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:12:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62561, IMEI: 352094089712860) +2018/09/16 08:12:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:12:24 ruptelaNet.go:261: Data received(client: [::1]:62561, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:12:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:12:24 ruptelaNet.go:278: Sent ACK (client: [::1]:62561, IMEI: 352094089712860) +2018/09/16 08:12:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62561, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:12:27 ruptelaNet.go:200: teltonika New connection(client: [::1]:62569) +2018/09/16 08:12:28 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:12:28 ruptelaNet.go:261: Data received(client: [::1]:62569, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 08:12:28 ruptelaNet.go:278: Sent ACK (client: [::1]:62569, IMEI: 352094087982671) +2018/09/16 08:12:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:12:31 ruptelaNet.go:261: Data received(client: [::1]:62569, IMEI: 352094087982671) with duration 4.03 s +2018/09/16 08:12:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:12:31 ruptelaNet.go:278: Sent ACK (client: [::1]:62569, IMEI: 352094087982671) +2018/09/16 08:12:33 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62569, IMEI: 352094087982671) with duration 6.18 s +2018/09/16 08:12:56 ruptelaNet.go:200: teltonika New connection(client: [::1]:62632) +2018/09/16 08:12:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:12:58 ruptelaNet.go:261: Data received(client: [::1]:62632, IMEI: 352094087982671) with duration 2.43 s +2018/09/16 08:12:58 ruptelaNet.go:278: Sent ACK (client: [::1]:62632, IMEI: 352094087982671) +2018/09/16 08:13:01 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:13:01 ruptelaNet.go:261: Data received(client: [::1]:62632, IMEI: 352094087982671) with duration 5.51 s +2018/09/16 08:13:01 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:13:01 ruptelaNet.go:278: Sent ACK (client: [::1]:62632, IMEI: 352094087982671) +2018/09/16 08:13:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62632, IMEI: 352094087982671) with duration 7.66 s +2018/09/16 08:13:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62684) +2018/09/16 08:13:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:13:21 ruptelaNet.go:261: Data received(client: [::1]:62684, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:13:21 ruptelaNet.go:278: Sent ACK (client: [::1]:62684, IMEI: 352094089712860) +2018/09/16 08:13:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:13:23 ruptelaNet.go:261: Data received(client: [::1]:62684, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 08:13:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:13:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62684, IMEI: 352094089712860) +2018/09/16 08:13:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62684, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 08:13:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:62691) +2018/09/16 08:13:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:13:27 ruptelaNet.go:261: Data received(client: [::1]:62691, IMEI: 352094087982671) with duration 0.99 s +2018/09/16 08:13:27 ruptelaNet.go:278: Sent ACK (client: [::1]:62691, IMEI: 352094087982671) +2018/09/16 08:13:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:13:30 ruptelaNet.go:261: Data received(client: [::1]:62691, IMEI: 352094087982671) with duration 3.73 s +2018/09/16 08:13:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:13:30 ruptelaNet.go:278: Sent ACK (client: [::1]:62691, IMEI: 352094087982671) +2018/09/16 08:13:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62691, IMEI: 352094087982671) with duration 5.88 s +2018/09/16 08:13:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:62750) +2018/09/16 08:13:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:13:56 ruptelaNet.go:261: Data received(client: [::1]:62750, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:13:56 ruptelaNet.go:278: Sent ACK (client: [::1]:62750, IMEI: 352094087982671) +2018/09/16 08:13:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:13:59 ruptelaNet.go:261: Data received(client: [::1]:62750, IMEI: 352094087982671) with duration 4.61 s +2018/09/16 08:13:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:13:59 ruptelaNet.go:278: Sent ACK (client: [::1]:62750, IMEI: 352094087982671) +2018/09/16 08:14:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62750, IMEI: 352094087982671) with duration 6.67 s +2018/09/16 08:14:21 ruptelaNet.go:200: teltonika New connection(client: [::1]:62806) +2018/09/16 08:14:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:14:21 ruptelaNet.go:261: Data received(client: [::1]:62806, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:14:21 ruptelaNet.go:278: Sent ACK (client: [::1]:62806, IMEI: 352094089712860) +2018/09/16 08:14:23 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:14:23 ruptelaNet.go:261: Data received(client: [::1]:62806, IMEI: 352094089712860) with duration 2.16 s +2018/09/16 08:14:23 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:14:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62806, IMEI: 352094089712860) +2018/09/16 08:14:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:62808) +2018/09/16 08:14:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62806, IMEI: 352094089712860) with duration 2.89 s +2018/09/16 08:14:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:14:25 ruptelaNet.go:261: Data received(client: [::1]:62808, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 08:14:25 ruptelaNet.go:278: Sent ACK (client: [::1]:62808, IMEI: 352094087982671) +2018/09/16 08:14:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:14:27 ruptelaNet.go:261: Data received(client: [::1]:62808, IMEI: 352094087982671) with duration 3.97 s +2018/09/16 08:14:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:14:27 ruptelaNet.go:278: Sent ACK (client: [::1]:62808, IMEI: 352094087982671) +2018/09/16 08:14:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62808, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 08:14:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:62872) +2018/09/16 08:14:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:14:54 ruptelaNet.go:261: Data received(client: [::1]:62872, IMEI: 352094087982671) with duration 0.98 s +2018/09/16 08:14:54 ruptelaNet.go:278: Sent ACK (client: [::1]:62872, IMEI: 352094087982671) +2018/09/16 08:14:56 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:14:56 ruptelaNet.go:261: Data received(client: [::1]:62872, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:14:56 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:14:56 ruptelaNet.go:278: Sent ACK (client: [::1]:62872, IMEI: 352094087982671) +2018/09/16 08:14:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62872, IMEI: 352094087982671) with duration 5.84 s +2018/09/16 08:15:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:62936) +2018/09/16 08:15:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:15:22 ruptelaNet.go:261: Data received(client: [::1]:62936, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:15:22 ruptelaNet.go:278: Sent ACK (client: [::1]:62936, IMEI: 352094089712860) +2018/09/16 08:15:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:62937) +2018/09/16 08:15:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:15:23 ruptelaNet.go:261: Data received(client: [::1]:62937, IMEI: 352094087982671) with duration 0.72 s +2018/09/16 08:15:23 ruptelaNet.go:278: Sent ACK (client: [::1]:62937, IMEI: 352094087982671) +2018/09/16 08:15:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:15:24 ruptelaNet.go:261: Data received(client: [::1]:62936, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 08:15:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:15:24 ruptelaNet.go:278: Sent ACK (client: [::1]:62936, IMEI: 352094089712860) +2018/09/16 08:15:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62936, IMEI: 352094089712860) with duration 2.86 s +2018/09/16 08:15:26 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:15:26 ruptelaNet.go:261: Data received(client: [::1]:62937, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 08:15:26 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:15:26 ruptelaNet.go:278: Sent ACK (client: [::1]:62937, IMEI: 352094087982671) +2018/09/16 08:15:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62937, IMEI: 352094087982671) with duration 5.85 s +2018/09/16 08:15:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:62994) +2018/09/16 08:15:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:15:52 ruptelaNet.go:261: Data received(client: [::1]:62994, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:15:52 ruptelaNet.go:278: Sent ACK (client: [::1]:62994, IMEI: 352094087982671) +2018/09/16 08:15:54 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:15:54 ruptelaNet.go:261: Data received(client: [::1]:62994, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 08:15:54 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:15:54 ruptelaNet.go:278: Sent ACK (client: [::1]:62994, IMEI: 352094087982671) +2018/09/16 08:15:56 ruptelaNet.go:291: teltonika Close connection (client: [::1]:62994, IMEI: 352094087982671) with duration 5.55 s +2018/09/16 08:16:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:63047) +2018/09/16 08:16:20 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:16:20 ruptelaNet.go:261: Data received(client: [::1]:63047, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:16:20 ruptelaNet.go:278: Sent ACK (client: [::1]:63047, IMEI: 352094087982671) +2018/09/16 08:16:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63057) +2018/09/16 08:16:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:16:22 ruptelaNet.go:261: Data received(client: [::1]:63057, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:16:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63057, IMEI: 352094089712860) +2018/09/16 08:16:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:16:22 ruptelaNet.go:261: Data received(client: [::1]:63047, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:16:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:16:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63047, IMEI: 352094087982671) +2018/09/16 08:16:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:16:24 ruptelaNet.go:261: Data received(client: [::1]:63057, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:16:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:16:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63057, IMEI: 352094089712860) +2018/09/16 08:16:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63047, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 08:16:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63057, IMEI: 352094089712860) with duration 3.09 s +2018/09/16 08:16:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:63112) +2018/09/16 08:16:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:16:49 ruptelaNet.go:261: Data received(client: [::1]:63112, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:16:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63112, IMEI: 352094087982671) +2018/09/16 08:16:51 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:16:51 ruptelaNet.go:261: Data received(client: [::1]:63112, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 08:16:51 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:16:51 ruptelaNet.go:278: Sent ACK (client: [::1]:63112, IMEI: 352094087982671) +2018/09/16 08:16:54 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63112, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:17:17 ruptelaNet.go:200: teltonika New connection(client: [::1]:63178) +2018/09/16 08:17:18 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:17:18 ruptelaNet.go:261: Data received(client: [::1]:63178, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:17:18 ruptelaNet.go:278: Sent ACK (client: [::1]:63178, IMEI: 352094087982671) +2018/09/16 08:17:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:17:20 ruptelaNet.go:261: Data received(client: [::1]:63178, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 08:17:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:17:20 ruptelaNet.go:278: Sent ACK (client: [::1]:63178, IMEI: 352094087982671) +2018/09/16 08:17:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63190) +2018/09/16 08:17:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:17:22 ruptelaNet.go:261: Data received(client: [::1]:63190, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 08:17:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63190, IMEI: 352094089712860) +2018/09/16 08:17:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63178, IMEI: 352094087982671) with duration 5.88 s +2018/09/16 08:17:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:17:24 ruptelaNet.go:261: Data received(client: [::1]:63190, IMEI: 352094089712860) with duration 2.35 s +2018/09/16 08:17:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:17:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63190, IMEI: 352094089712860) +2018/09/16 08:17:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63190, IMEI: 352094089712860) with duration 3.58 s +2018/09/16 08:17:46 ruptelaNet.go:200: teltonika New connection(client: [::1]:63234) +2018/09/16 08:17:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:17:46 ruptelaNet.go:261: Data received(client: [::1]:63234, IMEI: 352094087982671) with duration 0.86 s +2018/09/16 08:17:46 ruptelaNet.go:278: Sent ACK (client: [::1]:63234, IMEI: 352094087982671) +2018/09/16 08:17:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:17:49 ruptelaNet.go:261: Data received(client: [::1]:63234, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:17:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:17:49 ruptelaNet.go:278: Sent ACK (client: [::1]:63234, IMEI: 352094087982671) +2018/09/16 08:17:52 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63234, IMEI: 352094087982671) with duration 6.28 s +2018/09/16 08:18:15 ruptelaNet.go:200: teltonika New connection(client: [::1]:63291) +2018/09/16 08:18:16 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:18:16 ruptelaNet.go:261: Data received(client: [::1]:63291, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 08:18:16 ruptelaNet.go:278: Sent ACK (client: [::1]:63291, IMEI: 352094087982671) +2018/09/16 08:18:18 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:18:18 ruptelaNet.go:261: Data received(client: [::1]:63291, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:18:18 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:18:18 ruptelaNet.go:278: Sent ACK (client: [::1]:63291, IMEI: 352094087982671) +2018/09/16 08:18:21 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63291, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:18:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63307) +2018/09/16 08:18:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:18:22 ruptelaNet.go:261: Data received(client: [::1]:63307, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:18:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63307, IMEI: 352094089712860) +2018/09/16 08:18:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:18:24 ruptelaNet.go:261: Data received(client: [::1]:63307, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:18:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:18:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63307, IMEI: 352094089712860) +2018/09/16 08:18:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63307, IMEI: 352094089712860) with duration 2.87 s +2018/09/16 08:18:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:63354) +2018/09/16 08:18:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:18:45 ruptelaNet.go:261: Data received(client: [::1]:63354, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:18:45 ruptelaNet.go:278: Sent ACK (client: [::1]:63354, IMEI: 352094087982671) +2018/09/16 08:18:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:18:47 ruptelaNet.go:261: Data received(client: [::1]:63354, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:18:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:18:47 ruptelaNet.go:278: Sent ACK (client: [::1]:63354, IMEI: 352094087982671) +2018/09/16 08:18:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63354, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:19:13 ruptelaNet.go:200: teltonika New connection(client: [::1]:63413) +2018/09/16 08:19:14 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:19:14 ruptelaNet.go:261: Data received(client: [::1]:63413, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:19:14 ruptelaNet.go:278: Sent ACK (client: [::1]:63413, IMEI: 352094087982671) +2018/09/16 08:19:16 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:19:16 ruptelaNet.go:261: Data received(client: [::1]:63413, IMEI: 352094087982671) with duration 3.91 s +2018/09/16 08:19:16 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:19:16 ruptelaNet.go:278: Sent ACK (client: [::1]:63413, IMEI: 352094087982671) +2018/09/16 08:19:19 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63413, IMEI: 352094087982671) with duration 6.16 s +2018/09/16 08:19:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63435) +2018/09/16 08:19:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:19:22 ruptelaNet.go:261: Data received(client: [::1]:63435, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:19:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63435, IMEI: 352094089712860) +2018/09/16 08:19:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:19:24 ruptelaNet.go:261: Data received(client: [::1]:63435, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:19:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:19:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63435, IMEI: 352094089712860) +2018/09/16 08:19:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63435, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 08:19:42 ruptelaNet.go:200: teltonika New connection(client: [::1]:63473) +2018/09/16 08:19:43 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:19:43 ruptelaNet.go:261: Data received(client: [::1]:63473, IMEI: 352094087982671) with duration 0.83 s +2018/09/16 08:19:43 ruptelaNet.go:278: Sent ACK (client: [::1]:63473, IMEI: 352094087982671) +2018/09/16 08:19:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:19:45 ruptelaNet.go:261: Data received(client: [::1]:63473, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 08:19:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:19:45 ruptelaNet.go:278: Sent ACK (client: [::1]:63473, IMEI: 352094087982671) +2018/09/16 08:19:48 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63473, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 08:20:11 ruptelaNet.go:200: teltonika New connection(client: [::1]:63540) +2018/09/16 08:20:12 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:20:12 ruptelaNet.go:261: Data received(client: [::1]:63540, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:20:12 ruptelaNet.go:278: Sent ACK (client: [::1]:63540, IMEI: 352094087982671) +2018/09/16 08:20:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:20:15 ruptelaNet.go:261: Data received(client: [::1]:63540, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:20:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:20:15 ruptelaNet.go:278: Sent ACK (client: [::1]:63540, IMEI: 352094087982671) +2018/09/16 08:20:17 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63540, IMEI: 352094087982671) with duration 6.12 s +2018/09/16 08:20:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63562) +2018/09/16 08:20:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:20:22 ruptelaNet.go:261: Data received(client: [::1]:63562, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:20:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63562, IMEI: 352094089712860) +2018/09/16 08:20:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:20:24 ruptelaNet.go:261: Data received(client: [::1]:63562, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 08:20:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:20:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63562, IMEI: 352094089712860) +2018/09/16 08:20:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63562, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 08:20:40 ruptelaNet.go:200: teltonika New connection(client: [::1]:63599) +2018/09/16 08:20:41 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:20:41 ruptelaNet.go:261: Data received(client: [::1]:63599, IMEI: 352094087982671) with duration 1.09 s +2018/09/16 08:20:41 ruptelaNet.go:278: Sent ACK (client: [::1]:63599, IMEI: 352094087982671) +2018/09/16 08:20:43 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:20:43 ruptelaNet.go:261: Data received(client: [::1]:63599, IMEI: 352094087982671) with duration 3.96 s +2018/09/16 08:20:43 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:20:43 ruptelaNet.go:278: Sent ACK (client: [::1]:63599, IMEI: 352094087982671) +2018/09/16 08:20:46 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63599, IMEI: 352094087982671) with duration 6.72 s +2018/09/16 08:21:09 ruptelaNet.go:200: teltonika New connection(client: [::1]:63662) +2018/09/16 08:21:10 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:21:10 ruptelaNet.go:261: Data received(client: [::1]:63662, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 08:21:10 ruptelaNet.go:278: Sent ACK (client: [::1]:63662, IMEI: 352094087982671) +2018/09/16 08:21:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:21:12 ruptelaNet.go:261: Data received(client: [::1]:63662, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:21:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:21:12 ruptelaNet.go:278: Sent ACK (client: [::1]:63662, IMEI: 352094087982671) +2018/09/16 08:21:15 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63662, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:21:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63683) +2018/09/16 08:21:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:21:22 ruptelaNet.go:261: Data received(client: [::1]:63683, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:21:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63683, IMEI: 352094089712860) +2018/09/16 08:21:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:21:24 ruptelaNet.go:261: Data received(client: [::1]:63683, IMEI: 352094089712860) with duration 1.95 s +2018/09/16 08:21:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:21:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63683, IMEI: 352094089712860) +2018/09/16 08:21:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63683, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:21:38 ruptelaNet.go:200: teltonika New connection(client: [::1]:63716) +2018/09/16 08:21:39 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:21:39 ruptelaNet.go:261: Data received(client: [::1]:63716, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:21:39 ruptelaNet.go:278: Sent ACK (client: [::1]:63716, IMEI: 352094087982671) +2018/09/16 08:21:41 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:21:41 ruptelaNet.go:261: Data received(client: [::1]:63716, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:21:41 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:21:41 ruptelaNet.go:278: Sent ACK (client: [::1]:63716, IMEI: 352094087982671) +2018/09/16 08:21:44 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63716, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:22:07 ruptelaNet.go:200: teltonika New connection(client: [::1]:63778) +2018/09/16 08:22:08 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:22:08 ruptelaNet.go:261: Data received(client: [::1]:63778, IMEI: 352094087982671) with duration 0.64 s +2018/09/16 08:22:08 ruptelaNet.go:278: Sent ACK (client: [::1]:63778, IMEI: 352094087982671) +2018/09/16 08:22:10 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:22:10 ruptelaNet.go:261: Data received(client: [::1]:63778, IMEI: 352094087982671) with duration 3.48 s +2018/09/16 08:22:10 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:22:10 ruptelaNet.go:278: Sent ACK (client: [::1]:63778, IMEI: 352094087982671) +2018/09/16 08:22:13 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63778, IMEI: 352094087982671) with duration 5.63 s +2018/09/16 08:22:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63812) +2018/09/16 08:22:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:22:22 ruptelaNet.go:261: Data received(client: [::1]:63812, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:22:22 ruptelaNet.go:278: Sent ACK (client: [::1]:63812, IMEI: 352094089712860) +2018/09/16 08:22:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:22:24 ruptelaNet.go:261: Data received(client: [::1]:63812, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:22:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:22:24 ruptelaNet.go:278: Sent ACK (client: [::1]:63812, IMEI: 352094089712860) +2018/09/16 08:22:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63812, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:22:36 ruptelaNet.go:200: teltonika New connection(client: [::1]:63840) +2018/09/16 08:22:37 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:22:37 ruptelaNet.go:261: Data received(client: [::1]:63840, IMEI: 352094087982671) with duration 1.11 s +2018/09/16 08:22:37 ruptelaNet.go:278: Sent ACK (client: [::1]:63840, IMEI: 352094087982671) +2018/09/16 08:22:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:22:40 ruptelaNet.go:261: Data received(client: [::1]:63840, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:22:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:22:40 ruptelaNet.go:278: Sent ACK (client: [::1]:63840, IMEI: 352094087982671) +2018/09/16 08:22:42 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63840, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:23:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:63899) +2018/09/16 08:23:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:23:06 ruptelaNet.go:261: Data received(client: [::1]:63899, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 08:23:06 ruptelaNet.go:278: Sent ACK (client: [::1]:63899, IMEI: 352094087982671) +2018/09/16 08:23:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:23:08 ruptelaNet.go:261: Data received(client: [::1]:63899, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 08:23:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:23:08 ruptelaNet.go:278: Sent ACK (client: [::1]:63899, IMEI: 352094087982671) +2018/09/16 08:23:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63899, IMEI: 352094087982671) with duration 6.84 s +2018/09/16 08:23:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:63931) +2018/09/16 08:23:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:23:23 ruptelaNet.go:261: Data received(client: [::1]:63931, IMEI: 352094089712860) with duration 0.3 s +2018/09/16 08:23:23 ruptelaNet.go:278: Sent ACK (client: [::1]:63931, IMEI: 352094089712860) +2018/09/16 08:23:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:23:25 ruptelaNet.go:261: Data received(client: [::1]:63931, IMEI: 352094089712860) with duration 2.46 s +2018/09/16 08:23:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:23:25 ruptelaNet.go:278: Sent ACK (client: [::1]:63931, IMEI: 352094089712860) +2018/09/16 08:23:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63931, IMEI: 352094089712860) with duration 3.62 s +2018/09/16 08:23:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:63953) +2018/09/16 08:23:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:23:35 ruptelaNet.go:261: Data received(client: [::1]:63953, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:23:35 ruptelaNet.go:278: Sent ACK (client: [::1]:63953, IMEI: 352094087982671) +2018/09/16 08:23:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:23:37 ruptelaNet.go:261: Data received(client: [::1]:63953, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:23:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:23:37 ruptelaNet.go:278: Sent ACK (client: [::1]:63953, IMEI: 352094087982671) +2018/09/16 08:23:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:63953, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:24:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:64014) +2018/09/16 08:24:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:24:04 ruptelaNet.go:261: Data received(client: [::1]:64014, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:24:04 ruptelaNet.go:278: Sent ACK (client: [::1]:64014, IMEI: 352094087982671) +2018/09/16 08:24:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:24:07 ruptelaNet.go:261: Data received(client: [::1]:64014, IMEI: 352094087982671) with duration 3.83 s +2018/09/16 08:24:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:24:07 ruptelaNet.go:278: Sent ACK (client: [::1]:64014, IMEI: 352094087982671) +2018/09/16 08:24:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64014, IMEI: 352094087982671) with duration 6.05 s +2018/09/16 08:24:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:64056) +2018/09/16 08:24:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:24:22 ruptelaNet.go:261: Data received(client: [::1]:64056, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:24:22 ruptelaNet.go:278: Sent ACK (client: [::1]:64056, IMEI: 352094089712860) +2018/09/16 08:24:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:24:24 ruptelaNet.go:261: Data received(client: [::1]:64056, IMEI: 352094089712860) with duration 2.04 s +2018/09/16 08:24:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:24:24 ruptelaNet.go:278: Sent ACK (client: [::1]:64056, IMEI: 352094089712860) +2018/09/16 08:24:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64056, IMEI: 352094089712860) with duration 2.8 s +2018/09/16 08:24:32 ruptelaNet.go:200: teltonika New connection(client: [::1]:64073) +2018/09/16 08:24:33 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:24:33 ruptelaNet.go:261: Data received(client: [::1]:64073, IMEI: 352094087982671) with duration 0.92 s +2018/09/16 08:24:33 ruptelaNet.go:278: Sent ACK (client: [::1]:64073, IMEI: 352094087982671) +2018/09/16 08:24:35 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:24:35 ruptelaNet.go:261: Data received(client: [::1]:64073, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:24:35 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:24:35 ruptelaNet.go:278: Sent ACK (client: [::1]:64073, IMEI: 352094087982671) +2018/09/16 08:24:38 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64073, IMEI: 352094087982671) with duration 5.89 s +2018/09/16 08:25:01 ruptelaNet.go:200: teltonika New connection(client: [::1]:64135) +2018/09/16 08:25:02 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:25:02 ruptelaNet.go:261: Data received(client: [::1]:64135, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 08:25:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64135, IMEI: 352094087982671) +2018/09/16 08:25:05 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:25:05 ruptelaNet.go:261: Data received(client: [::1]:64135, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 08:25:05 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:25:05 ruptelaNet.go:278: Sent ACK (client: [::1]:64135, IMEI: 352094087982671) +2018/09/16 08:25:07 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64135, IMEI: 352094087982671) with duration 6.13 s +2018/09/16 08:25:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:64184) +2018/09/16 08:25:22 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:25:22 ruptelaNet.go:261: Data received(client: [::1]:64184, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:25:22 ruptelaNet.go:278: Sent ACK (client: [::1]:64184, IMEI: 352094089712860) +2018/09/16 08:25:24 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:25:24 ruptelaNet.go:261: Data received(client: [::1]:64184, IMEI: 352094089712860) with duration 1.93 s +2018/09/16 08:25:24 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:25:24 ruptelaNet.go:278: Sent ACK (client: [::1]:64184, IMEI: 352094089712860) +2018/09/16 08:25:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64184, IMEI: 352094089712860) with duration 2.65 s +2018/09/16 08:25:30 ruptelaNet.go:200: teltonika New connection(client: [::1]:64196) +2018/09/16 08:25:31 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:25:31 ruptelaNet.go:261: Data received(client: [::1]:64196, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 08:25:31 ruptelaNet.go:278: Sent ACK (client: [::1]:64196, IMEI: 352094087982671) +2018/09/16 08:25:34 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:25:34 ruptelaNet.go:261: Data received(client: [::1]:64196, IMEI: 352094087982671) with duration 4.32 s +2018/09/16 08:25:34 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:25:34 ruptelaNet.go:278: Sent ACK (client: [::1]:64196, IMEI: 352094087982671) +2018/09/16 08:25:36 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64196, IMEI: 352094087982671) with duration 6.45 s +2018/09/16 08:25:59 ruptelaNet.go:200: teltonika New connection(client: [::1]:64260) +2018/09/16 08:26:00 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:26:00 ruptelaNet.go:261: Data received(client: [::1]:64260, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:26:00 ruptelaNet.go:278: Sent ACK (client: [::1]:64260, IMEI: 352094087982671) +2018/09/16 08:26:02 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:26:02 ruptelaNet.go:261: Data received(client: [::1]:64260, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:26:02 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:26:02 ruptelaNet.go:278: Sent ACK (client: [::1]:64260, IMEI: 352094087982671) +2018/09/16 08:26:05 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64260, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:26:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64308) +2018/09/16 08:26:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:26:23 ruptelaNet.go:261: Data received(client: [::1]:64308, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:26:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64308, IMEI: 352094089712860) +2018/09/16 08:26:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:26:25 ruptelaNet.go:261: Data received(client: [::1]:64308, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:26:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:26:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64308, IMEI: 352094089712860) +2018/09/16 08:26:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64308, IMEI: 352094089712860) with duration 2.77 s +2018/09/16 08:26:28 ruptelaNet.go:200: teltonika New connection(client: [::1]:64319) +2018/09/16 08:26:29 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:26:29 ruptelaNet.go:261: Data received(client: [::1]:64319, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 08:26:29 ruptelaNet.go:278: Sent ACK (client: [::1]:64319, IMEI: 352094087982671) +2018/09/16 08:26:31 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:26:31 ruptelaNet.go:261: Data received(client: [::1]:64319, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:26:31 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:26:31 ruptelaNet.go:278: Sent ACK (client: [::1]:64319, IMEI: 352094087982671) +2018/09/16 08:26:34 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64319, IMEI: 352094087982671) with duration 5.99 s +2018/09/16 08:26:57 ruptelaNet.go:200: teltonika New connection(client: [::1]:64376) +2018/09/16 08:26:58 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:26:58 ruptelaNet.go:261: Data received(client: [::1]:64376, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:26:58 ruptelaNet.go:278: Sent ACK (client: [::1]:64376, IMEI: 352094087982671) +2018/09/16 08:27:00 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:27:00 ruptelaNet.go:261: Data received(client: [::1]:64376, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:27:00 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:27:00 ruptelaNet.go:278: Sent ACK (client: [::1]:64376, IMEI: 352094087982671) +2018/09/16 08:27:03 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64376, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 08:27:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64430) +2018/09/16 08:27:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:27:23 ruptelaNet.go:261: Data received(client: [::1]:64430, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:27:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64430, IMEI: 352094089712860) +2018/09/16 08:27:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:27:25 ruptelaNet.go:261: Data received(client: [::1]:64430, IMEI: 352094089712860) with duration 2.46 s +2018/09/16 08:27:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:27:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64430, IMEI: 352094089712860) +2018/09/16 08:27:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:64436) +2018/09/16 08:27:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64430, IMEI: 352094089712860) with duration 3.16 s +2018/09/16 08:27:27 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:27:27 ruptelaNet.go:261: Data received(client: [::1]:64436, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 08:27:27 ruptelaNet.go:278: Sent ACK (client: [::1]:64436, IMEI: 352094087982671) +2018/09/16 08:27:30 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:27:30 ruptelaNet.go:261: Data received(client: [::1]:64436, IMEI: 352094087982671) with duration 4.18 s +2018/09/16 08:27:30 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:27:30 ruptelaNet.go:278: Sent ACK (client: [::1]:64436, IMEI: 352094087982671) +2018/09/16 08:27:32 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64436, IMEI: 352094087982671) with duration 6.33 s +2018/09/16 08:27:55 ruptelaNet.go:200: teltonika New connection(client: [::1]:64496) +2018/09/16 08:27:56 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:27:56 ruptelaNet.go:261: Data received(client: [::1]:64496, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:27:56 ruptelaNet.go:278: Sent ACK (client: [::1]:64496, IMEI: 352094087982671) +2018/09/16 08:27:59 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:27:59 ruptelaNet.go:261: Data received(client: [::1]:64496, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:27:59 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:27:59 ruptelaNet.go:278: Sent ACK (client: [::1]:64496, IMEI: 352094087982671) +2018/09/16 08:28:01 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64496, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:28:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64554) +2018/09/16 08:28:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:28:23 ruptelaNet.go:261: Data received(client: [::1]:64554, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:28:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64554, IMEI: 352094089712860) +2018/09/16 08:28:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:64555) +2018/09/16 08:28:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:28:25 ruptelaNet.go:261: Data received(client: [::1]:64555, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:28:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64555, IMEI: 352094087982671) +2018/09/16 08:28:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:28:25 ruptelaNet.go:261: Data received(client: [::1]:64554, IMEI: 352094089712860) with duration 1.91 s +2018/09/16 08:28:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:28:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64554, IMEI: 352094089712860) +2018/09/16 08:28:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64554, IMEI: 352094089712860) with duration 2.61 s +2018/09/16 08:28:27 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:28:27 ruptelaNet.go:261: Data received(client: [::1]:64555, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:28:27 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:28:27 ruptelaNet.go:278: Sent ACK (client: [::1]:64555, IMEI: 352094087982671) +2018/09/16 08:28:30 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64555, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:28:53 ruptelaNet.go:200: teltonika New connection(client: [::1]:64615) +2018/09/16 08:28:54 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:28:54 ruptelaNet.go:261: Data received(client: [::1]:64615, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:28:54 ruptelaNet.go:278: Sent ACK (client: [::1]:64615, IMEI: 352094087982671) +2018/09/16 08:28:57 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:28:57 ruptelaNet.go:261: Data received(client: [::1]:64615, IMEI: 352094087982671) with duration 4.1 s +2018/09/16 08:28:57 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:28:57 ruptelaNet.go:278: Sent ACK (client: [::1]:64615, IMEI: 352094087982671) +2018/09/16 08:28:59 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64615, IMEI: 352094087982671) with duration 6.34 s +2018/09/16 08:29:22 ruptelaNet.go:200: teltonika New connection(client: [::1]:64677) +2018/09/16 08:29:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:29:23 ruptelaNet.go:261: Data received(client: [::1]:64677, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:29:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64677, IMEI: 352094087982671) +2018/09/16 08:29:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64678) +2018/09/16 08:29:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:29:23 ruptelaNet.go:261: Data received(client: [::1]:64678, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:29:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64678, IMEI: 352094089712860) +2018/09/16 08:29:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:29:25 ruptelaNet.go:261: Data received(client: [::1]:64678, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:29:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:29:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64678, IMEI: 352094089712860) +2018/09/16 08:29:25 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:29:25 ruptelaNet.go:261: Data received(client: [::1]:64677, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:29:25 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:29:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64677, IMEI: 352094087982671) +2018/09/16 08:29:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64678, IMEI: 352094089712860) with duration 3.02 s +2018/09/16 08:29:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64677, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:29:51 ruptelaNet.go:200: teltonika New connection(client: [::1]:64742) +2018/09/16 08:29:52 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:29:52 ruptelaNet.go:261: Data received(client: [::1]:64742, IMEI: 352094087982671) with duration 1.08 s +2018/09/16 08:29:52 ruptelaNet.go:278: Sent ACK (client: [::1]:64742, IMEI: 352094087982671) +2018/09/16 08:29:55 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:29:55 ruptelaNet.go:261: Data received(client: [::1]:64742, IMEI: 352094087982671) with duration 3.94 s +2018/09/16 08:29:55 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:29:55 ruptelaNet.go:278: Sent ACK (client: [::1]:64742, IMEI: 352094087982671) +2018/09/16 08:29:57 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64742, IMEI: 352094087982671) with duration 6.2 s +2018/09/16 08:30:20 ruptelaNet.go:200: teltonika New connection(client: [::1]:64799) +2018/09/16 08:30:21 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:30:21 ruptelaNet.go:261: Data received(client: [::1]:64799, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:30:21 ruptelaNet.go:278: Sent ACK (client: [::1]:64799, IMEI: 352094087982671) +2018/09/16 08:30:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64809) +2018/09/16 08:30:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:30:23 ruptelaNet.go:261: Data received(client: [::1]:64809, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:30:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64809, IMEI: 352094089712860) +2018/09/16 08:30:23 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:30:23 ruptelaNet.go:261: Data received(client: [::1]:64799, IMEI: 352094087982671) with duration 3.46 s +2018/09/16 08:30:23 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:30:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64799, IMEI: 352094087982671) +2018/09/16 08:30:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:30:25 ruptelaNet.go:261: Data received(client: [::1]:64809, IMEI: 352094089712860) with duration 1.89 s +2018/09/16 08:30:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:30:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64809, IMEI: 352094089712860) +2018/09/16 08:30:25 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64799, IMEI: 352094087982671) with duration 5.53 s +2018/09/16 08:30:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64809, IMEI: 352094089712860) with duration 2.66 s +2018/09/16 08:30:48 ruptelaNet.go:200: teltonika New connection(client: [::1]:64858) +2018/09/16 08:30:49 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:30:49 ruptelaNet.go:261: Data received(client: [::1]:64858, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:30:49 ruptelaNet.go:278: Sent ACK (client: [::1]:64858, IMEI: 352094087982671) +2018/09/16 08:30:52 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:30:52 ruptelaNet.go:261: Data received(client: [::1]:64858, IMEI: 352094087982671) with duration 4.81 s +2018/09/16 08:30:52 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:30:52 ruptelaNet.go:278: Sent ACK (client: [::1]:64858, IMEI: 352094087982671) +2018/09/16 08:30:55 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64858, IMEI: 352094087982671) with duration 6.96 s +2018/09/16 08:31:19 ruptelaNet.go:200: teltonika New connection(client: [::1]:64920) +2018/09/16 08:31:19 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:31:19 ruptelaNet.go:261: Data received(client: [::1]:64920, IMEI: 352094087982671) with duration 0 s +2018/09/16 08:31:19 ruptelaNet.go:278: Sent ACK (client: [::1]:64920, IMEI: 352094087982671) +2018/09/16 08:31:22 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:31:22 ruptelaNet.go:261: Data received(client: [::1]:64920, IMEI: 352094087982671) with duration 2.87 s +2018/09/16 08:31:22 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:31:22 ruptelaNet.go:278: Sent ACK (client: [::1]:64920, IMEI: 352094087982671) +2018/09/16 08:31:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:64932) +2018/09/16 08:31:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:31:23 ruptelaNet.go:261: Data received(client: [::1]:64932, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:31:23 ruptelaNet.go:278: Sent ACK (client: [::1]:64932, IMEI: 352094089712860) +2018/09/16 08:31:24 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64920, IMEI: 352094087982671) with duration 4.94 s +2018/09/16 08:31:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:31:25 ruptelaNet.go:261: Data received(client: [::1]:64932, IMEI: 352094089712860) with duration 2.13 s +2018/09/16 08:31:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:31:25 ruptelaNet.go:278: Sent ACK (client: [::1]:64932, IMEI: 352094089712860) +2018/09/16 08:31:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64932, IMEI: 352094089712860) with duration 2.84 s +2018/09/16 08:31:47 ruptelaNet.go:200: teltonika New connection(client: [::1]:64977) +2018/09/16 08:31:48 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:31:48 ruptelaNet.go:261: Data received(client: [::1]:64977, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:31:48 ruptelaNet.go:278: Sent ACK (client: [::1]:64977, IMEI: 352094087982671) +2018/09/16 08:31:50 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:31:50 ruptelaNet.go:261: Data received(client: [::1]:64977, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 08:31:50 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:31:50 ruptelaNet.go:278: Sent ACK (client: [::1]:64977, IMEI: 352094087982671) +2018/09/16 08:31:53 ruptelaNet.go:291: teltonika Close connection (client: [::1]:64977, IMEI: 352094087982671) with duration 6.03 s +2018/09/16 08:32:16 ruptelaNet.go:200: teltonika New connection(client: [::1]:65037) +2018/09/16 08:32:17 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:32:17 ruptelaNet.go:261: Data received(client: [::1]:65037, IMEI: 352094087982671) with duration 1.14 s +2018/09/16 08:32:17 ruptelaNet.go:278: Sent ACK (client: [::1]:65037, IMEI: 352094087982671) +2018/09/16 08:32:20 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:32:20 ruptelaNet.go:261: Data received(client: [::1]:65037, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 08:32:20 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:32:20 ruptelaNet.go:278: Sent ACK (client: [::1]:65037, IMEI: 352094087982671) +2018/09/16 08:32:22 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65037, IMEI: 352094087982671) with duration 6.07 s +2018/09/16 08:32:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:65053) +2018/09/16 08:32:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:32:23 ruptelaNet.go:261: Data received(client: [::1]:65053, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:32:23 ruptelaNet.go:278: Sent ACK (client: [::1]:65053, IMEI: 352094089712860) +2018/09/16 08:32:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:32:25 ruptelaNet.go:261: Data received(client: [::1]:65053, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:32:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:32:25 ruptelaNet.go:278: Sent ACK (client: [::1]:65053, IMEI: 352094089712860) +2018/09/16 08:32:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65053, IMEI: 352094089712860) with duration 2.78 s +2018/09/16 08:32:45 ruptelaNet.go:200: teltonika New connection(client: [::1]:65091) +2018/09/16 08:32:46 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:32:46 ruptelaNet.go:261: Data received(client: [::1]:65091, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:32:46 ruptelaNet.go:278: Sent ACK (client: [::1]:65091, IMEI: 352094087982671) +2018/09/16 08:32:49 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:32:49 ruptelaNet.go:261: Data received(client: [::1]:65091, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 08:32:49 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:32:49 ruptelaNet.go:278: Sent ACK (client: [::1]:65091, IMEI: 352094087982671) +2018/09/16 08:32:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65091, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:33:14 ruptelaNet.go:200: teltonika New connection(client: [::1]:65154) +2018/09/16 08:33:15 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:33:15 ruptelaNet.go:261: Data received(client: [::1]:65154, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:33:15 ruptelaNet.go:278: Sent ACK (client: [::1]:65154, IMEI: 352094087982671) +2018/09/16 08:33:17 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:33:17 ruptelaNet.go:261: Data received(client: [::1]:65154, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:33:17 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:33:17 ruptelaNet.go:278: Sent ACK (client: [::1]:65154, IMEI: 352094087982671) +2018/09/16 08:33:20 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65154, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:33:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:65173) +2018/09/16 08:33:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:33:24 ruptelaNet.go:261: Data received(client: [::1]:65173, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 08:33:24 ruptelaNet.go:278: Sent ACK (client: [::1]:65173, IMEI: 352094089712860) +2018/09/16 08:33:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:33:26 ruptelaNet.go:261: Data received(client: [::1]:65173, IMEI: 352094089712860) with duration 2.22 s +2018/09/16 08:33:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:33:26 ruptelaNet.go:278: Sent ACK (client: [::1]:65173, IMEI: 352094089712860) +2018/09/16 08:33:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65173, IMEI: 352094089712860) with duration 2.97 s +2018/09/16 08:33:43 ruptelaNet.go:200: teltonika New connection(client: [::1]:65215) +2018/09/16 08:33:44 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:33:44 ruptelaNet.go:261: Data received(client: [::1]:65215, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:33:44 ruptelaNet.go:278: Sent ACK (client: [::1]:65215, IMEI: 352094087982671) +2018/09/16 08:33:47 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:33:47 ruptelaNet.go:261: Data received(client: [::1]:65215, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 08:33:47 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:33:47 ruptelaNet.go:278: Sent ACK (client: [::1]:65215, IMEI: 352094087982671) +2018/09/16 08:33:51 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65215, IMEI: 352094087982671) with duration 7.99 s +2018/09/16 08:34:12 ruptelaNet.go:200: teltonika New connection(client: [::1]:65280) +2018/09/16 08:34:13 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:34:13 ruptelaNet.go:261: Data received(client: [::1]:65280, IMEI: 352094087982671) with duration 1.03 s +2018/09/16 08:34:13 ruptelaNet.go:278: Sent ACK (client: [::1]:65280, IMEI: 352094087982671) +2018/09/16 08:34:15 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:34:15 ruptelaNet.go:261: Data received(client: [::1]:65280, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:34:15 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:34:15 ruptelaNet.go:278: Sent ACK (client: [::1]:65280, IMEI: 352094087982671) +2018/09/16 08:34:18 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65280, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:34:23 ruptelaNet.go:200: teltonika New connection(client: [::1]:65306) +2018/09/16 08:34:23 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:34:23 ruptelaNet.go:261: Data received(client: [::1]:65306, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:34:23 ruptelaNet.go:278: Sent ACK (client: [::1]:65306, IMEI: 352094089712860) +2018/09/16 08:34:25 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:34:25 ruptelaNet.go:261: Data received(client: [::1]:65306, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:34:25 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:34:25 ruptelaNet.go:278: Sent ACK (client: [::1]:65306, IMEI: 352094089712860) +2018/09/16 08:34:26 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65306, IMEI: 352094089712860) with duration 2.71 s +2018/09/16 08:34:41 ruptelaNet.go:200: teltonika New connection(client: [::1]:65345) +2018/09/16 08:34:42 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:34:42 ruptelaNet.go:261: Data received(client: [::1]:65345, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 08:34:42 ruptelaNet.go:278: Sent ACK (client: [::1]:65345, IMEI: 352094087982671) +2018/09/16 08:34:45 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:34:45 ruptelaNet.go:261: Data received(client: [::1]:65345, IMEI: 352094087982671) with duration 3.99 s +2018/09/16 08:34:45 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:34:45 ruptelaNet.go:278: Sent ACK (client: [::1]:65345, IMEI: 352094087982671) +2018/09/16 08:34:47 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65345, IMEI: 352094087982671) with duration 6.25 s +2018/09/16 08:35:10 ruptelaNet.go:200: teltonika New connection(client: [::1]:65407) +2018/09/16 08:35:11 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:35:11 ruptelaNet.go:261: Data received(client: [::1]:65407, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:35:11 ruptelaNet.go:278: Sent ACK (client: [::1]:65407, IMEI: 352094087982671) +2018/09/16 08:35:13 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:35:13 ruptelaNet.go:261: Data received(client: [::1]:65407, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 08:35:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:35:13 ruptelaNet.go:278: Sent ACK (client: [::1]:65407, IMEI: 352094087982671) +2018/09/16 08:35:16 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65407, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 08:35:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:65436) +2018/09/16 08:35:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:35:24 ruptelaNet.go:261: Data received(client: [::1]:65436, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:35:24 ruptelaNet.go:278: Sent ACK (client: [::1]:65436, IMEI: 352094089712860) +2018/09/16 08:35:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:35:26 ruptelaNet.go:261: Data received(client: [::1]:65436, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 08:35:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:35:26 ruptelaNet.go:278: Sent ACK (client: [::1]:65436, IMEI: 352094089712860) +2018/09/16 08:35:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65436, IMEI: 352094089712860) with duration 2.9 s +2018/09/16 08:35:39 ruptelaNet.go:200: teltonika New connection(client: [::1]:65467) +2018/09/16 08:35:40 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:35:40 ruptelaNet.go:261: Data received(client: [::1]:65467, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:35:40 ruptelaNet.go:278: Sent ACK (client: [::1]:65467, IMEI: 352094087982671) +2018/09/16 08:35:42 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:35:42 ruptelaNet.go:261: Data received(client: [::1]:65467, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:35:42 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:35:42 ruptelaNet.go:278: Sent ACK (client: [::1]:65467, IMEI: 352094087982671) +2018/09/16 08:35:45 ruptelaNet.go:291: teltonika Close connection (client: [::1]:65467, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:36:08 ruptelaNet.go:200: teltonika New connection(client: [::1]:49152) +2018/09/16 08:36:09 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:36:09 ruptelaNet.go:261: Data received(client: [::1]:49152, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:36:09 ruptelaNet.go:278: Sent ACK (client: [::1]:49152, IMEI: 352094087982671) +2018/09/16 08:36:12 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:36:12 ruptelaNet.go:261: Data received(client: [::1]:49152, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:36:12 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:36:12 ruptelaNet.go:278: Sent ACK (client: [::1]:49152, IMEI: 352094087982671) +2018/09/16 08:36:14 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49152, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 08:36:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49186) +2018/09/16 08:36:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:36:24 ruptelaNet.go:261: Data received(client: [::1]:49186, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:36:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49186, IMEI: 352094089712860) +2018/09/16 08:36:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:36:26 ruptelaNet.go:261: Data received(client: [::1]:49186, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:36:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:36:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49186, IMEI: 352094089712860) +2018/09/16 08:36:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49186, IMEI: 352094089712860) with duration 3.53 s +2018/09/16 08:36:37 ruptelaNet.go:200: teltonika New connection(client: [::1]:49213) +2018/09/16 08:36:38 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:36:38 ruptelaNet.go:261: Data received(client: [::1]:49213, IMEI: 352094087982671) with duration 1.12 s +2018/09/16 08:36:38 ruptelaNet.go:278: Sent ACK (client: [::1]:49213, IMEI: 352094087982671) +2018/09/16 08:36:40 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:36:40 ruptelaNet.go:261: Data received(client: [::1]:49213, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:36:40 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:36:40 ruptelaNet.go:278: Sent ACK (client: [::1]:49213, IMEI: 352094087982671) +2018/09/16 08:36:43 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49213, IMEI: 352094087982671) with duration 6.06 s +2018/09/16 08:37:06 ruptelaNet.go:200: teltonika New connection(client: [::1]:49272) +2018/09/16 08:37:07 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:37:07 ruptelaNet.go:261: Data received(client: [::1]:49272, IMEI: 352094087982671) with duration 0.94 s +2018/09/16 08:37:07 ruptelaNet.go:278: Sent ACK (client: [::1]:49272, IMEI: 352094087982671) +2018/09/16 08:37:09 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:37:09 ruptelaNet.go:261: Data received(client: [::1]:49272, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:37:09 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:37:09 ruptelaNet.go:278: Sent ACK (client: [::1]:49272, IMEI: 352094087982671) +2018/09/16 08:37:12 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49272, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:37:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49309) +2018/09/16 08:37:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:37:24 ruptelaNet.go:261: Data received(client: [::1]:49309, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:37:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49309, IMEI: 352094089712860) +2018/09/16 08:37:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:37:26 ruptelaNet.go:261: Data received(client: [::1]:49309, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:37:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:37:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49309, IMEI: 352094089712860) +2018/09/16 08:37:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49309, IMEI: 352094089712860) with duration 2.84 s +2018/09/16 08:37:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:49331) +2018/09/16 08:37:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:37:36 ruptelaNet.go:261: Data received(client: [::1]:49331, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:37:36 ruptelaNet.go:278: Sent ACK (client: [::1]:49331, IMEI: 352094087982671) +2018/09/16 08:37:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:37:38 ruptelaNet.go:261: Data received(client: [::1]:49331, IMEI: 352094087982671) with duration 3.8 s +2018/09/16 08:37:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:37:38 ruptelaNet.go:278: Sent ACK (client: [::1]:49331, IMEI: 352094087982671) +2018/09/16 08:37:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49331, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:38:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:49395) +2018/09/16 08:38:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:38:05 ruptelaNet.go:261: Data received(client: [::1]:49395, IMEI: 352094087982671) with duration 1.05 s +2018/09/16 08:38:05 ruptelaNet.go:278: Sent ACK (client: [::1]:49395, IMEI: 352094087982671) +2018/09/16 08:38:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:38:07 ruptelaNet.go:261: Data received(client: [::1]:49395, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:38:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:38:07 ruptelaNet.go:278: Sent ACK (client: [::1]:49395, IMEI: 352094087982671) +2018/09/16 08:38:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49395, IMEI: 352094087982671) with duration 5.97 s +2018/09/16 08:38:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49432) +2018/09/16 08:38:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:38:24 ruptelaNet.go:261: Data received(client: [::1]:49432, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:38:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49432, IMEI: 352094089712860) +2018/09/16 08:38:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:38:26 ruptelaNet.go:261: Data received(client: [::1]:49432, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:38:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:38:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49432, IMEI: 352094089712860) +2018/09/16 08:38:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49432, IMEI: 352094089712860) with duration 2.82 s +2018/09/16 08:38:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:49449) +2018/09/16 08:38:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:38:35 ruptelaNet.go:261: Data received(client: [::1]:49449, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 08:38:35 ruptelaNet.go:278: Sent ACK (client: [::1]:49449, IMEI: 352094087982671) +2018/09/16 08:38:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:38:37 ruptelaNet.go:261: Data received(client: [::1]:49449, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:38:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:38:37 ruptelaNet.go:278: Sent ACK (client: [::1]:49449, IMEI: 352094087982671) +2018/09/16 08:38:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49449, IMEI: 352094087982671) with duration 5.93 s +2018/09/16 08:39:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:49514) +2018/09/16 08:39:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:39:05 ruptelaNet.go:261: Data received(client: [::1]:49514, IMEI: 352094087982671) with duration 1.01 s +2018/09/16 08:39:05 ruptelaNet.go:278: Sent ACK (client: [::1]:49514, IMEI: 352094087982671) +2018/09/16 08:39:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:39:07 ruptelaNet.go:261: Data received(client: [::1]:49514, IMEI: 352094087982671) with duration 3.76 s +2018/09/16 08:39:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:39:07 ruptelaNet.go:278: Sent ACK (client: [::1]:49514, IMEI: 352094087982671) +2018/09/16 08:39:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49514, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 08:39:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49556) +2018/09/16 08:39:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:39:24 ruptelaNet.go:261: Data received(client: [::1]:49556, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:39:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49556, IMEI: 352094089712860) +2018/09/16 08:39:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:39:26 ruptelaNet.go:261: Data received(client: [::1]:49556, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:39:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:39:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49556, IMEI: 352094089712860) +2018/09/16 08:39:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49556, IMEI: 352094089712860) with duration 2.76 s +2018/09/16 08:39:34 ruptelaNet.go:200: teltonika New connection(client: [::1]:49572) +2018/09/16 08:39:35 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:39:35 ruptelaNet.go:261: Data received(client: [::1]:49572, IMEI: 352094087982671) with duration 0.91 s +2018/09/16 08:39:35 ruptelaNet.go:278: Sent ACK (client: [::1]:49572, IMEI: 352094087982671) +2018/09/16 08:39:39 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:39:39 ruptelaNet.go:261: Data received(client: [::1]:49572, IMEI: 352094087982671) with duration 5.42 s +2018/09/16 08:39:39 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:39:39 ruptelaNet.go:278: Sent ACK (client: [::1]:49572, IMEI: 352094087982671) +2018/09/16 08:39:41 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49572, IMEI: 352094087982671) with duration 7.5 s +2018/09/16 08:40:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:49637) +2018/09/16 08:40:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:40:06 ruptelaNet.go:261: Data received(client: [::1]:49637, IMEI: 352094087982671) with duration 1.04 s +2018/09/16 08:40:06 ruptelaNet.go:278: Sent ACK (client: [::1]:49637, IMEI: 352094087982671) +2018/09/16 08:40:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:40:08 ruptelaNet.go:261: Data received(client: [::1]:49637, IMEI: 352094087982671) with duration 3.81 s +2018/09/16 08:40:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:40:08 ruptelaNet.go:278: Sent ACK (client: [::1]:49637, IMEI: 352094087982671) +2018/09/16 08:40:11 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49637, IMEI: 352094087982671) with duration 5.96 s +2018/09/16 08:40:26 ruptelaNet.go:200: teltonika New connection(client: [::1]:49684) +2018/09/16 08:40:26 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:40:26 ruptelaNet.go:261: Data received(client: [::1]:49684, IMEI: 352094089712860) with duration 0.27 s +2018/09/16 08:40:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49684, IMEI: 352094089712860) +2018/09/16 08:40:28 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:40:28 ruptelaNet.go:261: Data received(client: [::1]:49684, IMEI: 352094089712860) with duration 2.21 s +2018/09/16 08:40:28 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:40:28 ruptelaNet.go:278: Sent ACK (client: [::1]:49684, IMEI: 352094089712860) +2018/09/16 08:40:29 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49684, IMEI: 352094089712860) with duration 3.03 s +2018/09/16 08:40:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:49701) +2018/09/16 08:40:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:40:36 ruptelaNet.go:261: Data received(client: [::1]:49701, IMEI: 352094087982671) with duration 1.13 s +2018/09/16 08:40:36 ruptelaNet.go:278: Sent ACK (client: [::1]:49701, IMEI: 352094087982671) +2018/09/16 08:40:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:40:38 ruptelaNet.go:261: Data received(client: [::1]:49701, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:40:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:40:38 ruptelaNet.go:278: Sent ACK (client: [::1]:49701, IMEI: 352094087982671) +2018/09/16 08:40:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49701, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:41:05 ruptelaNet.go:200: teltonika New connection(client: [::1]:49762) +2018/09/16 08:41:06 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:41:06 ruptelaNet.go:261: Data received(client: [::1]:49762, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:41:06 ruptelaNet.go:278: Sent ACK (client: [::1]:49762, IMEI: 352094087982671) +2018/09/16 08:41:08 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:41:08 ruptelaNet.go:261: Data received(client: [::1]:49762, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:41:08 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:41:08 ruptelaNet.go:278: Sent ACK (client: [::1]:49762, IMEI: 352094087982671) +2018/09/16 08:41:10 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49762, IMEI: 352094087982671) with duration 5.83 s +2018/09/16 08:41:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49806) +2018/09/16 08:41:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:41:24 ruptelaNet.go:261: Data received(client: [::1]:49806, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:41:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49806, IMEI: 352094089712860) +2018/09/16 08:41:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:41:26 ruptelaNet.go:261: Data received(client: [::1]:49806, IMEI: 352094089712860) with duration 1.98 s +2018/09/16 08:41:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:41:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49806, IMEI: 352094089712860) +2018/09/16 08:41:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49806, IMEI: 352094089712860) with duration 2.74 s +2018/09/16 08:41:35 ruptelaNet.go:200: teltonika New connection(client: [::1]:49829) +2018/09/16 08:41:36 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:41:36 ruptelaNet.go:261: Data received(client: [::1]:49829, IMEI: 352094087982671) with duration 0.96 s +2018/09/16 08:41:36 ruptelaNet.go:278: Sent ACK (client: [::1]:49829, IMEI: 352094087982671) +2018/09/16 08:41:38 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:41:38 ruptelaNet.go:261: Data received(client: [::1]:49829, IMEI: 352094087982671) with duration 3.69 s +2018/09/16 08:41:38 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:41:38 ruptelaNet.go:278: Sent ACK (client: [::1]:49829, IMEI: 352094087982671) +2018/09/16 08:41:40 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49829, IMEI: 352094087982671) with duration 5.86 s +2018/09/16 08:42:04 ruptelaNet.go:200: teltonika New connection(client: [::1]:49889) +2018/09/16 08:42:05 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:42:05 ruptelaNet.go:261: Data received(client: [::1]:49889, IMEI: 352094087982671) with duration 0.93 s +2018/09/16 08:42:05 ruptelaNet.go:278: Sent ACK (client: [::1]:49889, IMEI: 352094087982671) +2018/09/16 08:42:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:42:07 ruptelaNet.go:261: Data received(client: [::1]:49889, IMEI: 352094087982671) with duration 3.38 s +2018/09/16 08:42:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:42:07 ruptelaNet.go:278: Sent ACK (client: [::1]:49889, IMEI: 352094087982671) +2018/09/16 08:42:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49889, IMEI: 352094087982671) with duration 5.39 s +2018/09/16 08:42:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:49930) +2018/09/16 08:42:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:42:24 ruptelaNet.go:261: Data received(client: [::1]:49930, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:42:24 ruptelaNet.go:278: Sent ACK (client: [::1]:49930, IMEI: 352094089712860) +2018/09/16 08:42:26 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:42:26 ruptelaNet.go:261: Data received(client: [::1]:49930, IMEI: 352094089712860) with duration 1.94 s +2018/09/16 08:42:26 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:42:26 ruptelaNet.go:278: Sent ACK (client: [::1]:49930, IMEI: 352094089712860) +2018/09/16 08:42:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49930, IMEI: 352094089712860) with duration 2.69 s +2018/09/16 08:42:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:49949) +2018/09/16 08:42:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:42:34 ruptelaNet.go:261: Data received(client: [::1]:49949, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:42:34 ruptelaNet.go:278: Sent ACK (client: [::1]:49949, IMEI: 352094087982671) +2018/09/16 08:42:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:42:36 ruptelaNet.go:261: Data received(client: [::1]:49949, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:42:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:42:36 ruptelaNet.go:278: Sent ACK (client: [::1]:49949, IMEI: 352094087982671) +2018/09/16 08:42:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:49949, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:43:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:50016) +2018/09/16 08:43:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:43:04 ruptelaNet.go:261: Data received(client: [::1]:50016, IMEI: 352094087982671) with duration 1.23 s +2018/09/16 08:43:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50016, IMEI: 352094087982671) +2018/09/16 08:43:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:43:07 ruptelaNet.go:261: Data received(client: [::1]:50016, IMEI: 352094087982671) with duration 4.69 s +2018/09/16 08:43:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:43:07 ruptelaNet.go:278: Sent ACK (client: [::1]:50016, IMEI: 352094087982671) +2018/09/16 08:43:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50016, IMEI: 352094087982671) with duration 6.86 s +2018/09/16 08:43:24 ruptelaNet.go:200: teltonika New connection(client: [::1]:50053) +2018/09/16 08:43:24 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:43:24 ruptelaNet.go:261: Data received(client: [::1]:50053, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:43:24 ruptelaNet.go:278: Sent ACK (client: [::1]:50053, IMEI: 352094089712860) +2018/09/16 08:43:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:43:27 ruptelaNet.go:261: Data received(client: [::1]:50053, IMEI: 352094089712860) with duration 2.6 s +2018/09/16 08:43:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:43:27 ruptelaNet.go:278: Sent ACK (client: [::1]:50053, IMEI: 352094089712860) +2018/09/16 08:43:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50053, IMEI: 352094089712860) with duration 3.8 s +2018/09/16 08:43:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50071) +2018/09/16 08:43:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:43:34 ruptelaNet.go:261: Data received(client: [::1]:50071, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:43:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50071, IMEI: 352094087982671) +2018/09/16 08:43:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:43:36 ruptelaNet.go:261: Data received(client: [::1]:50071, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 08:43:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:43:36 ruptelaNet.go:278: Sent ACK (client: [::1]:50071, IMEI: 352094087982671) +2018/09/16 08:43:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50071, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:44:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:50132) +2018/09/16 08:44:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:44:04 ruptelaNet.go:261: Data received(client: [::1]:50132, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:44:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50132, IMEI: 352094087982671) +2018/09/16 08:44:06 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:44:06 ruptelaNet.go:261: Data received(client: [::1]:50132, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:44:06 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:44:06 ruptelaNet.go:278: Sent ACK (client: [::1]:50132, IMEI: 352094087982671) +2018/09/16 08:44:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50132, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:44:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:50177) +2018/09/16 08:44:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:44:25 ruptelaNet.go:261: Data received(client: [::1]:50177, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:44:25 ruptelaNet.go:278: Sent ACK (client: [::1]:50177, IMEI: 352094089712860) +2018/09/16 08:44:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:44:27 ruptelaNet.go:261: Data received(client: [::1]:50177, IMEI: 352094089712860) with duration 1.97 s +2018/09/16 08:44:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:44:27 ruptelaNet.go:278: Sent ACK (client: [::1]:50177, IMEI: 352094089712860) +2018/09/16 08:44:27 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50177, IMEI: 352094089712860) with duration 2.71 s +2018/09/16 08:44:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50194) +2018/09/16 08:44:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:44:34 ruptelaNet.go:261: Data received(client: [::1]:50194, IMEI: 352094087982671) with duration 1 s +2018/09/16 08:44:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50194, IMEI: 352094087982671) +2018/09/16 08:44:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:44:37 ruptelaNet.go:261: Data received(client: [::1]:50194, IMEI: 352094087982671) with duration 4.39 s +2018/09/16 08:44:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:44:37 ruptelaNet.go:278: Sent ACK (client: [::1]:50194, IMEI: 352094087982671) +2018/09/16 08:44:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50194, IMEI: 352094087982671) with duration 6.55 s +2018/09/16 08:45:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:50251) +2018/09/16 08:45:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:45:04 ruptelaNet.go:261: Data received(client: [::1]:50251, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:45:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50251, IMEI: 352094087982671) +2018/09/16 08:45:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:45:07 ruptelaNet.go:261: Data received(client: [::1]:50251, IMEI: 352094087982671) with duration 3.9 s +2018/09/16 08:45:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:45:07 ruptelaNet.go:278: Sent ACK (client: [::1]:50251, IMEI: 352094087982671) +2018/09/16 08:45:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50251, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:45:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:50297) +2018/09/16 08:45:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:45:25 ruptelaNet.go:261: Data received(client: [::1]:50297, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:45:25 ruptelaNet.go:278: Sent ACK (client: [::1]:50297, IMEI: 352094089712860) +2018/09/16 08:45:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:45:27 ruptelaNet.go:261: Data received(client: [::1]:50297, IMEI: 352094089712860) with duration 2.17 s +2018/09/16 08:45:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:45:27 ruptelaNet.go:278: Sent ACK (client: [::1]:50297, IMEI: 352094089712860) +2018/09/16 08:45:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50297, IMEI: 352094089712860) with duration 3.17 s +2018/09/16 08:45:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50316) +2018/09/16 08:45:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:45:34 ruptelaNet.go:261: Data received(client: [::1]:50316, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:45:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50316, IMEI: 352094087982671) +2018/09/16 08:45:36 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:45:36 ruptelaNet.go:261: Data received(client: [::1]:50316, IMEI: 352094087982671) with duration 3.79 s +2018/09/16 08:45:36 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:45:36 ruptelaNet.go:278: Sent ACK (client: [::1]:50316, IMEI: 352094087982671) +2018/09/16 08:45:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50316, IMEI: 352094087982671) with duration 5.94 s +2018/09/16 08:46:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:50377) +2018/09/16 08:46:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:46:04 ruptelaNet.go:261: Data received(client: [::1]:50377, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:46:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50377, IMEI: 352094087982671) +2018/09/16 08:46:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:46:07 ruptelaNet.go:261: Data received(client: [::1]:50377, IMEI: 352094087982671) with duration 3.89 s +2018/09/16 08:46:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:46:07 ruptelaNet.go:278: Sent ACK (client: [::1]:50377, IMEI: 352094087982671) +2018/09/16 08:46:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50377, IMEI: 352094087982671) with duration 6.04 s +2018/09/16 08:46:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:50424) +2018/09/16 08:46:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:46:25 ruptelaNet.go:261: Data received(client: [::1]:50424, IMEI: 352094089712860) with duration 0.31 s +2018/09/16 08:46:25 ruptelaNet.go:278: Sent ACK (client: [::1]:50424, IMEI: 352094089712860) +2018/09/16 08:46:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:46:27 ruptelaNet.go:261: Data received(client: [::1]:50424, IMEI: 352094089712860) with duration 2.54 s +2018/09/16 08:46:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:46:27 ruptelaNet.go:278: Sent ACK (client: [::1]:50424, IMEI: 352094089712860) +2018/09/16 08:46:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50424, IMEI: 352094089712860) with duration 3.28 s +2018/09/16 08:46:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50437) +2018/09/16 08:46:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:46:34 ruptelaNet.go:261: Data received(client: [::1]:50437, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 08:46:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50437, IMEI: 352094087982671) +2018/09/16 08:46:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:46:37 ruptelaNet.go:261: Data received(client: [::1]:50437, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 08:46:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:46:37 ruptelaNet.go:278: Sent ACK (client: [::1]:50437, IMEI: 352094087982671) +2018/09/16 08:46:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50437, IMEI: 352094087982671) with duration 6.15 s +2018/09/16 08:47:03 ruptelaNet.go:200: teltonika New connection(client: [::1]:50503) +2018/09/16 08:47:04 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:47:04 ruptelaNet.go:261: Data received(client: [::1]:50503, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 08:47:04 ruptelaNet.go:278: Sent ACK (client: [::1]:50503, IMEI: 352094087982671) +2018/09/16 08:47:07 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:47:07 ruptelaNet.go:261: Data received(client: [::1]:50503, IMEI: 352094087982671) with duration 3.87 s +2018/09/16 08:47:07 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:47:07 ruptelaNet.go:278: Sent ACK (client: [::1]:50503, IMEI: 352094087982671) +2018/09/16 08:47:09 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50503, IMEI: 352094087982671) with duration 6.35 s +2018/09/16 08:47:25 ruptelaNet.go:200: teltonika New connection(client: [::1]:50546) +2018/09/16 08:47:25 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:47:25 ruptelaNet.go:261: Data received(client: [::1]:50546, IMEI: 352094089712860) with duration 0 s +2018/09/16 08:47:25 ruptelaNet.go:278: Sent ACK (client: [::1]:50546, IMEI: 352094089712860) +2018/09/16 08:47:27 ruptelaNet.go:355: data packet length : 978 +2018/09/16 08:47:27 ruptelaNet.go:261: Data received(client: [::1]:50546, IMEI: 352094089712860) with duration 2.05 s +2018/09/16 08:47:27 ruptela.go:183: IMEI: 352094089712860, insert-id: 0, nrows: 1 +2018/09/16 08:47:27 ruptelaNet.go:278: Sent ACK (client: [::1]:50546, IMEI: 352094089712860) +2018/09/16 08:47:28 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50546, IMEI: 352094089712860) with duration 3.27 s +2018/09/16 08:47:33 ruptelaNet.go:200: teltonika New connection(client: [::1]:50563) +2018/09/16 08:47:34 ruptelaNet.go:355: data packet length : 15 +2018/09/16 08:47:34 ruptelaNet.go:261: Data received(client: [::1]:50563, IMEI: 352094087982671) with duration 0.97 s +2018/09/16 08:47:34 ruptelaNet.go:278: Sent ACK (client: [::1]:50563, IMEI: 352094087982671) +2018/09/16 08:47:37 ruptelaNet.go:355: data packet length : 427 +2018/09/16 08:47:37 ruptelaNet.go:261: Data received(client: [::1]:50563, IMEI: 352094087982671) with duration 3.78 s +2018/09/16 08:47:37 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 08:47:37 ruptelaNet.go:278: Sent ACK (client: [::1]:50563, IMEI: 352094087982671) +2018/09/16 08:47:39 ruptelaNet.go:291: teltonika Close connection (client: [::1]:50563, IMEI: 352094087982671) with duration 5.88 s +2018/09/16 08:47:51 ruptelaNet.go:181: Signal: interrupt +2018/09/16 12:05:39 deviceServer.go:89: PID file will be created +2018/09/16 12:05:39 deviceServer.go:92: PID: 15968 +2018/09/16 12:05:39 deviceServer.go:98: PID file created +2018/09/16 12:05:39 ruptelaNet.go:175: listening: [::]:4000 +2018/09/16 12:05:44 ruptelaNet.go:200: teltonika New connection(client: [::1]:52590) +2018/09/16 12:05:45 ruptelaNet.go:355: data packet length : 15 +2018/09/16 12:05:45 ruptelaNet.go:261: Data received(client: [::1]:52590, IMEI: 352094087982671) with duration 0.89 s +2018/09/16 12:05:45 ruptelaNet.go:278: Sent ACK (client: [::1]:52590, IMEI: 352094087982671) +2018/09/16 12:05:48 ruptelaNet.go:355: data packet length : 427 +2018/09/16 12:05:48 ruptelaNet.go:261: Data received(client: [::1]:52590, IMEI: 352094087982671) with duration 3.88 s +2018/09/16 12:05:48 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 12:05:48 ruptelaNet.go:278: Sent ACK (client: [::1]:52590, IMEI: 352094087982671) +2018/09/16 12:05:50 ruptelaNet.go:291: teltonika Close connection (client: [::1]:52590, IMEI: 352094087982671) with duration 6 s +2018/09/16 12:05:53 ruptelaNet.go:181: Signal: interrupt +2018/09/16 22:09:05 deviceServer.go:89: PID file will be created +2018/09/16 22:09:05 deviceServer.go:92: PID: 17490 +2018/09/16 22:09:05 deviceServer.go:98: PID file created +2018/09/16 22:09:05 ruptelaNet.go:174: listening: [::]:4000 +2018/09/16 22:09:09 ruptelaNet.go:199: teltonika New connection(client: [::1]:49868) +2018/09/16 22:09:10 ruptelaNet.go:333: data packet length(client: [::1]:49868) : 15 +2018/09/16 22:09:10 ruptelaNet.go:248: Data received(client: [::1]:49868, IMEI: 352094087982671) with duration 1.02 s +2018/09/16 22:09:10 ruptelaNet.go:256: Sent ACK (client: [::1]:49868, IMEI: 352094087982671) +2018/09/16 22:09:13 ruptelaNet.go:333: data packet length(client: [::1]:49868) : 427 +2018/09/16 22:09:13 ruptelaNet.go:248: Data received(client: [::1]:49868, IMEI: 352094087982671) with duration 4 s +2018/09/16 22:09:13 ruptela.go:183: IMEI: 352094087982671, insert-id: 0, nrows: 1 +2018/09/16 22:09:13 ruptelaNet.go:256: Sent ACK (client: [::1]:49868, IMEI: 352094087982671) +2018/09/16 22:09:16 ruptelaNet.go:269: teltonika Close connection (client: [::1]:49868, IMEI: 352094087982671) with duration 6.14 s +2018/09/16 22:09:26 ruptelaNet.go:180: Signal: interrupt diff --git a/server/exe/applog.sqlite b/server/exe/applog.sqlite new file mode 100755 index 0000000000000000000000000000000000000000..69321e2c7da574665504ce190efc63090f44002d GIT binary patch literal 663552 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 driver: sqlite3 + # PostgreSQL -> driver: postgres + # type: sql + sql: { + driver: sqlite3 + connection: ./applog.sqlite + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + createQuery: CREATE TABLE applog(id INTEGER PRIMARY KEY AUTOINCREMENT, ts DATETIME, app VARCHAR(100), content TEXT) + insertQuery: INSERT INTO applog(ts, app, content) VALUES(?, ?, ?) + } + } +} diff --git a/server/exe/config.hjson b/server/exe/config.hjson new file mode 100755 index 0000000..7a67104 --- /dev/null +++ b/server/exe/config.hjson @@ -0,0 +1,160 @@ +{ + server: { + id: ruptela + listenAddr: ":4000" + acceptTimeout: 10 # timeout (dalam detik) + writeTimeout: 10 # timeout (dalam detik) + maxReceive: 50 + maxSend: 50 + device: RUPTELA + } + + ruptela: { + message: "http://localhost:8081/api/" + report: "http://localhost:8081/reportAPI" + appendIMEI: false + serviceTimeout: 10 # REST Service timeout (dalam detik) + } + + gpsdata: { + storage: sql + sql: { + driver: postgres + connection: "user=postgres password=s3mb1l4n dbname=OSLOGREC host=127.0.0.1 port=5432 connect_timeout=30 sslmode=disable" + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + insertQuery: INSERT INTO "GPS_DATA"("IMEI", "DATA_LOG", "FLAG", "DATE_INS", "DESC", "GPS_CODE", "DATA_LEN") VALUES($1, $2, $3, $4, $5, $6, $7) + } + } + + log: { + #Known types: console, file, sql + type: console, file + console: { + # use default options + } + + + #for file (uncomment type) + # type: file + file: { + name: /Users/baymac/Documents/work/IU/oslog/sourcecode/oslog.id/putu/jyoti_teltonika/server/exe/applog.log + append: true + } + + #for sql (uncomment type) + # SQLite -> driver: sqlite3 + # PostgreSQL -> driver: postgres + # type: sql + sql: { + driver: sqlite3 + connection: ./applog.sqlite + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + createQuery: CREATE TABLE applog(id INTEGER PRIMARY KEY AUTOINCREMENT, ts DATETIME, app VARCHAR(100), content TEXT) + insertQuery: INSERT INTO applog(ts, app, content) VALUES(?, ?, ?) + } + } + + messagebroker: { + brokerServer: localhost:9092 + brokerTopic: ruptela4000 + } + + iotag: { + tags: [ + { + tagName: Din1 + tagId: 2 + tagDataType: int + }, + { + tagName: Din2 + tagId: 3 + tagDataType: int + }, + { + tagName: Din3 + tagId: 4 + tagDataType: int + }, + { + tagName: Din4 + tagId: 5 + tagDataType: int + }, + { + tagName: Ain1 + tagId: 22 + tagDataType: int + }, + { + tagName: Ain2 + tagId: 23 + tagDataType: int + }, + { + tagName: Dist + tagId: 77 + tagDataType: float32 + }, + { + tagName: DistTotal + tagId: 65 + tagDataType: float64 + }, + { + tagName: GsmSignalSensor + tagId: 27 + tagDataType: int + }, + { + tagName: DeepSleepSensor + tagId: 200 + tagDataType: int + }, + { + tagName: HarshBreaking + tagId: 135 + tagDataType: int + }, + { + tagName: HarshAcceleration + tagId: 136 + tagDataType: int + }, + { + tagName: BatteryVolt + tagId: 30 + tagDataType: int + }, + { + tagName: PowerVolt + tagId: 29 + tagDataType: int + }, + { + tagName: Temp + tagId: 78 + tagDataType: int + }, + { + tagName: Temp1 + tagId: 79 + tagDataType: int + }, + { + tagName: Temp2 + tagId: 80 + tagDataType: int + }, + { + tagName: Rfid + tagId: 171 + tagDataType: string + } + ] + } +} diff --git a/server/exe/deviceServer.go b/server/exe/deviceServer.go new file mode 100755 index 0000000..74153fe --- /dev/null +++ b/server/exe/deviceServer.go @@ -0,0 +1,102 @@ +// +// Device server which handle communication to various devices (currently implements RUPTELA) +// + +package main + +import ( + "flag" + "log" + "runtime" + "os" + "io/ioutil" + "strconv" + "path/filepath" + + "github.com/ipsusila/opt" + //"../../model" + "../../server" + "../../lumberjack" + + _ "github.com/lib/pq" + _ "github.com/mattn/go-sqlite3" +) + +var exPath = ""; + +func startServer(options *opt.Options) { + //---options --------------------------------------------------------- + //start server according to mode + svcNet := &server.DevicePrsServerNet{ + Options: options, + } + svcNet.Start() +} + +func main() { + //maximum cpu + runtime.GOMAXPROCS(runtime.NumCPU()) + + ex, err := os.Executable() + if err != nil { + panic(err) + } + exPath = filepath.Dir(ex) + "/" + confPath := exPath + "config.hjson" + // re-open file + file, err := os.Open(confPath) + if err != nil { + confPath = "config.hjson" + } + defer file.Close() + + //parse configurationf file + cfgFile := flag.String("conf", confPath, "Configuration file") + flag.Parse() + + //load options + config, err := opt.FromFile(*cfgFile, opt.FormatAuto) + if err != nil { + log.Printf("Error while loading configuration file %v -> %v\n", *cfgFile, err) + return + } + + //display server ID (displayed in console) + log.Printf("Server ID: %v\n", config.Get("server").GetString("id", "undefined (check configuration)")) + + //setup log + //lw, err := utility.NewLogWriter(config) + //if err != nil { + // log.Printf("Error while setup logging: %v\n", err) + // return + //} + log.SetFlags(log.Lshortfile | log.Ldate | log.Ltime) + //log.SetOutput(lw) + logName := config.Get("log").Get("file").GetString("name", "") + log.SetOutput(&lumberjack.Logger{ + Filename: logName, + MaxSize: 10, // megabytes + MaxBackups: 3, + MaxAge: 3, //days + Compress: true, // disabled by default + }) + //defer lw.Close() + + pidFilePath := exPath + "receiver-" + config.Get("server").GetString("id", "undefined (check configuration)") + "-pid" + errRemoveFile := os.Remove(pidFilePath) + if errRemoveFile != nil { + log.Printf("PID file will be created") + } + pidStr := strconv.Itoa(os.Getpid()) + log.Printf("PID: %v\n", pidStr) + d1 := []byte(pidStr) + errCreateFile := ioutil.WriteFile(pidFilePath, d1, 0644) + if errCreateFile != nil { + log.Printf("Error while setup write PID file: %v\n", errCreateFile) + } else{ + log.Printf("PID file created") + } + + //Run application + startServer(config) +} diff --git a/server/ruptela_test.go b/server/ruptela_test.go new file mode 100755 index 0000000..6b822ad --- /dev/null +++ b/server/ruptela_test.go @@ -0,0 +1,133 @@ +package server + +import ( + "encoding/hex" + "fmt" + "net" + "testing" + "time" + + "../model" +) + +/* + Send data to server +*/ +func sendData(conf *model.ServerConfig, data []byte, dur chan<- int64) error { + //simulate client + stTime := time.Now() + + addr := fmt.Sprintf("%s:%d", conf.IP, conf.Port) + conn, err := net.Dial("tcp", addr) + if err != nil { + fmt.Println("Error: ", err) + dur <- -1 + return err + } + defer conn.Close() + + nw, err := conn.Write(data) + if err != nil { + fmt.Printf("Write error: %+v\n", err) + dur <- -1 + return err + } + fmt.Println("Packet writen = ", nw) + //sleep awhile + //time.Sleep(time.Second) + + //read response + rep := make([]byte, 20) + nr, err := conn.Read(rep) + if err != nil { + fmt.Printf("Read error: %+v\n", err) + dur <- -1 + return err + } + fmt.Println("Response -> ", rep[:nr]) + dur <- time.Now().Sub(stTime).Nanoseconds() + return nil +} +func TestInvalid(t *testing.T) { + //config + conf := model.ServerConfig{IP: "127.0.0.1", Port: 8095} + + //test failed data + dur := make(chan int64, 1) + data3 := []byte{0x08, 0x00, 0x01, 0x02} + sendData(&conf, data3, dur) + <-dur +} + +//start sending data +func TestRuptelaReceiver(t *testing.T) { + + //send data + data1, _ := hex.DecodeString( + "007900000b1a2a5585c30100024e9c036900000f101733208ff45e07b31b570a001009090605011b1a020003001c01ad01021d338e1600000" + + "2960000601a41014bc16d004e9c038400000f104fdf20900d20075103b00a001308090605011b1a020003001c01ad01021d33b11600000296" + + "0000601a41014bc1ea0028f9") + + data2, _ := hex.DecodeString( + "033500000C076B5C208F01011E5268CEF20000196E3A3A0AEF3E934F3E2D780000000007000000005268CEFD0000196E3A3A0AEF3E934F3" + + "E2D780000000007000000005268CF080000196E3A3A0AEF3E934F3E2D780000000007000000005268CF130000196E3A3A0AEF3E934F3E2D7" + + "80000000007000000005268CF1E0000196E3A3A0AEF3E934F3E2D780000000007000000005268CF290000196E3A3A0AEF3E934F3E2D78000" + + "0000007000000005268CF340000196E3A3A0AEF3E934F3E2D780000000007000000005268CF3F0000196E3A3A0AEF3E934F3E2D780000000" + + "007000000005268CF4A0000196E3A3A0AEF3E934F3E2D780000000007000000005268CF550000196E3A3A0AEF3E934F3E2D7800000000070" + + "00000005268CF600000196E3A3A0AEF3E934F3E2D780000000007000000005268CF6B0000196E3A3A0AEF3E934F3E2D78000000000700000" + + "0005268CF730000196E36630AEF42CE4F6D0BF40400022208000000005268CF7E0000196E36B60AEF42BE4F6D0BF400000000070000000052" + + "68CF890000196E36B60AEF42BE4F6D0BF40000000007000000005268CF940000196E36B60AEF42BE4F6D0BF40000000007000000005268CF" + + "9F0000196E36B60AEF42BE4F6D0BF40000000007000000005268CFAA0000196E36B60AEF42BE4F6D0BF40000000007000000005268CFB50" + + "000196E36B60AEF42BE4F6D0BF40000000007000000005268CFC00000196E36B60AEF42BE4F6D0BF40000000007000000005268CFCB00001" + + "96E36B60AEF42BE4F6D0BF40000000007000000005268CFD60000196E36B60AEF42BE4F6D0BF40000000007000000005268CFD70000196E" + + "3C710AEF5EFF4F690BF40400011708000000005268CFE20000196E3B980AEF601A4F690BF40000000007000000005268CFED0000196E3B980" + + "AEF601A4F690BF40000000007000000005268CFF80000196E3B980AEF601A4F690BF40000000007000000005268D0030000196E3B980AEF60" + + "1A4F690BF40000000007000000005268D00E0000196E3B980AEF601A4F690BF40000000007000000005268D0190000196E3B980AEF601A4F6" + + "90BF40000000007000000005268D0240000196E3B980AEF601A4F690BF400000000070000000046E2") + + data3, _ := hex.DecodeString( + "0011000315A07F44865A0E01000053EA01DF65AD6D") + + const NTEST = 1 + conf := model.ServerConfig{IP: "127.0.0.1", Port: 8081} + ch := make(chan int64, NTEST*3) + + n := 0 + for i := 0; i < NTEST; i++ { + go sendData(&conf, data1, ch) + n++ + go sendData(&conf, data2, ch) + n++ + + go sendData(&conf, data3, ch) + n++ + } + + var ma int64 = 0 + var mi int64 = 10000000000000 + var tot float64 = 0 + + var ti int64 + for i := 0; i < NTEST*2; i++ { + ti = <-ch + if ti < 0 { + continue + } + + if ti < mi { + mi = ti + } + + if ti > ma { + ma = ti + } + + tot += float64(ti) + } + + const MILIS = 1000000 + avg := tot / (NTEST * 2) + fmt.Printf("Total time = %+v ms, avg = %+v ms, mi = %+v ms, ma = %+v ms\n", + tot/MILIS, avg/MILIS, float64(mi)/MILIS, float64(ma)/MILIS) + +} diff --git a/utility/logwriter.go b/utility/logwriter.go new file mode 100755 index 0000000..248b88c --- /dev/null +++ b/utility/logwriter.go @@ -0,0 +1,172 @@ +package utility + +import ( + "database/sql" + "io" + "os" + "time" + + "strings" + + "github.com/ipsusila/opt" +) + +//SQLWriter write log to database i.e. SQLite +type SQLWriter struct { + db *sql.DB + insertQuery string + createQuery string + appID string +} + +//LogWriter support multiple output +type LogWriter struct { + writers []io.WriteCloser + console bool +} + +//NewLogWriter create multiple writer +func NewLogWriter(options *opt.Options) (*LogWriter, error) { + logOpt := options.Get("log") + + //backward compatibility, get from server + appID := options.Get("server").GetString("id", "") + if appID == "" { + //if failed, get from `log.id` + appID = logOpt.GetString("id", "") + } + if appID == "" { + //if failed, get from `id`` + appID = options.GetString("id", "*undefined*") + } + + outTypes := logOpt.GetString("type", "") + typeItems := strings.Split(outTypes, ",") + writers := []io.WriteCloser{} + + console := false + for _, item := range typeItems { + item = strings.TrimSpace(item) + switch item { + case "console": + console = true + case "file": + fileOpt := logOpt.Get("file") + name := fileOpt.GetString("name", "") + appendExisting := fileOpt.GetBool("append", true) + flag := os.O_WRONLY | os.O_CREATE + if appendExisting { + flag |= os.O_APPEND + } else { + flag |= os.O_TRUNC + } + + f, err := os.OpenFile(name, flag, 0666) + if err != nil { + return nil, err + } + writers = append(writers, f) + case "sql": + w, err := newSQLWriter(logOpt, appID) + if err != nil { + return nil, err + } + writers = append(writers, w) + } + } + + lw := &LogWriter{ + writers: writers, + console: console, + } + + return lw, nil +} + +//NewSQLWriter open log writer to sql +func newSQLWriter(logOpt *opt.Options, appID string) (*SQLWriter, error) { + sqlOpt := logOpt.Get("sql") + dbDriver := sqlOpt.GetString("driver", "") + dbInfo := sqlOpt.GetString("connection", "") + createQuery := sqlOpt.GetString("createQuery", "") + insertQuery := sqlOpt.GetString("insertQuery", "") + dbMaxIdle := sqlOpt.GetInt("maxIdle", 0) + dbMaxOpen := sqlOpt.GetInt("maxOpen", 5) + dbMaxLifetime := time.Duration(sqlOpt.GetInt("maxLifetime", 60)) * time.Second + + //open databae connection + db, err := sql.Open(dbDriver, dbInfo) + if err != nil { + return nil, err + } + err = db.Ping() + if err != nil { + db.Close() + return nil, err + } + + //connection pooling + db.SetMaxIdleConns(dbMaxIdle) + db.SetMaxOpenConns(dbMaxOpen) + db.SetConnMaxLifetime(dbMaxLifetime) + + //ignore error + //TODO, verify query (security, untrusted source) + db.Exec(createQuery) + + w := &SQLWriter{ + db: db, + createQuery: createQuery, + insertQuery: insertQuery, + appID: appID, + } + + return w, nil +} + +//Write to multiple log +func (lw *LogWriter) Write(data []byte) (n int, err error) { + //now := time.Now().Format("[2006-01-02 15:04:05]") + if lw.console { + n, err = os.Stderr.Write(data) + } + for _, w := range lw.writers { + n, err = w.Write(data) + } + + return n, err +} + +//Close all writer +func (lw *LogWriter) Close() error { + for _, w := range lw.writers { + w.Close() + } + return nil +} + +//Write data with timestamp (ts, log) +func (w *SQLWriter) Write(data []byte) (int, error) { + //TODO, verify query (security, untrusted source) + result, err := w.db.Exec(w.insertQuery, time.Now(), w.appID, string(data)) + if err != nil { + return 0, err + } + + n := len(data) + _, err = result.LastInsertId() + if err != nil { + return n, err + } + + nrows, err := result.RowsAffected() + if err != nil || nrows == 0 { + return n, err + } + + return n, nil +} + +func (w *SQLWriter) Close() error { + return w.db.Close() +} diff --git a/utility/watcher/config.hjson b/utility/watcher/config.hjson new file mode 100755 index 0000000..3d0c543 --- /dev/null +++ b/utility/watcher/config.hjson @@ -0,0 +1,39 @@ +{ + watch: { + paths: ["../../", "doesnotexist"] + maxFile: 5 + pattern: server + verbose: true + catchSignal: false + } + + log: { + #Known types: console, file, sql + type: console, sql + console: { + # use default options + } + + + #for file (uncomment type) + # type: file + file: { + name: ./applog.log + append: true + } + + #for sql (uncomment type) + # SQLite -> driver: sqlite3 + # PostgreSQL -> driver: postgres + # type: sql + sql: { + driver: sqlite3 + connection: ./applog.sqlite + maxIdle: 10 #Max jumlah koneksi idle + maxOpen: 10 #Max jumlah koneksi open + maxLifetime: 60 #Maximum lifetime (dalam detik) + createQuery: CREATE TABLE applog(id INTEGER PRIMARY KEY AUTOINCREMENT, ts DATETIME, app VARCHAR(100), content TEXT) + insertQuery: INSERT INTO applog(ts, app, content) VALUES(?, ?, ?) + } + } +} \ No newline at end of file diff --git a/utility/watcher/log_watcher.go b/utility/watcher/log_watcher.go new file mode 100755 index 0000000..2788e90 --- /dev/null +++ b/utility/watcher/log_watcher.go @@ -0,0 +1,340 @@ +package main + +import ( + "flag" + "fmt" + "log" + "os" + "os/signal" + "path/filepath" + "regexp" + "sync" + "syscall" + + "github.com/fsnotify/fsnotify" + "github.com/ipsusila/opt" + "oslog.id/putu/jyoti/utility" + + _ "github.com/mattn/go-sqlite3" +) + +type watcherOptions struct { + watchPaths []string + maxLastFile int + pattern string + verbose bool + catchSignal bool + regPattern *regexp.Regexp +} + +type node struct { + name string + fullName string + next *node +} + +type list struct { + sync.Mutex + numItems int + head *node + tail *node +} + +func (l *list) clear() { + l.head = nil + l.tail = nil + l.numItems = 0 +} + +func (l *list) count() int { + l.Lock() + defer l.Unlock() + + return l.numItems +} + +func (l *list) newNode(name string) (*node, error) { + fullName, err := filepath.Abs(name) + if err != nil { + return nil, err + } + + nd := &node{ + name: name, + fullName: fullName, + } + + return nd, nil +} + +func (l *list) push(name string) error { + l.Lock() + defer l.Unlock() + + nd, err := l.newNode(name) + if err != nil { + return err + } + + if l.tail == nil { + l.head = nd + l.tail = nd + } else { + l.tail.next = nd + l.tail = nd + } + + l.numItems++ + return nil +} + +func (l *list) peek() *node { + l.Lock() + defer l.Unlock() + + if l.head == nil { + return nil + } + return l.head +} + +func (l *list) safePop() *node { + if l.head == nil { + return nil + } + + nd := l.head + l.head = nd.next + if l.head == nil { + l.tail = nil + } + l.numItems-- + return nd +} + +func (l *list) pop() *node { + l.Lock() + defer l.Unlock() + + return l.safePop() +} + +func (l *list) remove(name string) *node { + l.Lock() + defer l.Unlock() + + //create item + item, err := l.newNode(name) + if err != nil { + return nil + } + + //empty + if l.head == nil || item == nil { + return nil + } else if l.head.fullName == item.fullName { + return l.safePop() + } + + //node current and next + nd := l.head + next := l.head.next + for next != nil { + if next.fullName == item.fullName { + nextNext := next.next + nd.next = nextNext + l.numItems-- + if next == l.tail { + l.tail = nd + } + return next + } + + //next items + nd = next + next = nd.next + } + + return nil +} + +func (l *list) iterate(fn func(nd *node)) { + l.Lock() + defer l.Unlock() + + nd := l.head + for nd != nil { + fn(nd) + nd = nd.next + } +} + +func startWatching(options *watcherOptions) { + //file items + items := &list{} + errItems := &list{} + + watcher, err := fsnotify.NewWatcher() + if err != nil { + log.Fatal(err) + } + + done := make(chan bool, 1) + mustExit := make(chan bool, 1) + + // Process events + go func() { + defer func() { + close(done) + }() + + for { + select { + case ev := <-watcher.Events: + isCreate := ev.Op&fsnotify.Create == fsnotify.Create + isDelete := ev.Op&fsnotify.Remove == fsnotify.Remove + if isCreate { + //match pattern + //when new items created, delete old items + //if number of items exceed threshold + if options.regPattern == nil || options.regPattern.MatchString(ev.Name) { + items.push(ev.Name) + if options.verbose { + log.Printf("Item %v ADDED", ev.Name) + } + + if items.count() > options.maxLastFile { + node := items.pop() + err := os.Remove(node.fullName) + if err != nil { + errItems.push(node.name) + log.Printf("Error %v while deleting %v", err, node.fullName) + } + } + } + } else if isDelete { + if options.verbose { + log.Printf("Item %v REMOVED", ev.Name) + } + //if manually deleted: remove from list + items.remove(ev.Name) + } + case err := <-watcher.Errors: + log.Println("Watcher error:", err) + case <-mustExit: + return + } + } + }() + + //Start watching items + nwatched := 0 + for _, sPath := range options.watchPaths { + err = watcher.Add(sPath) + if err != nil { + log.Printf("Error watching `%s` -> %v", sPath, err) + } else { + nwatched++ + if options.verbose { + log.Printf("Watching %s...", sPath) + } + } + } + if nwatched == 0 { + close(mustExit) + } else { + //catch signal + if options.catchSignal { + signalChan := make(chan os.Signal, 1) + signal.Notify(signalChan, os.Interrupt, syscall.SIGTERM) + go func() { + for _ = range signalChan { + fmt.Println("Received an interrupt, stopping watcher...") + close(mustExit) + return + } + }() + } else { + //wait for q/q + buf := make([]byte, 1) + for { + //wait input + n, err := os.Stdin.Read(buf) + if err != nil { + log.Println(err) + } else if n > 0 && buf[0] == 'q' || buf[0] == 'Q' { + close(mustExit) + break + } + } + } + } + // Hang so program doesn't exit + <-done + watcher.Close() + + //erritems + if errItems.count() > 0 { + log.Printf("The following item(s) were not removed do to error") + errItems.iterate(func(nd *node) { + log.Printf("%v", nd.fullName) + }) + } + + log.Printf("Watcher %d DONE", items.count()) +} + +func main() { + //parse configurationf file + cfgFile := flag.String("conf", "config.hjson", "Configuration file") + flag.Parse() + + //load options + config, err := opt.FromFile(*cfgFile, opt.FormatAuto) + if err != nil { + log.Printf("Error while loading configuration file %v -> %v\n", *cfgFile, err) + return + } + + //display server ID (displayed in console) + log.Printf("Application ID: %v\n", config.GetString("id", "undefined (check configuration)")) + + //configure log writer + lw, err := utility.NewLogWriter(config) + if err != nil { + log.Printf("Error while setup logging: %v\n", err) + return + } + log.SetFlags(log.Lshortfile | log.Ldate | log.Ltime) + log.SetOutput(lw) + + defer lw.Close() + + //options + /* + watchPaths []string + maxLastFile int + pattern string + verbose bool + catchSignal bool + */ + options := &watcherOptions{} + wcfg := config.Get("watch") + options.watchPaths = wcfg.GetStringArray("paths") + options.maxLastFile = wcfg.GetInt("maxFile", 50) + options.pattern = wcfg.GetString("pattern", "") + options.verbose = wcfg.GetBool("verbose", false) + options.catchSignal = wcfg.GetBool("catchSignal", false) + + //verbose? + if options.verbose { + log.Printf("%s", config.AsJSON()) + } + + //compile regex + if len(options.pattern) > 0 { + options.regPattern = regexp.MustCompile(options.pattern) + } + + startWatching(options) +} diff --git a/vendor/github.com/gansidui/gotcp/LICENSE b/vendor/github.com/gansidui/gotcp/LICENSE new file mode 100755 index 0000000..beac5ef --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2014 Jie Li + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/vendor/github.com/gansidui/gotcp/README.md b/vendor/github.com/gansidui/gotcp/README.md new file mode 100755 index 0000000..94acdf9 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/README.md @@ -0,0 +1,25 @@ +gotcp +================ + +A Go package for quickly building tcp servers + + +Usage +================ + +###Install + +~~~ +go get github.com/gansidui/gotcp +~~~ + + +###Examples + +* [echo](https://github.com/gansidui/gotcp/tree/master/examples/echo) +* [telnet](https://github.com/gansidui/gotcp/tree/master/examples/telnet) + +Document +================ + +[Doc](http://godoc.org/github.com/gansidui/gotcp) \ No newline at end of file diff --git a/vendor/github.com/gansidui/gotcp/conn.go b/vendor/github.com/gansidui/gotcp/conn.go new file mode 100755 index 0000000..f3778af --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/conn.go @@ -0,0 +1,215 @@ +package gotcp + +import ( + "errors" + "net" + "sync" + "sync/atomic" + "time" +) + +// Error type +var ( + ErrConnClosing = errors.New("use of closed network connection") + ErrWriteBlocking = errors.New("write packet was blocking") + ErrReadBlocking = errors.New("read packet was blocking") +) + +// Conn exposes a set of callbacks for the various events that occur on a connection +type Conn struct { + srv *Server + conn *net.TCPConn // the raw connection + extraData interface{} // to save extra data + closeOnce sync.Once // close the conn, once, per instance + closeFlag int32 // close flag + closeChan chan struct{} // close chanel + packetSendChan chan Packet // packet send chanel + packetReceiveChan chan Packet // packeet receive chanel +} + +// ConnCallback is an interface of methods that are used as callbacks on a connection +type ConnCallback interface { + // OnConnect is called when the connection was accepted, + // If the return value of false is closed + OnConnect(*Conn) bool + + // OnMessage is called when the connection receives a packet, + // If the return value of false is closed + OnMessage(*Conn, Packet) bool + + // OnClose is called when the connection closed + OnClose(*Conn) +} + +// newConn returns a wrapper of raw conn +func newConn(conn *net.TCPConn, srv *Server) *Conn { + return &Conn{ + srv: srv, + conn: conn, + closeChan: make(chan struct{}), + packetSendChan: make(chan Packet, srv.config.PacketSendChanLimit), + packetReceiveChan: make(chan Packet, srv.config.PacketReceiveChanLimit), + } +} + +// GetExtraData gets the extra data from the Conn +func (c *Conn) GetExtraData() interface{} { + return c.extraData +} + +// PutExtraData puts the extra data with the Conn +func (c *Conn) PutExtraData(data interface{}) { + c.extraData = data +} + +// GetRawConn returns the raw net.TCPConn from the Conn +func (c *Conn) GetRawConn() *net.TCPConn { + return c.conn +} + +// Close closes the connection +func (c *Conn) Close() { + c.closeOnce.Do(func() { + atomic.StoreInt32(&c.closeFlag, 1) + close(c.closeChan) + close(c.packetSendChan) + close(c.packetReceiveChan) + c.conn.Close() + c.srv.callback.OnClose(c) + }) +} + +// IsClosed indicates whether or not the connection is closed +func (c *Conn) IsClosed() bool { + return atomic.LoadInt32(&c.closeFlag) == 1 +} + +// AsyncWritePacket async writes a packet, this method will never block +func (c *Conn) AsyncWritePacket(p Packet, timeout time.Duration) (err error) { + if c.IsClosed() { + return ErrConnClosing + } + + defer func() { + if e := recover(); e != nil { + err = ErrConnClosing + } + }() + + if timeout == 0 { + select { + case c.packetSendChan <- p: + return nil + + default: + return ErrWriteBlocking + } + + } else { + select { + case c.packetSendChan <- p: + return nil + + case <-c.closeChan: + return ErrConnClosing + + case <-time.After(timeout): + return ErrWriteBlocking + } + } +} + +// Do it +func (c *Conn) Do() { + if !c.srv.callback.OnConnect(c) { + return + } + + asyncDo(c.handleLoop, c.srv.waitGroup) + asyncDo(c.readLoop, c.srv.waitGroup) + asyncDo(c.writeLoop, c.srv.waitGroup) +} + +func (c *Conn) readLoop() { + defer func() { + recover() + c.Close() + }() + + for { + select { + case <-c.srv.exitChan: + return + + case <-c.closeChan: + return + + default: + } + + p, err := c.srv.protocol.ReadPacket(c.conn) + if err != nil { + return + } + + c.packetReceiveChan <- p + } +} + +func (c *Conn) writeLoop() { + defer func() { + recover() + c.Close() + }() + + for { + select { + case <-c.srv.exitChan: + return + + case <-c.closeChan: + return + + case p := <-c.packetSendChan: + if c.IsClosed() { + return + } + if _, err := c.conn.Write(p.Serialize()); err != nil { + return + } + } + } +} + +func (c *Conn) handleLoop() { + defer func() { + recover() + c.Close() + }() + + for { + select { + case <-c.srv.exitChan: + return + + case <-c.closeChan: + return + + case p := <-c.packetReceiveChan: + if c.IsClosed() { + return + } + if !c.srv.callback.OnMessage(c, p) { + return + } + } + } +} + +func asyncDo(fn func(), wg *sync.WaitGroup) { + wg.Add(1) + go func() { + fn() + wg.Done() + }() +} diff --git a/vendor/github.com/gansidui/gotcp/examples/echo/client/client.go b/vendor/github.com/gansidui/gotcp/examples/echo/client/client.go new file mode 100755 index 0000000..f0d9eca --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/examples/echo/client/client.go @@ -0,0 +1,42 @@ +package main + +import ( + "fmt" + "log" + "net" + "time" + + "github.com/gansidui/gotcp/examples/echo" +) + +func main() { + tcpAddr, err := net.ResolveTCPAddr("tcp4", "127.0.0.1:8989") + checkError(err) + conn, err := net.DialTCP("tcp", nil, tcpAddr) + checkError(err) + + echoProtocol := &echo.EchoProtocol{} + + // ping <--> pong + for i := 0; i < 3; i++ { + // write + conn.Write(echo.NewEchoPacket([]byte("hello"), false).Serialize()) + + // read + p, err := echoProtocol.ReadPacket(conn) + if err == nil { + echoPacket := p.(*echo.EchoPacket) + fmt.Printf("Server reply:[%v] [%v]\n", echoPacket.GetLength(), string(echoPacket.GetBody())) + } + + time.Sleep(2 * time.Second) + } + + conn.Close() +} + +func checkError(err error) { + if err != nil { + log.Fatal(err) + } +} diff --git a/vendor/github.com/gansidui/gotcp/examples/echo/echoProtocol.go b/vendor/github.com/gansidui/gotcp/examples/echo/echoProtocol.go new file mode 100755 index 0000000..5487bc7 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/examples/echo/echoProtocol.go @@ -0,0 +1,69 @@ +package echo + +import ( + "encoding/binary" + "errors" + "io" + "net" + + "github.com/gansidui/gotcp" +) + +type EchoPacket struct { + buff []byte +} + +func (this *EchoPacket) Serialize() []byte { + return this.buff +} + +func (this *EchoPacket) GetLength() uint32 { + return binary.BigEndian.Uint32(this.buff[0:4]) +} + +func (this *EchoPacket) GetBody() []byte { + return this.buff[4:] +} + +func NewEchoPacket(buff []byte, hasLengthField bool) *EchoPacket { + p := &EchoPacket{} + + if hasLengthField { + p.buff = buff + + } else { + p.buff = make([]byte, 4+len(buff)) + binary.BigEndian.PutUint32(p.buff[0:4], uint32(len(buff))) + copy(p.buff[4:], buff) + } + + return p +} + +type EchoProtocol struct { +} + +func (this *EchoProtocol) ReadPacket(conn *net.TCPConn) (gotcp.Packet, error) { + var ( + lengthBytes []byte = make([]byte, 4) + length uint32 + ) + + // read length + if _, err := io.ReadFull(conn, lengthBytes); err != nil { + return nil, err + } + if length = binary.BigEndian.Uint32(lengthBytes); length > 1024 { + return nil, errors.New("the size of packet is larger than the limit") + } + + buff := make([]byte, 4+length) + copy(buff[0:4], lengthBytes) + + // read body ( buff = lengthBytes + body ) + if _, err := io.ReadFull(conn, buff[4:]); err != nil { + return nil, err + } + + return NewEchoPacket(buff, true), nil +} diff --git a/vendor/github.com/gansidui/gotcp/examples/echo/server/server.go b/vendor/github.com/gansidui/gotcp/examples/echo/server/server.go new file mode 100755 index 0000000..41a8387 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/examples/echo/server/server.go @@ -0,0 +1,70 @@ +package main + +import ( + "fmt" + "log" + "net" + "os" + "os/signal" + "runtime" + "syscall" + "time" + + "github.com/gansidui/gotcp" + "github.com/gansidui/gotcp/examples/echo" +) + +type Callback struct{} + +func (this *Callback) OnConnect(c *gotcp.Conn) bool { + addr := c.GetRawConn().RemoteAddr() + c.PutExtraData(addr) + fmt.Println("OnConnect:", addr) + return true +} + +func (this *Callback) OnMessage(c *gotcp.Conn, p gotcp.Packet) bool { + echoPacket := p.(*echo.EchoPacket) + fmt.Printf("OnMessage:[%v] [%v]\n", echoPacket.GetLength(), string(echoPacket.GetBody())) + c.AsyncWritePacket(echo.NewEchoPacket(echoPacket.Serialize(), true), time.Second) + return true +} + +func (this *Callback) OnClose(c *gotcp.Conn) { + fmt.Println("OnClose:", c.GetExtraData()) +} + +func main() { + runtime.GOMAXPROCS(runtime.NumCPU()) + + // creates a tcp listener + tcpAddr, err := net.ResolveTCPAddr("tcp4", ":8989") + checkError(err) + listener, err := net.ListenTCP("tcp", tcpAddr) + checkError(err) + + // creates a server + config := &gotcp.Config{ + PacketSendChanLimit: 20, + PacketReceiveChanLimit: 20, + } + srv := gotcp.NewServer(config, &Callback{}, &echo.EchoProtocol{}) + + // starts service + go srv.Start(listener, time.Second) + fmt.Println("listening:", listener.Addr()) + + // catchs system signal + chSig := make(chan os.Signal) + signal.Notify(chSig, syscall.SIGINT, syscall.SIGTERM) + fmt.Println("Signal: ", <-chSig) + + // stops service + srv.Stop() +} + +func checkError(err error) { + if err != nil { + log.Fatal(err) + } +} diff --git a/vendor/github.com/gansidui/gotcp/examples/telnet/server/server.go b/vendor/github.com/gansidui/gotcp/examples/telnet/server/server.go new file mode 100755 index 0000000..3882513 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/examples/telnet/server/server.go @@ -0,0 +1,50 @@ +package main + +import ( + "fmt" + "log" + "net" + "os" + "os/signal" + "runtime" + "syscall" + "time" + + "github.com/gansidui/gotcp" + "github.com/gansidui/gotcp/examples/telnet" +) + +func main() { + runtime.GOMAXPROCS(runtime.NumCPU()) + + // creates a tcp listener + tcpAddr, err := net.ResolveTCPAddr("tcp4", ":23") + checkError(err) + listener, err := net.ListenTCP("tcp", tcpAddr) + checkError(err) + + // creates a server + config := &gotcp.Config{ + PacketSendChanLimit: 20, + PacketReceiveChanLimit: 20, + } + srv := gotcp.NewServer(config, &telnet.TelnetCallback{}, &telnet.TelnetProtocol{}) + + // starts service + go srv.Start(listener, time.Second) + fmt.Println("listening:", listener.Addr()) + + // catchs system signal + chSig := make(chan os.Signal) + signal.Notify(chSig, syscall.SIGINT, syscall.SIGTERM) + fmt.Println("Signal: ", <-chSig) + + // stops service + srv.Stop() +} + +func checkError(err error) { + if err != nil { + log.Fatal(err) + } +} diff --git a/vendor/github.com/gansidui/gotcp/examples/telnet/telnetProtocol.go b/vendor/github.com/gansidui/gotcp/examples/telnet/telnetProtocol.go new file mode 100755 index 0000000..3910006 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/examples/telnet/telnetProtocol.go @@ -0,0 +1,115 @@ +package telnet + +import ( + "bytes" + "fmt" + "net" + "strings" + + "github.com/gansidui/gotcp" +) + +var ( + endTag = []byte("\r\n") // Telnet command's end tag +) + +// Packet +type TelnetPacket struct { + pType string + pData []byte +} + +func (p *TelnetPacket) Serialize() []byte { + buf := p.pData + buf = append(buf, endTag...) + return buf +} + +func (p *TelnetPacket) GetType() string { + return p.pType +} + +func (p *TelnetPacket) GetData() []byte { + return p.pData +} + +func NewTelnetPacket(pType string, pData []byte) *TelnetPacket { + return &TelnetPacket{ + pType: pType, + pData: pData, + } +} + +type TelnetProtocol struct { +} + +func (this *TelnetProtocol) ReadPacket(conn *net.TCPConn) (gotcp.Packet, error) { + fullBuf := bytes.NewBuffer([]byte{}) + for { + data := make([]byte, 1024) + + readLengh, err := conn.Read(data) + + if err != nil { //EOF, or worse + return nil, err + } + + if readLengh == 0 { // Connection maybe closed by the client + return nil, gotcp.ErrConnClosing + } else { + fullBuf.Write(data[:readLengh]) + + index := bytes.Index(fullBuf.Bytes(), endTag) + if index > -1 { + command := fullBuf.Next(index) + fullBuf.Next(2) + //fmt.Println(string(command)) + + commandList := strings.Split(string(command), " ") + if len(commandList) > 1 { + return NewTelnetPacket(commandList[0], []byte(commandList[1])), nil + } else { + if commandList[0] == "quit" { + return NewTelnetPacket("quit", command), nil + } else { + return NewTelnetPacket("unknow", command), nil + } + } + } + } + } +} + +type TelnetCallback struct { +} + +func (this *TelnetCallback) OnConnect(c *gotcp.Conn) bool { + addr := c.GetRawConn().RemoteAddr() + c.PutExtraData(addr) + fmt.Println("OnConnect:", addr) + c.AsyncWritePacket(NewTelnetPacket("unknow", []byte("Welcome to this Telnet Server")), 0) + return true +} + +func (this *TelnetCallback) OnMessage(c *gotcp.Conn, p gotcp.Packet) bool { + packet := p.(*TelnetPacket) + command := packet.GetData() + commandType := packet.GetType() + + switch commandType { + case "echo": + c.AsyncWritePacket(NewTelnetPacket("echo", command), 0) + case "login": + c.AsyncWritePacket(NewTelnetPacket("login", []byte(string(command)+" has login")), 0) + case "quit": + return false + default: + c.AsyncWritePacket(NewTelnetPacket("unknow", []byte("unknow command")), 0) + } + + return true +} + +func (this *TelnetCallback) OnClose(c *gotcp.Conn) { + fmt.Println("OnClose:", c.GetExtraData()) +} diff --git a/vendor/github.com/gansidui/gotcp/protocol.go b/vendor/github.com/gansidui/gotcp/protocol.go new file mode 100755 index 0000000..18701d2 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/protocol.go @@ -0,0 +1,13 @@ +package gotcp + +import ( + "net" +) + +type Packet interface { + Serialize() []byte +} + +type Protocol interface { + ReadPacket(conn *net.TCPConn) (Packet, error) +} diff --git a/vendor/github.com/gansidui/gotcp/server.go b/vendor/github.com/gansidui/gotcp/server.go new file mode 100755 index 0000000..4bc6e74 --- /dev/null +++ b/vendor/github.com/gansidui/gotcp/server.go @@ -0,0 +1,68 @@ +package gotcp + +import ( + "net" + "sync" + "time" +) + +type Config struct { + PacketSendChanLimit uint32 // the limit of packet send channel + PacketReceiveChanLimit uint32 // the limit of packet receive channel +} + +type Server struct { + config *Config // server configuration + callback ConnCallback // message callbacks in connection + protocol Protocol // customize packet protocol + exitChan chan struct{} // notify all goroutines to shutdown + waitGroup *sync.WaitGroup // wait for all goroutines +} + +// NewServer creates a server +func NewServer(config *Config, callback ConnCallback, protocol Protocol) *Server { + return &Server{ + config: config, + callback: callback, + protocol: protocol, + exitChan: make(chan struct{}), + waitGroup: &sync.WaitGroup{}, + } +} + +// Start starts service +func (s *Server) Start(listener *net.TCPListener, acceptTimeout time.Duration) { + s.waitGroup.Add(1) + defer func() { + listener.Close() + s.waitGroup.Done() + }() + + for { + select { + case <-s.exitChan: + return + + default: + } + + listener.SetDeadline(time.Now().Add(acceptTimeout)) + + conn, err := listener.AcceptTCP() + if err != nil { + continue + } + + s.waitGroup.Add(1) + go func() { + newConn(conn, s).Do() + s.waitGroup.Done() + }() + } +} + +// Stop stops service +func (s *Server) Stop() { + close(s.exitChan) + s.waitGroup.Wait() +}